Skip to content

Commit a28462c

Browse files
committed
docs: add wiki home
1 parent d63b2e2 commit a28462c

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

wiki/Home.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
```

0 commit comments

Comments
 (0)