File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,15 +50,23 @@ order: 5
5050## The Planning Workflow
5151
5252``` mermaid
53- flowchart LR
54- Todo[📝 todo/<br/>new-feature.md] --> Review{Oracle<br/>Review}
53+ flowchart TD
54+ Todo[📝 todo/new-feature.md]
55+ Review{Oracle Review}
56+ Progress[🚧 in-progress/new-feature.md]
57+ Code[Agent Implements]
58+ Update[Update Progress]
59+ Done{Success Criteria Met?}
60+ Complete[✅ completed/new-feature.md]
61+
62+ Todo --> Review
5563 Review -->|Simplify| Todo
56- Review -->|Approved| Progress[🚧 in-progress/<br/>new-feature.md]
57- Progress --> Code[Agent<br/>Implements]
58- Code --> Update[Update<br/>Progress]
59- Update --> Done{Success<br/>Criteria?}
64+ Review -->|Approved| Progress
65+ Progress --> Code
66+ Code --> Update
67+ Update --> Done
6068 Done -->|No| Code
61- Done -->|Yes| Complete[✅ completed/<br/>new-feature.md]
69+ Done -->|Yes| Complete
6270```
6371
6472### Step 1: Create a Plan
You can’t perform that action at this time.
0 commit comments