Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.14 KB

File metadata and controls

38 lines (31 loc) · 1.14 KB

AI Engineering Operating System Wiki

Welcome to the AI-OS wiki.

The wiki is a curated browsing surface. The canonical source of truth remains in the repository docs.

Main pages

What this is

AI-OS is a repeatable operating framework for AI coding agents.

flowchart TD
    Goal[Goal] --> Context[Load context]
    Context --> Specialists[Fan-out specialists]
    Specialists --> Plan[Plan]
    Plan --> Human{Approval needed?}
    Human -- Yes --> Approval[Human approval]
    Human -- No --> Work[Work]
    Approval --> Work
    Work --> Verify[Verify]
    Verify --> Done{Done?}
    Done -- No --> Work
    Done -- Yes --> Report[Final report]
Loading