open-coleslaw 0.6.4 → 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -23
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,31 +76,36 @@ Planner is mandatory. The other specialists are convened dynamically based on wh
|
|
|
76
76
|
## The Pipeline
|
|
77
77
|
|
|
78
78
|
```
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
79
|
+
You type a prompt
|
|
80
|
+
│
|
|
81
|
+
▼
|
|
82
|
+
[EnterPlanMode] ← planning cycle begins
|
|
83
|
+
│
|
|
84
|
+
┌────┴──── Phase 1: Clarify + Kickoff ────┐
|
|
85
|
+
│ planner (clarify) → AskUserQuestion? │
|
|
86
|
+
│ planner (decompose) → MVP list │
|
|
87
|
+
└────┬────────────────────────────────────┘
|
|
88
|
+
│
|
|
89
|
+
┌────┴──── Phase 2: Design meeting (per MVP) ──┐
|
|
90
|
+
│ planner → architect → engineer → verifier │
|
|
91
|
+
│ consensus check each round │
|
|
92
|
+
│ planner synthesises minutes │
|
|
93
|
+
└────┬────────────────────────────────────────┘
|
|
94
|
+
│
|
|
95
|
+
[ExitPlanMode({ plan })] ← user approves
|
|
96
|
+
│
|
|
97
|
+
approve ─► write minutes markdown + INDEX.md
|
|
98
|
+
│
|
|
99
|
+
Phase 4: workers (parallel) ─► Phase 5: verifier
|
|
100
|
+
│
|
|
101
|
+
pass → next MVP (re-enter plan mode)
|
|
102
|
+
fail → verify-retry meeting (plan mode again)
|
|
102
103
|
```
|
|
103
104
|
|
|
105
|
+
The whole **planning cycle** — from the first planner dispatch through the
|
|
106
|
+
synthesised plan — runs inside Claude Code's native plan mode. Implementation
|
|
107
|
+
and verification happen outside plan mode. Each MVP is its own cycle.
|
|
108
|
+
|
|
104
109
|
When all MVPs pass verification, the main session touches a marker file and the Stop hook checks your context usage — if you're over ~30%, it suggests running `/compact` or `/clear`. Minutes on disk mean you lose nothing.
|
|
105
110
|
|
|
106
111
|
---
|