docs: plain ASCII workflow diagram

This commit is contained in:
Dustin Byrne
2026-03-26 23:36:31 -04:00
parent 88f1a99ded
commit 26bb077bc5

View File

@@ -4,26 +4,19 @@ AI-orchestrated task board. Like Trello, but your tasks get specified, executed,
## Workflow ## Workflow
```mermaid ```
graph LR Triage Todo In Progress In Review Done
H((You)) -->|rough idea| T[Triage] ---------- ---------- --------------- ------------ --------
T -->|AI writes spec| TD[Todo] raw idea AI spec'd AI working ready to merged
TD -->|deps met,\nagent free| IP[In Progress] & ready in worktree merge
IP -->|all steps done,\nreviews pass| IR[In Review]
IR -->|squash merge| D[Done]
subgraph IP[In Progress] | | | | |
direction TB | AI specs | deps met, | all steps + | squash |
E[Execute step] --> R{Review} +----------->+ agent free + reviews pass + merge |
R -->|approve| E +------------>+-------------->+----------->+
R -->|revise| E ^ |
end | needs work |
+----------------------------+
style T fill:#2d2006,stroke:#d29922,color:#d29922
style TD fill:#0d2044,stroke:#58a6ff,color:#58a6ff
style IP fill:#1a0d2e,stroke:#bc8cff,color:#bc8cff
style IR fill:#0d2d16,stroke:#3fb950,color:#3fb950
style D fill:#1a1a1a,stroke:#8b949e,color:#8b949e
``` ```
Tasks with dependencies are processed sequentially. Independent tasks run in parallel. Tasks with dependencies are processed sequentially. Independent tasks run in parallel.