Skip to content

Commit e6f9080

Browse files
committed
fix: update Mermaid diagram to show full current workflow
Was 15 commits stale - missing /standup, /wrapup, and team mode. Now shows the complete daily loop: standup -> name -> plan? -> work (Ghost captures) -> wrapup -> team log (dashed, optional) -> close -> days later -> ccs search -> resume -> loop. Color coded: green for standup, amber for plan, purple for Ghost, pink for wrapup, indigo for team log, blue for search.
1 parent ac68600 commit e6f9080

1 file changed

Lines changed: 13 additions & 9 deletions

File tree

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,26 @@ Planning-with-files handles the **within-session** problem (long tasks that exha
5454

5555
```mermaid
5656
flowchart LR
57-
Start["cd project\nclaude"] --> Name["/rename-session\napi-feat-auth"]
57+
Start["cd project\nclaude"] --> Standup["/standup"]
58+
Standup --> Name["/rename-session\napi-feat-auth"]
5859
Name --> Plan{Complex\ntask?}
59-
Plan -->|Yes| PlanFiles["/plan\ntask_plan.md\nfindings.md\nprogress.md"]
60+
Plan -->|Yes| PlanFiles["/plan"]
6061
Plan -->|No| Work
61-
PlanFiles --> Work["Work normally"]
62-
Work --> Ghost(["Ghost silently\ncaptures decisions"])
63-
Work --> Done["End session"]
62+
PlanFiles --> Work["Work"]
63+
Work --> Ghost(["Ghost captures\ndecisions"])
64+
Work --> Wrapup["/wrapup"]
65+
Wrapup -.->|team mode| TeamLog["ccs team log d\nccs team sync"]
66+
Wrapup --> Done["Close terminal"]
6467
Done --> Later["Days later..."]
65-
Later --> Search["ccs 'auth'\n[1] api-feat-auth"]
66-
Search --> Resume["ccs go 1"]
67-
Resume --> Start
68+
Later --> Search["ccs 'auth'\nccs go 1"]
69+
Search --> Start
6870
71+
style Standup fill:#10b981,color:#fff,stroke:none
6972
style Ghost fill:#8b5cf6,color:#fff,stroke:none
7073
style Search fill:#0ea5e9,color:#fff,stroke:none
7174
style PlanFiles fill:#f59e0b,color:#fff,stroke:none
72-
style Name fill:#10b981,color:#fff,stroke:none
75+
style Wrapup fill:#ec4899,color:#fff,stroke:none
76+
style TeamLog fill:#6366f1,color:#fff,stroke:none
7377
```
7478

7579
---

0 commit comments

Comments
 (0)