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 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
- Phase A (orchestrator subagent)
17
- → Kickoff meeting: planner breaks request into ordered MVPs
18
- Design meeting for MVP-1: round-robin, consensus-based termination
19
- PRD minutes saved to docs/open-coleslaw/
20
- Returns { minutesPaths, mvps, plan }
21
-
22
- Phase B (main Claude session)
23
- Enters Plan Mode with the meeting's plan
24
- You approve (or request changes verify-retry meeting)
25
- Workers write the code in parallel
26
- Verifier runs tests / build
27
- Pass next MVP · Fail verify-retry meeting
28
- All MVPs donefinal report
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 → speechadd-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 minutesdocs/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
- Why 2 phases? `EnterPlanMode` only works in the main Claude session (not in
32
- dispatched subagents). So the orchestrator handles meetings, the main session
33
- handles Plan Mode + worker dispatch + verification.
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 (2-phase)
72
+ ## The Pipeline (flat)
61
73
 
62
- **Phase A the orchestrator subagent runs meetings:**
63
- ```
64
- Kickoff meeting (planner breaks request into MVPs)
65
- for each MVP:
66
- Design meeting consensus → Minutes
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
- EnterPlanModeuser approvalWorkers (parallel)Verifiernext MVP or retry
81
+ Kickoffper-MVP design meeting Plan ModeWorkersVerify (loop)
73
82
  ```
74
83
 
75
- Verification failure on an MVP doesn't abort the cycle — the main session
76
- dispatches the orchestrator again for a focused `verify-retry` meeting and
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
- Orchestrator │ ← Your proxy
86
- │ (claude-opus) │
87
- └────────┬────────┘
88
-
89
- (Kickoff → per-MVP loop)
90
-
91
- ┌─────────────┼─────────────────────────────┐
92
- ▼ ▼
93
- ┌─────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐
94
- │ Planner │ │ Architect│ │ Engineer │ │ Verifier │ dynamically convened +
95
- │(chair) │ │ │ │ │ product-manager / researcher
96
- └─────────┘ └──────────┘ └──────────┘ └──────────┘
97
-
98
- Plan Mode → User approves
99
-
100
- ┌─────────────┼─────────────┐
101
- ▼ ▼ ▼
102
- ┌────────┐ ┌────────┐ ┌────────┐
103
- │Worker 1│ │Worker 2│ │Worker N│ ← Parallel implementation
104
- └────────┘ └────────┘ └────────┘
105
-
106
- Verifier runs tests
107
- / \
108
- Pass Fail → verify-retry meeting
109
-
110
- Next MVP (or done)
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
- **7 Specialists**: Planner, Architect, Engineer, Verifier, Product Manager, Researcher, plus Worker (parallelized).
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** — they chair the meeting, run the round-robin, and drive consensus. Other specialists are convened dynamically based on the task.
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
- ### 8 Agents (dispatched via the Agent tool)
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
- | Orchestrator (subagent) | inherits from user session | Meeting runner |
189
- | Leader (specialists) | inherits from user session | Meeting participant |
190
- | Worker | inherits from user session | Implementation |
191
-
192
- **No model is hard-coded.** Every agent orchestrator, specialists, workers
193
- runs on whatever model you've selected in your Claude Code session (Opus,
194
- Sonnet, Haiku, or anything Anthropic ships next). Switch models with `/model`
195
- and the whole pipeline follows.
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. Hierarchical agent system:",
2195
- "Orchestrator (proxy) -> Part Leaders (team leads) -> Workers (executors)",
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
- "| Orchestrator (subagent) | inherits from user session | Meeting runner |",
2205
- "| Leader (specialist) | inherits from user session | Meeting participant |",
2206
- "| Worker | inherits from user session | Implementation |",
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.",