File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # AI Engineering Operating System Wiki
2+
3+ Welcome to the AI-OS wiki.
4+
5+ ## Main pages
6+
7+ - [ Master Operating Manual] ( ../docs/ai-os/master-operating-manual.md )
8+ - [ Mermaid Diagram Catalog] ( ../docs/diagrams/README.md )
9+ - [ Loop Catalog] ( ../docs/loops/README.md )
10+ - [ Prompt Templates] ( ../prompts/README.md )
11+
12+ ## What this is
13+
14+ AI-OS is a repeatable operating framework for AI coding agents.
15+
16+ The core idea:
17+
18+ ``` text
19+ Prompt once.
20+ Verify everything.
21+ Loop until the goal is achieved.
22+ Escalate when risk requires human approval.
23+ ```
24+
25+ ## System overview
26+
27+ ``` mermaid
28+ flowchart TD
29+ Goal[Goal] --> Agent[AI Coding Agent]
30+ Agent --> Context[Repository Context]
31+ Agent --> Loop[Selected Engineering Loop]
32+ Loop --> Verify[Verification Gates]
33+ Verify --> Done{Done?}
34+ Done -- No --> Loop
35+ Done -- Yes --> Report[Final Report]
36+ ```
You can’t perform that action at this time.
0 commit comments