docs: fix workflow diagram to show actual flow with review loop
This commit is contained in:
25
README.md
25
README.md
@@ -6,11 +6,18 @@ AI-orchestrated task board. Like Trello, but your tasks get specified, executed,
|
|||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
graph LR
|
graph LR
|
||||||
T[🟡 Triage] -->|AI specifies| TD[🔵 Todo]
|
H((You)) -->|rough idea| T[Triage]
|
||||||
TD -->|deps met| IP[🟣 In Progress]
|
T -->|AI writes spec| TD[Todo]
|
||||||
IP -->|complete| IR[🟢 In Review]
|
TD -->|deps met,\nagent free| IP[In Progress]
|
||||||
IR -->|merged| D[⚫ Done]
|
IP -->|all steps done,\nreviews pass| IR[In Review]
|
||||||
IR -.->|needs work| IP
|
IR -->|squash merge| D[Done]
|
||||||
|
|
||||||
|
subgraph IP[In Progress]
|
||||||
|
direction TB
|
||||||
|
E[Execute step] --> R{Review}
|
||||||
|
R -->|approve| E
|
||||||
|
R -->|revise| E
|
||||||
|
end
|
||||||
|
|
||||||
style T fill:#2d2006,stroke:#d29922,color:#d29922
|
style T fill:#2d2006,stroke:#d29922,color:#d29922
|
||||||
style TD fill:#0d2044,stroke:#58a6ff,color:#58a6ff
|
style TD fill:#0d2044,stroke:#58a6ff,color:#58a6ff
|
||||||
@@ -19,14 +26,6 @@ graph LR
|
|||||||
style D fill:#1a1a1a,stroke:#8b949e,color:#8b949e
|
style D fill:#1a1a1a,stroke:#8b949e,color:#8b949e
|
||||||
```
|
```
|
||||||
|
|
||||||
| Column | What happens |
|
|
||||||
|--------|-------------|
|
|
||||||
| **Triage** | Throw rough ideas in. AI picks them up and writes a full task spec. |
|
|
||||||
| **Todo** | Fully specified. Scheduler moves them when deps are met. |
|
|
||||||
| **In Progress** | AI works the task in an isolated git worktree with cross-model code review. |
|
|
||||||
| **In Review** | Work is done. Merge the worktree and close. Toggle **Auto-merge** to merge automatically. |
|
|
||||||
| **Done** | Squash-merged to main. |
|
|
||||||
|
|
||||||
Tasks with dependencies are processed sequentially. Independent tasks run in parallel.
|
Tasks with dependencies are processed sequentially. Independent tasks run in parallel.
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|||||||
Reference in New Issue
Block a user