open-coleslaw 0.5.3 → 0.6.0
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 +77 -68
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/plugin-guide.md +11 -6
package/README.md
CHANGED
|
@@ -13,24 +13,36 @@ You type a prompt like *"Build me a balance game app"*. That's it.
|
|
|
13
13
|
```
|
|
14
14
|
You: "Build me a balance game app"
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
16
|
+
The main Claude session (acting as meeting runner) runs the whole pipeline:
|
|
17
|
+
|
|
18
|
+
① Kickoff meeting
|
|
19
|
+
· Dispatches open-coleslaw:planner to decompose request into ordered MVPs
|
|
20
|
+
· Minutes written to docs/open-coleslaw/
|
|
21
|
+
|
|
22
|
+
② Per MVP — Design meeting (round-robin, consensus-based)
|
|
23
|
+
· Dispatches open-coleslaw:architect → speech → add-transcript
|
|
24
|
+
· Dispatches open-coleslaw:engineer → speech → add-transcript
|
|
25
|
+
· Dispatches open-coleslaw:verifier → speech → add-transcript
|
|
26
|
+
· After each round, planner runs a consensus check (AGREE / DISAGREE)
|
|
27
|
+
· Repeats until everyone AGREEs (max 10 rounds, then @mention escalation)
|
|
28
|
+
· Planner synthesizes minutes → docs/open-coleslaw/
|
|
29
|
+
|
|
30
|
+
③ Plan Mode
|
|
31
|
+
· EnterPlanMode → plan from minutes → user approves
|
|
32
|
+
|
|
33
|
+
④ Implementation
|
|
34
|
+
· Dispatches N × open-coleslaw:worker in parallel
|
|
35
|
+
|
|
36
|
+
⑤ Verification
|
|
37
|
+
· open-coleslaw:verifier runs tests / build
|
|
38
|
+
· PASS → next MVP · FAIL → verify-retry meeting → re-plan
|
|
39
|
+
|
|
40
|
+
⑥ All MVPs done → touch .cycle-complete → final report
|
|
29
41
|
```
|
|
30
42
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
43
|
+
Every speaker turn is a **real** `Agent` dispatch. No role-playing. The
|
|
44
|
+
dashboard at `localhost:35143` shows each specialist's actual comment appear
|
|
45
|
+
in the thread as the main session dispatches them.
|
|
34
46
|
|
|
35
47
|
You never call a tool. You never pick a department. You never manage an agent.
|
|
36
48
|
|
|
@@ -57,62 +69,60 @@ Design a REST API for a todo app
|
|
|
57
69
|
|
|
58
70
|
You should see the orchestrator agent being dispatched and a kickoff meeting starting automatically.
|
|
59
71
|
|
|
60
|
-
## The Pipeline (
|
|
72
|
+
## The Pipeline (flat)
|
|
61
73
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
```
|
|
68
|
-
The orchestrator returns a structured `{ minutesPaths, mvps, plan }` result.
|
|
74
|
+
There is no orchestrator subagent any more. The **main Claude session** runs
|
|
75
|
+
the whole pipeline — dispatching planner + specialists one-by-one and collecting
|
|
76
|
+
their real output into `add-transcript`. This is what makes "multi-agent" mean
|
|
77
|
+
multi-agent: each speaker turn is a fresh `Agent` call with its own context, not
|
|
78
|
+
one LLM role-playing every role.
|
|
69
79
|
|
|
70
|
-
**Phase B — the main Claude session acts on the result:**
|
|
71
80
|
```
|
|
72
|
-
|
|
81
|
+
Kickoff → per-MVP design meeting → Plan Mode → Workers → Verify → (loop)
|
|
73
82
|
```
|
|
74
83
|
|
|
75
|
-
Verification failure
|
|
76
|
-
|
|
77
|
-
re-plans the fix.
|
|
84
|
+
Verification failure doesn't abort the cycle — it opens a focused
|
|
85
|
+
`verify-retry` meeting and re-plans the fix.
|
|
78
86
|
|
|
79
87
|
When the whole cycle ends the orchestrator touches a marker file, and the `Stop` hook checks your context usage. If you're over ~30%, it suggests running `/compact` or `/clear` before the next task. Minutes on disk mean you lose nothing.
|
|
80
88
|
|
|
81
89
|
## The Agent Cast
|
|
82
90
|
|
|
83
91
|
```
|
|
84
|
-
|
|
85
|
-
│
|
|
86
|
-
│ (
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
▼
|
|
93
|
-
┌─────────┐
|
|
94
|
-
│ Planner │
|
|
95
|
-
│(chair) │
|
|
96
|
-
└─────────┘
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
92
|
+
┌──────────────────────────┐
|
|
93
|
+
│ Main Claude session │ ← You. Runs the pipeline directly.
|
|
94
|
+
│ (dispatches everyone) │
|
|
95
|
+
└─────────┬────────────────┘
|
|
96
|
+
│
|
|
97
|
+
Kickoff → per-MVP design loop
|
|
98
|
+
│
|
|
99
|
+
┌──────────────┼──────────────────────────────┐
|
|
100
|
+
▼ ▼ ▼ ▼
|
|
101
|
+
┌─────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐
|
|
102
|
+
│ Planner │ │ Architect│ │ Engineer │ │ Verifier │ + product-manager /
|
|
103
|
+
│ (chair) │ │ │ │ │ │ │ researcher as needed
|
|
104
|
+
└─────────┘ └──────────┘ └──────────┘ └──────────┘
|
|
105
|
+
Always Dynamic Dynamic Dynamic
|
|
106
|
+
│
|
|
107
|
+
Plan Mode → User approves
|
|
108
|
+
│
|
|
109
|
+
┌──────────────┼──────────────┐
|
|
110
|
+
▼ ▼ ▼
|
|
111
|
+
┌────────┐ ┌────────┐ ┌────────┐
|
|
112
|
+
│Worker 1│ │Worker 2│ … │Worker N│ ← Parallel implementation
|
|
113
|
+
└────────┘ └────────┘ └────────┘
|
|
114
|
+
│
|
|
115
|
+
Verifier runs tests
|
|
116
|
+
/ \
|
|
117
|
+
Pass Fail → verify-retry meeting
|
|
118
|
+
↓
|
|
119
|
+
Next MVP (or done)
|
|
111
120
|
```
|
|
112
121
|
|
|
113
|
-
**
|
|
122
|
+
**6 Specialist agents** (you dispatch each one yourself):
|
|
123
|
+
Planner, Architect, Engineer, Verifier, Product Manager, Researcher. Plus Worker (parallelized for implementation).
|
|
114
124
|
|
|
115
|
-
The **planner always attends** —
|
|
125
|
+
The **planner always attends** — chairs the meeting, runs the round-robin, drives consensus. Other specialists are convened dynamically based on the task.
|
|
116
126
|
|
|
117
127
|
## Meetings That Actually End on Agreement
|
|
118
128
|
|
|
@@ -142,11 +152,10 @@ This is deliberately slower than a fixed-round meeting — but each MVP ends wit
|
|
|
142
152
|
| `get-cost-summary` | Tracks spend per agent/meeting/department |
|
|
143
153
|
| `chain-meeting` | Links meetings — previous minutes feed the next |
|
|
144
154
|
|
|
145
|
-
###
|
|
155
|
+
### 7 Agents (all dispatched by the main Claude session via the Agent tool)
|
|
146
156
|
|
|
147
157
|
| Agent | Role |
|
|
148
158
|
|-------|------|
|
|
149
|
-
| `orchestrator` | Your proxy — manages the kickoff + per-MVP cycles |
|
|
150
159
|
| `planner` | Runs the meeting, chairs rounds, checks consensus, synthesises minutes |
|
|
151
160
|
| `architect` | System design, API contracts, schemas |
|
|
152
161
|
| `engineer` | Implementation feasibility, code quality |
|
|
@@ -185,14 +194,14 @@ Ask for a workflow that doesn't exist yet, and the orchestrator creates it — n
|
|
|
185
194
|
|
|
186
195
|
| Tier | Model | Role |
|
|
187
196
|
|------|-------|------|
|
|
188
|
-
|
|
|
189
|
-
|
|
|
190
|
-
| Worker | inherits from user session |
|
|
191
|
-
|
|
192
|
-
**No model is hard-coded.** Every
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
197
|
+
| Meeting runner | inherits from user session | The main Claude session itself — dispatches everything |
|
|
198
|
+
| Specialist subagent | inherits from user session | Dispatched per speaker turn |
|
|
199
|
+
| Worker subagent | inherits from user session | Dispatched per implementation task |
|
|
200
|
+
|
|
201
|
+
**No model is hard-coded.** Every specialist, every worker runs on whatever
|
|
202
|
+
model you've selected in your Claude Code session (Opus, Sonnet, Haiku, or
|
|
203
|
+
anything Anthropic ships next). Switch models with `/model` and the whole
|
|
204
|
+
pipeline follows.
|
|
196
205
|
|
|
197
206
|
## Philosophy
|
|
198
207
|
|
package/dist/index.js
CHANGED
|
@@ -2191,8 +2191,8 @@ async function updatePluginGuide(registry) {
|
|
|
2191
2191
|
"# Open-Coleslaw Plugin Guide",
|
|
2192
2192
|
"",
|
|
2193
2193
|
"## Overview",
|
|
2194
|
-
"Multi-agent orchestrator for Claude Code.
|
|
2195
|
-
"
|
|
2194
|
+
"Multi-agent orchestrator for Claude Code. Flat dispatch:",
|
|
2195
|
+
"main Claude session (meeting runner) -> specialist subagents (per speaker turn) -> worker subagents (parallel).",
|
|
2196
2196
|
"",
|
|
2197
2197
|
"## Registered Capabilities",
|
|
2198
2198
|
"",
|
|
@@ -2201,9 +2201,9 @@ async function updatePluginGuide(registry) {
|
|
|
2201
2201
|
"## Agent Tiers",
|
|
2202
2202
|
"| Tier | Model | Role |",
|
|
2203
2203
|
"|------|-------|------|",
|
|
2204
|
-
"|
|
|
2205
|
-
"|
|
|
2206
|
-
"| Worker
|
|
2204
|
+
"| Meeting runner (main session) | user's Claude Code model | Dispatches everyone |",
|
|
2205
|
+
"| Specialist subagent | inherits | One per speaker turn |",
|
|
2206
|
+
"| Worker subagent | inherits | One per parallel task |",
|
|
2207
2207
|
"",
|
|
2208
2208
|
"No model is hard-coded \u2014 every agent runs on the model configured in the",
|
|
2209
2209
|
"user's Claude Code session.",
|