@jspg-ai/coding-bb 0.0.1 → 0.0.2-beta.22

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.
Files changed (145) hide show
  1. package/cbb/bin/cbb.js +6 -0
  2. package/cbb/bin/cbbm.js +6 -0
  3. package/cbb/dev-standards/rules/cbb-ai-behavior.md +103 -103
  4. package/cbb/dev-standards/rules/cbb-priority.md +55 -55
  5. package/cbb/lib/install/claude-code.js +2 -0
  6. package/cbb/lib/install/init.js +496 -290
  7. package/cbb/lib/install/opencode.js +31 -0
  8. package/cbb/lib/install/qoder.js +2 -0
  9. package/cbb/lib/install/workspaces.js +53 -13
  10. package/cbb/lib/openspec/index.js +3 -3
  11. package/cbb/lib/superpowers/index.js +1 -1
  12. package/cbb/lib/utils/check-update.js +16 -14
  13. package/cbb/lib/utils/gitignore.js +2 -1
  14. package/cbb/lib/utils/output.js +92 -4
  15. package/cbb/lib/utils/version.js +2 -31
  16. package/cbb/lib/wiki/cli.js +25 -25
  17. package/cbb/lib/wiki/index.js +16 -16
  18. package/cbb/tools/cbb-design-to-wiki/SKILL.md +14 -14
  19. package/cbb/tools/cbb-wiki-ops/SKILL.md +22 -22
  20. package/cbb/worktrees/_shared/scripts/find-target-worktree.js +2 -2
  21. package/cbb/worktrees/_shared/scripts/find-workspace-root.js +7 -7
  22. package/cbb/worktrees/_shared/scripts/push-core.js +18 -0
  23. package/cbb/worktrees/commands/{close.md → worktree-close.md} +8 -8
  24. package/cbb/worktrees/commands/{init.md → worktree-init.md} +9 -9
  25. package/cbb/worktrees/commands/{push.md → worktree-push.md} +3 -3
  26. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/SKILL.md +20 -20
  27. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/check-env.js +4 -4
  28. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/check-unarchived.js +1 -1
  29. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/delete-branches.js +3 -3
  30. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/discover-apps.js +6 -6
  31. package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-close}/scripts/find-target-worktree.js +2 -2
  32. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-close}/scripts/find-workspace-root.js +7 -7
  33. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/remove-worktrees.js +4 -4
  34. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/safety-check.js +4 -4
  35. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/SKILL.md +81 -107
  36. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/auto-open.js +1 -1
  37. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/check-env-deep.js +4 -4
  38. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/check-env.js +6 -6
  39. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/check-repos.js +4 -4
  40. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/create-branches.js +4 -4
  41. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/create-worktrees.js +8 -7
  42. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-init}/scripts/find-workspace-root.js +7 -7
  43. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/install-ai.js +33 -33
  44. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/parse-config.js +7 -7
  45. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/push-branches.js +9 -7
  46. package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-init}/scripts/push-core.js +18 -0
  47. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/sync-repos.js +10 -12
  48. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/update-gitignore.js +19 -6
  49. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/SKILL.md +16 -16
  50. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/commit-worktrees.js +2 -2
  51. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/find-target-worktree.js +2 -2
  52. package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-push}/scripts/find-workspace-root.js +7 -7
  53. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/push-core.js +18 -0
  54. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/push-worktrees.js +7 -5
  55. package/config/workspace-config.sample.json +18 -0
  56. package/config/workspaces.json +11 -6
  57. package/openspec/.version +6 -6
  58. package/openspec/commands/apply.md +7 -7
  59. package/openspec/commands/archive.md +7 -7
  60. package/openspec/commands/bulk-archive.md +7 -7
  61. package/openspec/commands/continue.md +7 -7
  62. package/openspec/commands/explore.md +7 -7
  63. package/openspec/commands/ff.md +7 -7
  64. package/openspec/commands/new.md +7 -7
  65. package/openspec/commands/onboard.md +7 -7
  66. package/openspec/commands/propose.md +7 -7
  67. package/openspec/commands/sync.md +7 -7
  68. package/openspec/commands/update.md +7 -7
  69. package/openspec/commands/verify.md +7 -7
  70. package/openspec/skills/openspec-apply-change/SKILL.md +187 -187
  71. package/openspec/skills/openspec-archive-change/SKILL.md +181 -181
  72. package/openspec/skills/openspec-bulk-archive-change/SKILL.md +338 -338
  73. package/openspec/skills/openspec-continue-change/SKILL.md +117 -117
  74. package/openspec/skills/openspec-explore/SKILL.md +342 -342
  75. package/openspec/skills/openspec-ff-change/SKILL.md +116 -116
  76. package/openspec/skills/openspec-new-change/SKILL.md +76 -76
  77. package/openspec/skills/openspec-onboard/SKILL.md +560 -560
  78. package/openspec/skills/openspec-propose/SKILL.md +162 -162
  79. package/openspec/skills/openspec-sync-specs/SKILL.md +261 -261
  80. package/openspec/skills/openspec-update-change/SKILL.md +90 -90
  81. package/openspec/skills/openspec-verify-change/SKILL.md +174 -174
  82. package/package.json +4 -3
  83. package/superpowers/.version +6 -6
  84. package/superpowers/skills/brainstorming/SKILL.md +250 -250
  85. package/superpowers/skills/brainstorming/scripts/helper.js +167 -167
  86. package/superpowers/skills/brainstorming/scripts/start-server.sh +209 -209
  87. package/superpowers/skills/brainstorming/scripts/stop-server.sh +120 -120
  88. package/superpowers/skills/brainstorming/spec-document-reviewer-prompt.md +49 -49
  89. package/superpowers/skills/brainstorming/visual-companion.md +299 -299
  90. package/superpowers/skills/dispatching-parallel-agents/SKILL.md +167 -167
  91. package/superpowers/skills/executing-plans/SKILL.md +64 -64
  92. package/superpowers/skills/finishing-a-development-branch/SKILL.md +225 -225
  93. package/superpowers/skills/receiving-code-review/SKILL.md +205 -205
  94. package/superpowers/skills/requesting-code-review/SKILL.md +95 -95
  95. package/superpowers/skills/requesting-code-review/code-reviewer.md +181 -181
  96. package/superpowers/skills/subagent-driven-development/SKILL.md +568 -568
  97. package/superpowers/skills/subagent-driven-development/implementer-prompt.md +154 -154
  98. package/superpowers/skills/subagent-driven-development/re-review-prompt.md +115 -115
  99. package/superpowers/skills/subagent-driven-development/task-reviewer-prompt.md +207 -207
  100. package/superpowers/skills/systematic-debugging/CREATION-LOG.md +119 -119
  101. package/superpowers/skills/systematic-debugging/SKILL.md +283 -283
  102. package/superpowers/skills/systematic-debugging/condition-based-waiting-example.ts +158 -158
  103. package/superpowers/skills/systematic-debugging/condition-based-waiting.md +115 -115
  104. package/superpowers/skills/systematic-debugging/defense-in-depth.md +122 -122
  105. package/superpowers/skills/systematic-debugging/find-polluter.sh +72 -72
  106. package/superpowers/skills/systematic-debugging/root-cause-tracing.md +169 -169
  107. package/superpowers/skills/systematic-debugging/test-academic.md +14 -14
  108. package/superpowers/skills/systematic-debugging/test-pressure-1.md +58 -58
  109. package/superpowers/skills/systematic-debugging/test-pressure-2.md +68 -68
  110. package/superpowers/skills/systematic-debugging/test-pressure-3.md +69 -69
  111. package/superpowers/skills/test-driven-development/SKILL.md +320 -320
  112. package/superpowers/skills/test-driven-development/writing-good-tests.md +198 -198
  113. package/superpowers/skills/using-git-worktrees/SKILL.md +167 -167
  114. package/superpowers/skills/using-superpowers/SKILL.md +63 -63
  115. package/superpowers/skills/using-superpowers/references/antigravity-tools.md +23 -23
  116. package/superpowers/skills/using-superpowers/references/codex-tools.md +108 -108
  117. package/superpowers/skills/using-superpowers/references/gemini-tools.md +63 -63
  118. package/superpowers/skills/using-superpowers/references/hermes-tools.md +56 -56
  119. package/superpowers/skills/using-superpowers/references/pi-tools.md +16 -16
  120. package/superpowers/skills/verification-before-completion/SKILL.md +120 -120
  121. package/superpowers/skills/writing-plans/SKILL.md +171 -171
  122. package/superpowers/skills/writing-plans/plan-document-reviewer-prompt.md +49 -49
  123. package/superpowers/skills/writing-skills/SKILL.md +679 -679
  124. package/superpowers/skills/writing-skills/anthropic-best-practices.md +1150 -1150
  125. package/superpowers/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -189
  126. package/superpowers/skills/writing-skills/persuasion-principles.md +187 -187
  127. package/superpowers/skills/writing-skills/render-graphs.js +169 -169
  128. package/superpowers/skills/writing-skills/testing-skills-with-subagents.md +384 -384
  129. package/cbb/worktrees/commands/extend.md +0 -65
  130. package/cbb/worktrees/skills/openspec-close-worktree/scripts/find-target-worktree.js +0 -96
  131. package/cbb/worktrees/skills/openspec-extend-worktree/SKILL.md +0 -390
  132. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/check-env.js +0 -95
  133. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/check-repos.js +0 -98
  134. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/create-branches-and-worktrees.js +0 -135
  135. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/install-ai.js +0 -150
  136. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/list-available-apps.js +0 -88
  137. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/sync-repos.js +0 -93
  138. package/cbb/worktrees/skills/openspec-init-worktree/scripts/find-workspace-root.js +0 -67
  139. package/cbb/worktrees/skills/openspec-init-worktree/scripts/generate-app-options.js +0 -93
  140. package/cbb/worktrees/skills/openspec-init-worktree/scripts/push-core.js +0 -136
  141. package/cbb/worktrees/skills/openspec-push-worktrees/scripts/silence-popup.js +0 -23
  142. package/config/config.sample.json +0 -16
  143. /package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/silence-popup.js +0 -0
  144. /package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-init}/scripts/silence-popup.js +0 -0
  145. /package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-push}/scripts/silence-popup.js +0 -0
@@ -1,568 +1,568 @@
1
- ---
2
- name: subagent-driven-development
3
- description: Use when executing implementation plans with independent tasks in the current session
4
- ---
5
-
6
- # Subagent-Driven Development
7
-
8
- Execute plan by dispatching a fresh implementer subagent per task, a task review (spec compliance + code quality) after each, and a broad whole-branch review at the end.
9
-
10
- **Why subagents:** You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work.
11
-
12
- **Core principle:** Fresh subagent per task + task review (spec + quality) + broad final review = high quality, fast iteration
13
-
14
- **Narration:** between tool calls, narrate at most one short line — the
15
- ledger and the tool results carry the record.
16
-
17
- **Continuous execution:** Do not pause to check in with your human partner between tasks. Execute all tasks from the plan without stopping. The only reasons to stop are the four named below, or all tasks complete. "Should I continue?" prompts and progress summaries waste their time — they asked you to execute the plan, so execute it.
18
-
19
- **Rulings, not stalls.** A running plan does not wait on a human. Conflicts,
20
- ambiguities, plan defects, a cap you would have asked to exceed — decide
21
- them. The spec is the binding authority, the plan is its argument, and your
22
- judgment settles what neither answers. Record every decision in the ledger as
23
- `Ruling: <what you decided> — <why> — <what it costs if wrong>`, and keep
24
- going. A wrong ruling costs rework your human partner can see and undo; a
25
- session parked on a question costs their whole day and buys nothing.
26
-
27
- Four things stop you, and only these: an irreversible or destructive
28
- operation; a security-sensitive action; a side effect outside this worktree
29
- that norms say you ask about first (a merge, a push to a shared branch, a
30
- publish); and a plan so broken that every path forward is a guess. For those,
31
- stop and ask.
32
-
33
- ## When to Use
34
-
35
- ```dot
36
- digraph when_to_use {
37
- "Have implementation plan?" [shape=diamond];
38
- "Tasks mostly independent?" [shape=diamond];
39
- "Stay in this session?" [shape=diamond];
40
- "subagent-driven-development" [shape=box];
41
- "executing-plans" [shape=box];
42
- "Manual execution or brainstorm first" [shape=box];
43
-
44
- "Have implementation plan?" -> "Tasks mostly independent?" [label="yes"];
45
- "Have implementation plan?" -> "Manual execution or brainstorm first" [label="no"];
46
- "Tasks mostly independent?" -> "Stay in this session?" [label="yes"];
47
- "Tasks mostly independent?" -> "Manual execution or brainstorm first" [label="no - tightly coupled"];
48
- "Stay in this session?" -> "subagent-driven-development" [label="yes"];
49
- "Stay in this session?" -> "executing-plans" [label="no - parallel session"];
50
- }
51
- ```
52
-
53
- **vs. Executing Plans (parallel session):**
54
- - Same session (no context switch)
55
- - Fresh subagent per task (no context pollution)
56
- - Review after each task (spec compliance + code quality), broad review at the end
57
- - Faster iteration (no human-in-loop between tasks)
58
-
59
- ## The Process
60
-
61
- ```dot
62
- digraph process {
63
- rankdir=TB;
64
-
65
- subgraph cluster_per_task {
66
- label="Per Task";
67
- "Dispatch implementer subagent (./implementer-prompt.md)" [shape=box];
68
- "Implementer asks questions?" [shape=diamond];
69
- "Answer questions, provide context" [shape=box];
70
- "Implementer implements, tests, commits, self-reviews" [shape=box];
71
- "Generate review package, dispatch task reviewer (./task-reviewer-prompt.md)" [shape=box];
72
- "Spec ✅ and quality approved?" [shape=diamond];
73
- "Finding conflicts with plan text?" [shape=diamond];
74
- "Rule on the conflict, ledger the ruling" [shape=box];
75
- "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" [shape=box];
76
- "Dispatch scoped re-review (./re-review-prompt.md)" [shape=box];
77
- "All findings addressed?" [shape=diamond];
78
- "R = 5?" [shape=diamond];
79
- "Adjudicate each open finding" [shape=box];
80
- "Any load-bearing finding?" [shape=diamond];
81
- "Rule and continue; stop only if every path forward is a guess" [shape=box];
82
- "Park findings in ledger with rulings" [shape=box];
83
- "Append completion to ledger, mark todo complete" [shape=box];
84
- }
85
-
86
- "Setup: worktree, ledger check, read plan, pre-flight review" [shape=box];
87
- "More tasks remain?" [shape=diamond];
88
- "Dispatch final code reviewer (../requesting-code-review/code-reviewer.md)" [shape=box];
89
- "Final findings? ONE fix dispatch, one scoped re-review, adjudicate residuals" [shape=box];
90
- "Final review clean: delete this plan's workspace" [shape=box];
91
- "Use superpowers:finishing-a-development-branch" [shape=box style=filled fillcolor=lightgreen];
92
-
93
- "Setup: worktree, ledger check, read plan, pre-flight review" -> "Dispatch implementer subagent (./implementer-prompt.md)";
94
- "Dispatch implementer subagent (./implementer-prompt.md)" -> "Implementer asks questions?";
95
- "Implementer asks questions?" -> "Answer questions, provide context" [label="yes"];
96
- "Answer questions, provide context" -> "Implementer implements, tests, commits, self-reviews";
97
- "Implementer asks questions?" -> "Implementer implements, tests, commits, self-reviews" [label="no"];
98
- "Implementer implements, tests, commits, self-reviews" -> "Generate review package, dispatch task reviewer (./task-reviewer-prompt.md)";
99
- "Generate review package, dispatch task reviewer (./task-reviewer-prompt.md)" -> "Spec ✅ and quality approved?";
100
- "Spec ✅ and quality approved?" -> "Append completion to ledger, mark todo complete" [label="yes"];
101
- "Spec ✅ and quality approved?" -> "Finding conflicts with plan text?" [label="no"];
102
- "Finding conflicts with plan text?" -> "Rule on the conflict, ledger the ruling" [label="yes"];
103
- "Rule on the conflict, ledger the ruling" -> "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model";
104
- "Finding conflicts with plan text?" -> "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" [label="no"];
105
- "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" -> "Dispatch scoped re-review (./re-review-prompt.md)";
106
- "Dispatch scoped re-review (./re-review-prompt.md)" -> "All findings addressed?";
107
- "All findings addressed?" -> "Append completion to ledger, mark todo complete" [label="yes"];
108
- "All findings addressed?" -> "R = 5?" [label="no"];
109
- "R = 5?" -> "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" [label="no - next round"];
110
- "R = 5?" -> "Adjudicate each open finding" [label="yes - breaker trips"];
111
- "Adjudicate each open finding" -> "Any load-bearing finding?";
112
- "Any load-bearing finding?" -> "Rule and continue; stop only if every path forward is a guess" [label="yes"];
113
- "Any load-bearing finding?" -> "Park findings in ledger with rulings" [label="no"];
114
- "Park findings in ledger with rulings" -> "Append completion to ledger, mark todo complete";
115
- "Append completion to ledger, mark todo complete" -> "More tasks remain?";
116
- "More tasks remain?" -> "Dispatch implementer subagent (./implementer-prompt.md)" [label="yes"];
117
- "More tasks remain?" -> "Dispatch final code reviewer (../requesting-code-review/code-reviewer.md)" [label="no"];
118
- "Dispatch final code reviewer (../requesting-code-review/code-reviewer.md)" -> "Final findings? ONE fix dispatch, one scoped re-review, adjudicate residuals";
119
- "Final findings? ONE fix dispatch, one scoped re-review, adjudicate residuals" -> "Final review clean: delete this plan's workspace";
120
- "Final review clean: delete this plan's workspace" -> "Use superpowers:finishing-a-development-branch";
121
- }
122
- ```
123
-
124
- ## Setup
125
-
126
- Ensure the work happens in an isolated workspace: use
127
- superpowers:using-git-worktrees to create one or verify the existing one.
128
- Never start implementation on a main/master branch without your human
129
- partner's explicit consent.
130
-
131
- Conversation memory does not survive compaction. In real sessions,
132
- controllers that lost their place have re-dispatched entire completed task
133
- sequences — the single most expensive failure observed. Track progress in
134
- a ledger file, not only in todos.
135
-
136
- - Each plan owns a workspace: at skill start, run this skill's
137
- `scripts/sdd-workspace PLAN_FILE` — it prints the plan's git-ignored
138
- directory (`<repo-root>/.superpowers/sdd/<plan-basename>/`), home to
139
- every artifact for THIS plan: ledger, briefs, reports, review packages.
140
- Another plan's directory is never yours to read or write.
141
- - Check for this plan's ledger at `<workspace>/progress.md`. If its first
142
- line names your plan file, tasks with a `Task <N>: complete` line are DONE
143
- — do not re-dispatch them; resume at the first task without one. A task
144
- whose last line is a fix round is mid-loop: resume the loop at the next
145
- round. A ledger whose first line names a different plan file — or a stray
146
- ledger at the old flat path `.superpowers/sdd/progress.md` — is another
147
- plan's progress: leave it in place and start your own, fresh.
148
- - Create the ledger with its identity as the first line:
149
- `# SDD ledger — plan: <plan file path>`.
150
- - The ledger is your recovery map: the commits it names exist in git even
151
- when your context no longer remembers creating them. After compaction,
152
- trust the ledger and `git log` over your own recollection.
153
- - `git clean -fdx` will destroy the workspace (it's git-ignored scratch); if
154
- that happens, recover from `git log`.
155
-
156
- Read the plan once, note its context and Global Constraints, and create a
157
- todo per task. If the plan names a Spec, read that too: the spec is the
158
- authority the plan argues from, and conflicts inside the plan resolve
159
- against it. A plan with no reachable spec gets a ledger note saying so —
160
- rulings made without one are provisional.
161
-
162
- Before dispatching Task 1, scan the plan once for conflicts, writing down
163
- what you checked as you check it:
164
-
165
- - tasks that contradict each other or the plan's Global Constraints
166
- - anything the plan explicitly mandates that the review rubric treats as a
167
- defect (a test that asserts nothing, verbatim duplication of a logic block)
168
-
169
- The scan's output is a table, not a verdict. One row for every pair of tasks
170
- that share a file or an interface: the two tasks, what one produces against
171
- what the other consumes, and what you found. One row for every task: whether
172
- its own text agrees with itself — the tests it specifies against the code it
173
- specifies, the files it creates against the files it later touches. "The scan
174
- is clean" without those rows is not a scan you ran.
175
-
176
- Write the table to the ledger. Rule on everything you find before execution
177
- begins — each finding against the plan text that mandates it — and record
178
- each ruling in the ledger. If the scan is clean, proceed without comment.
179
- Rule on each conflict it surfaces — the spec is the binding authority, the
180
- plan is its argument — record the ruling beside its row, and dispatch
181
- Task 1. The review loop remains the net for conflicts that only emerge from
182
- implementation.
183
-
184
- ## Model Selection
185
-
186
- Use the least powerful model that can handle each role to conserve cost and increase speed.
187
-
188
- **Mechanical implementation tasks** (isolated functions, clear specs, 1-2 files): use a fast, cheap model. Most implementation tasks are mechanical when the plan is well-specified.
189
-
190
- **Integration and judgment tasks** (multi-file coordination, pattern matching, debugging): use a standard model.
191
-
192
- **Architecture and design tasks**: use the most capable available model.
193
- The final whole-branch review is one of these — dispatch it on the most
194
- capable available model, not the session default.
195
-
196
- **Review tasks**: choose the model with the same judgment, scaled to the
197
- diff's size, complexity, and risk. A small mechanical diff does not need the
198
- most capable model; a subtle concurrency change does. Scoped re-reviews of
199
- small fix diffs take a cheap-to-mid tier.
200
-
201
- **Fix-loop escalation (rounds 4-5)**: use a model at least one tier above
202
- the implementer that got stuck.
203
-
204
- **Always specify the model explicitly when dispatching a subagent.** An
205
- omitted model inherits your session's model — often the most capable and
206
- most expensive — which silently defeats this section.
207
-
208
- **Turn count beats token price.** Wall-clock and context cost scale with how
209
- many turns a subagent takes, and the cheapest models routinely take 2-3× the
210
- turns on multi-step work — costing more overall. Use a mid-tier model as the
211
- floor for reviewers and for implementers working from prose descriptions.
212
- When the task's plan text contains the complete code to write, the
213
- implementation is transcription plus testing: use the cheapest tier for
214
- that implementer. Single-file mechanical fixes also take the cheapest tier.
215
-
216
- **Task complexity signals (implementation tasks):**
217
- - Touches 1-2 files with a complete spec → cheap model
218
- - Touches multiple files with integration concerns → standard model
219
- - Requires design judgment or broad codebase understanding → most capable model
220
-
221
- ## The Task Loop
222
-
223
- **Batch small same-shape work.** When the plan lists several tasks that are
224
- each a small, independent edit of the same kind — the same one-line fix,
225
- constant change, or field addition repeated across files — do not dispatch
226
- one subagent per task. Compose ONE dispatch brief listing every file and
227
- its change, send the whole batch to a single subagent, and review its diff
228
- as one unit. Reserve one-dispatch-per-task for work that needs its own
229
- judgment, its own tests, or its own review surface.
230
-
231
- Everything you paste into a dispatch prompt — and everything a subagent
232
- prints back — stays resident in your context for the rest of the session
233
- and is re-read on every later turn. Hand artifacts over as files.
234
-
235
- **Waiting on dispatched subagents:** never poll a wait interface with
236
- short timeouts, and never sit in one silent, open-ended wait either.
237
- While you have local work — ledger updates, packaging the next review,
238
- reading reports — keep working; child results arrive on their own.
239
- When you are genuinely idle, wait in bounded stretches (five to ten
240
- minutes, where your platform allows), and between stretches post one
241
- line of status and reconcile your live children: list them, and chase
242
- any that finished without reporting. A bounded stretch keeps nearly
243
- all of a long wait's efficiency while guaranteeing a stuck or lost
244
- child is noticed within minutes, not at the end of the session.
245
-
246
- ### 1. Dispatch the implementer
247
-
248
- Record BASE (`git rev-parse HEAD`) before dispatching — the review package
249
- and fix-round diffs need it.
250
-
251
- - **Task brief:** before dispatching an implementer, run this skill's
252
- `scripts/task-brief PLAN_FILE N` — it extracts the task's full text to a
253
- uniquely named file and prints the path. Compose the dispatch so the
254
- brief stays the single source of
255
- requirements. Your dispatch should contain: (1) one line on where this
256
- task fits in the project; (2) the brief path, introduced as "read this
257
- first — it is your requirements, with the exact values to use verbatim";
258
- (3) interfaces and decisions from earlier tasks that the brief cannot
259
- know; (4) your resolution of any ambiguity you noticed in the brief;
260
- (5) the report-file path and report contract. Exact values (numbers,
261
- magic strings, signatures, test cases) appear only in the brief. Never
262
- make a subagent read the whole plan file.
263
- - **Report file:** name the implementer's report file after the brief
264
- (brief `…/task-N-brief.md` → report `…/task-N-report.md`) and put it in
265
- the dispatch prompt. The implementer writes the full report there and
266
- returns only status, commits, a one-line test summary, and concerns.
267
- - A dispatch prompt describes one task, not the session's history. Do not
268
- paste accumulated prior-task summaries ("state after Tasks 1-3") into
269
- later dispatches — a real session's dispatch hit 42k chars of which 99%
270
- was pasted history. A fresh subagent needs its task, the interfaces it
271
- touches, and the global constraints. Nothing else.
272
- - The dispatch carries the no-subagents contract (it is in the
273
- implementer template): the implementer never dispatches subagents —
274
- not helpers, and never a reviewer. Review arrives from you, after the
275
- report. In real sessions, every reviewer a worker spawned duplicated
276
- the task review the controller dispatched anyway — a full extra
277
- review seat per task.
278
- - If an earlier task parked a finding in the area this task touches, carry
279
- a pointer to that ledger entry in the dispatch.
280
- - Record the implementer's agent identity from the dispatch result —
281
- fix-loop rounds 1-3 resume this agent.
282
- - Never dispatch multiple implementation subagents in parallel (conflicts).
283
-
284
- Template: [implementer-prompt.md](implementer-prompt.md)
285
-
286
- ### 2. Handle the report
287
-
288
- Implementer subagents report one of four statuses. Handle each appropriately:
289
-
290
- **DONE:** Generate the review package (`scripts/review-package PLAN_FILE BASE HEAD`, from this skill's directory — it prints the unique file path it wrote; BASE is the commit you recorded before dispatching the implementer — never `HEAD~1`, which silently drops all but the last commit of a multi-commit task), then dispatch the task reviewer with the printed path.
291
-
292
- **DONE_WITH_CONCERNS:** The implementer completed the work but flagged doubts. Read the concerns before proceeding. If the concerns are about correctness or scope, address them before review. If they're observations (e.g., "this file is getting large"), note them and proceed to review.
293
-
294
- **NEEDS_CONTEXT:** The implementer needs information that wasn't provided. Provide the missing context and re-dispatch.
295
-
296
- **BLOCKED:** The implementer cannot complete the task. Assess the blocker:
297
- 1. If it's a context problem, provide more context and re-dispatch with the same model
298
- 2. If the task requires more reasoning, re-dispatch with a more capable model
299
- 3. If the task is too large, break it into smaller pieces
300
- 4. If the plan itself is wrong, rule on the correction, ledger it, and re-dispatch with the ruling carried in the dispatch
301
-
302
- **Never** ignore an escalation or force the same model to retry without changes. If the implementer said it's stuck, something needs to change.
303
-
304
- If the implementer asks questions — before starting or mid-task — answer
305
- clearly and completely, provide additional context if needed, and don't
306
- rush it into implementation.
307
-
308
- ### 3. Review the task
309
-
310
- Per-task reviews are task-scoped gates. The broad review happens once, at the
311
- final whole-branch review. Never skip the task review, and never accept a
312
- report missing either verdict — spec compliance AND task quality are both
313
- required. Implementer self-review never replaces the task review; both are
314
- needed.
315
-
316
- - Hand the reviewer its diff as a file: run this skill's
317
- `scripts/review-package PLAN_FILE BASE HEAD` and pass the reviewer the file path
318
- it prints (or, without bash: `git log --oneline`, `git diff --stat`,
319
- and `git diff -U10` for the range, redirected to one uniquely named
320
- file). The output never enters your own context, and the reviewer sees
321
- the commit list, stat summary, and full diff with context in one Read
322
- call. Use the BASE you recorded before dispatching the implementer —
323
- never `HEAD~1`, which silently truncates multi-commit tasks. Never
324
- dispatch a task reviewer without a diff file.
325
- - **Reviewer inputs:** the task reviewer gets three paths — the same brief
326
- file, the report file, and the review package — plus the global
327
- constraints that bind the task.
328
- - The global-constraints block you hand the reviewer is its attention
329
- lens. Copy the binding requirements verbatim from the plan's Global
330
- Constraints section or the spec: exact values, exact formats, and the
331
- stated relationships between components ("same layout as X", "matches
332
- Y"). The reviewer's template already carries the process rules (YAGNI,
333
- test hygiene, review method) — the constraints block is for what THIS
334
- project's spec demands.
335
- - Do not add open-ended directives like "check all uses" or "run race tests
336
- if useful" without a concrete, task-specific reason
337
- - Do not ask a reviewer to re-run tests the implementer already ran on the
338
- same code — the implementer's report carries the test evidence
339
- - Do not pre-judge findings for the reviewer — never instruct a reviewer to
340
- ignore or not flag a specific issue. If you believe a finding would be a
341
- false positive, let the reviewer raise it and adjudicate it in the review
342
- loop. If the prompt you are writing contains "do not flag," "don't treat X
343
- as a defect," "at most Minor," or "the plan chose" — stop: you are
344
- pre-judging, usually to spare yourself a review loop.
345
- The task reviewer may report "⚠️ Cannot verify from diff" items — requirements
346
- that live in unchanged code or span tasks. These do not block the rest of the
347
- review, but you must resolve each one yourself before marking the task
348
- complete: you hold the plan and cross-task context the reviewer
349
- lacks. If you confirm an item is a real gap, treat it as a failed spec
350
- review — it enters the fix loop with the other findings.
351
-
352
- Template: [task-reviewer-prompt.md](task-reviewer-prompt.md)
353
-
354
- ### 4. The fix loop
355
-
356
- The loop triggers when the review reports spec ❌, any Critical or Important
357
- finding, or a ⚠️ item you confirmed as a real gap.
358
-
359
- Before the loop starts, two routes leave it immediately:
360
-
361
- - Record Minor findings in the progress ledger as you go
362
- (`Task <N>: minor (deferred): <one-liner>`), and point the final
363
- whole-branch review at that list so it can triage which must be fixed
364
- before merge. A roll-up nobody reads is a silent discard. Minor findings
365
- never enter the loop.
366
- - A finding labeled plan-mandated — or any finding that conflicts with
367
- what the plan's text requires — is yours to rule on: weigh the finding
368
- against the plan text, decide with the spec as the binding authority, and
369
- ledger the ruling before you act on it. Do not dismiss the finding because
370
- the plan mandates it, and do not dispatch a fix that contradicts the plan
371
- without a recorded ruling.
372
- Everything else enters the loop. A fix round is one fix dispatch plus one
373
- scoped re-review. Five rounds maximum per task:
374
-
375
- **Rounds 1-3 — resume the original implementer.** Send it the open findings
376
- verbatim. Its context is intact: it knows the task, the code, and its own
377
- choices. If your harness cannot send another message to a live subagent,
378
- dispatch a fresh implementer carrying the brief path, the report-file path,
379
- and the findings — the report file is the persistent memory either way.
380
-
381
- **Rounds 4-5 — dispatch a fresh implementer on a more capable model** (per
382
- Model Selection), with the brief path, the report-file path, the open
383
- findings, and this framing: "A prior implementer attempted this task
384
- [N] times; you own it now. Read the report file for what was tried." A loop
385
- that survives three resumes usually means the implementer cannot see its
386
- own problem — fresh eyes and a capability bump in one move.
387
-
388
- **Every round, either way:** the implementer fixes, re-runs the tests
389
- covering the amended code, appends its fix report to the same report file,
390
- and returns the short contract. Before re-dispatching the reviewer, confirm
391
- the fix report contains the covering tests, the command run, and the
392
- output; dispatch the re-review once all three are present. Name the
393
- covering test files in the fix message — a one-line fix does not need the
394
- whole suite.
395
-
396
- **The re-review is scoped.** Run `scripts/review-package PLAN_FILE FIX_BASE HEAD`
397
- where FIX_BASE is the head the previous review saw, and dispatch
398
- [re-review-prompt.md](re-review-prompt.md) with the findings list, the
399
- brief, the report file, and the printed diff path. The re-reviewer verdicts
400
- each finding ADDRESSED or NOT ADDRESSED and flags new breakage in the fix
401
- diff only. New Critical/Important breakage in the fix diff joins the open
402
- findings list. Out-of-scope observations go to the ledger as deferred
403
- minors — they never extend the loop.
404
-
405
- **After each round,** append to the ledger:
406
- `Task <N>: fix round <R>/5 (<X> addressed, <Y> open — <finding one-liners>; commits <a7>..<b7>)`
407
-
408
- Never fix findings yourself in the controller session — your context stays
409
- clean for coordination, and controller fixes skip review.
410
-
411
- **The breaker.** When round 5's re-review still leaves findings open, stop
412
- dispatching. Adjudicate each open finding yourself — you hold the plan and
413
- the cross-task context the reviewer lacks:
414
-
415
- - **The reviewer is wrong, or the point is contestable:** park it —
416
- `Task <N>: parked — <finding> — Ruling: <why the code stands>`. The final
417
- review sees both sides.
418
- - **Real, but nothing downstream builds on it:** park it the same way, with
419
- a ruling that says it's real and deferred.
420
- - **Real and load-bearing** — a later task builds on it, or it reveals a
421
- plan defect: rule on the smallest change that unblocks the dependent work,
422
- ledger it as `Task <N>: Ruling: <finding> — <what you decided and why>`,
423
- and carry it into the next task's dispatch. Parking a structural failure
424
- silently lets every dependent task build on it. Stop only when the defect
425
- leaves every path forward a guess.
426
-
427
- Adjudicate only at the cap. Adjudicating earlier to end a loop is
428
- pre-judging with a different name. Every adjudication is a ledger entry —
429
- a silent discard is forbidden.
430
-
431
- ### 5. Complete the task
432
-
433
- When the review comes back clean — or every open finding is parked with a
434
- ruling at the cap — append the completion line to the ledger in the same
435
- message as your other bookkeeping:
436
-
437
- - `Task <N>: complete (commits <base7>..<head7>, review clean)`
438
- - `Task <N>: complete (commits <base7>..<head7>, <K> parked)` after a
439
- tripped breaker
440
-
441
- Then mark the todo complete and move on. Never move to the next task while
442
- the review has open Critical/Important issues that are neither fixed nor
443
- parked-with-ruling at the cap.
444
-
445
- ## Final Review
446
-
447
- The final whole-branch review gets a package too: run
448
- `scripts/review-package PLAN_FILE MERGE_BASE HEAD` (MERGE_BASE = the commit the
449
- branch started from, e.g. `git merge-base main HEAD`) and include the
450
- printed path in the final review dispatch, so the final reviewer reads
451
- one file instead of re-deriving the branch diff with git commands. Dispatch
452
- on the most capable available model (see Model Selection), using
453
- superpowers:requesting-code-review's
454
- [code-reviewer.md](../requesting-code-review/code-reviewer.md). Point it at
455
- the ledger's deferred-minor and parked lines so it can triage which must be
456
- fixed before merge.
457
-
458
- If the final whole-branch review returns findings, dispatch ONE fix subagent
459
- with the complete findings list — not one fixer per finding.
460
- Per-finding fixers each rebuild context and re-run suites; a real
461
- session's final-review fix wave cost more than all its tasks combined.
462
- Then run exactly one scoped re-review of the fix wave
463
- (`scripts/review-package PLAN_FILE FIX_BASE HEAD` over the fix range,
464
- [re-review-prompt.md](re-review-prompt.md)).
465
- Adjudicate any residual findings as in the task loop's breaker: park with
466
- rulings, or rule on the load-bearing ones and ledger what you decided. Only
467
- the four classes above stop you here. There is no second fix wave —
468
- residual load-bearing findings surface to your human partner when
469
- finishing-a-development-branch presents the options.
470
-
471
- ## Finish
472
-
473
- Before you delete anything, collect every ledger line containing `Ruling:` —
474
- preflight rulings, parked findings, breaker adjudications, all of them — into
475
- your final message under "Rulings I made", in the order you made them, each
476
- with what it costs if wrong. The list is exhaustive: if the ledger holds a
477
- ruling, the list holds it. That list is the only place the decisions you
478
- took on your human partner's behalf reach them — they read it and rework
479
- whatever you got wrong. A ruling that dies with the workspace was a decision
480
- made in secret.
481
-
482
- When the final whole-branch review is clean and its fixes are merged,
483
- delete this plan's workspace (`rm -rf <workspace>`) — the git history is
484
- the record now. Sibling directories belong to other plans; leave them
485
- alone.
486
-
487
- Use superpowers:finishing-a-development-branch.
488
-
489
- ## Common Rationalizations
490
-
491
- | Excuse | Reality |
492
- |--------|---------|
493
- | "Close enough on spec compliance" | Reviewer found spec gaps = not done. Fix or hit the cap and adjudicate — those are the only exits. |
494
- | "I'll fix it myself, dispatching is overhead" | Controller fixes pollute your context and skip review. Resume the implementer. |
495
- | "One more round will converge" | Past the cap, rounds don't converge — the failure is structural. Adjudicate and route. |
496
- | "The reviewer will just find something new anyway" | Scoped re-reviews verify fixes; they cannot wander. New findings on untouched code go to the ledger, not the loop. |
497
- | "This finding is obviously wrong, I'll drop it" | You adjudicate only at the cap, and every ruling is a ledger entry. Silent discards are forbidden. |
498
- | "The fix was small, skip the re-review" | Unreviewed fixes are how regressions land. Every round ends with a scoped re-review. |
499
- | "Reviews slow the loop down" | The loop without reviews is just unverified churn. Reviews are the loop's brakes and steering. |
500
- | "Ledger bookkeeping is overhead" | The ledger is what survives compaction. Controllers without one have re-dispatched entire completed task sequences. |
501
- | "The implementer spawned its own reviewer — free extra assurance" | It's a duplicate seat reviewing the same diff; the task review is the gate. A worker-spawned reviewer is a defect to flag, not rigor. |
502
-
503
- ## Example Workflow
504
-
505
- ```
506
- You: I'm using Subagent-Driven Development to execute this plan.
507
-
508
- [Setup: worktree verified]
509
- [Read plan file once: docs/superpowers/plans/feature-plan.md]
510
- [Resolve workspace: scripts/sdd-workspace docs/superpowers/plans/feature-plan.md — no ledger inside, fresh start]
511
- [Create todos for all tasks]
512
-
513
- Task 1: Hook installation script
514
-
515
- [Run task-brief for Task 1; dispatch implementer with brief + report paths + context]
516
-
517
- Implementer: "Before I begin - should the hook be installed at user or system level?"
518
-
519
- You: "User level (~/.config/superpowers/hooks/)"
520
-
521
- Implementer: [Later]
522
- - Implemented install-hook command
523
- - Added tests, 5/5 passing
524
- - Self-review: Found I missed --force flag, added it
525
- - Committed
526
-
527
- [Run review-package PLAN_FILE BASE HEAD; dispatch task reviewer with the printed path]
528
- Task reviewer: Spec ✅ - all requirements met, nothing extra.
529
- Strengths: Good test coverage, clean. Issues: None. Task quality: Approved.
530
-
531
- [Ledger: Task 1: complete (commits a1b2c3d..d4e5f6a, review clean)]
532
-
533
- Task 2: Recovery modes
534
-
535
- [Run task-brief for Task 2; dispatch implementer with brief + report paths + context]
536
-
537
- Implementer: [No questions]
538
- - Added verify/repair modes
539
- - 8/8 tests passing
540
- - Committed
541
-
542
- [Run review-package PLAN_FILE BASE HEAD; dispatch task reviewer with the printed path]
543
- Task reviewer: Spec ❌:
544
- - Missing: Progress reporting (spec says "report every 100 items")
545
- Issues (Important): Magic number (100)
546
-
547
- [Fix round 1: resume the implementer with both findings]
548
- Implementer: Added progress reporting, extracted PROGRESS_INTERVAL constant.
549
- Re-ran test/recovery.test.js — 10/10 passing. Fix report appended.
550
-
551
- [Run review-package PLAN_FILE FIX_BASE HEAD; dispatch scoped re-review]
552
- Re-reviewer: Missing progress reporting — ADDRESSED (src/recovery.js:41).
553
- Magic number — ADDRESSED (src/recovery.js:7). New breakage: none.
554
- Verdict: all findings addressed.
555
-
556
- [Ledger: Task 2: fix round 1/5 (2 addressed, 0 open; commits d4e5f6a..b7c8d9e)]
557
- [Ledger: Task 2: complete (commits d4e5f6a..b7c8d9e, review clean)]
558
-
559
- ...
560
-
561
- [After all tasks]
562
- [Run review-package PLAN_FILE MERGE_BASE HEAD; dispatch final code-reviewer, most capable model]
563
- Final reviewer: All requirements met. Deferred minors triaged: none block merge.
564
-
565
- [Delete this plan's workspace — the record now lives in git]
566
-
567
- Done! Using superpowers:finishing-a-development-branch.
568
- ```
1
+ ---
2
+ name: subagent-driven-development
3
+ description: Use when executing implementation plans with independent tasks in the current session
4
+ ---
5
+
6
+ # Subagent-Driven Development
7
+
8
+ Execute plan by dispatching a fresh implementer subagent per task, a task review (spec compliance + code quality) after each, and a broad whole-branch review at the end.
9
+
10
+ **Why subagents:** You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work.
11
+
12
+ **Core principle:** Fresh subagent per task + task review (spec + quality) + broad final review = high quality, fast iteration
13
+
14
+ **Narration:** between tool calls, narrate at most one short line — the
15
+ ledger and the tool results carry the record.
16
+
17
+ **Continuous execution:** Do not pause to check in with your human partner between tasks. Execute all tasks from the plan without stopping. The only reasons to stop are the four named below, or all tasks complete. "Should I continue?" prompts and progress summaries waste their time — they asked you to execute the plan, so execute it.
18
+
19
+ **Rulings, not stalls.** A running plan does not wait on a human. Conflicts,
20
+ ambiguities, plan defects, a cap you would have asked to exceed — decide
21
+ them. The spec is the binding authority, the plan is its argument, and your
22
+ judgment settles what neither answers. Record every decision in the ledger as
23
+ `Ruling: <what you decided> — <why> — <what it costs if wrong>`, and keep
24
+ going. A wrong ruling costs rework your human partner can see and undo; a
25
+ session parked on a question costs their whole day and buys nothing.
26
+
27
+ Four things stop you, and only these: an irreversible or destructive
28
+ operation; a security-sensitive action; a side effect outside this worktree
29
+ that norms say you ask about first (a merge, a push to a shared branch, a
30
+ publish); and a plan so broken that every path forward is a guess. For those,
31
+ stop and ask.
32
+
33
+ ## When to Use
34
+
35
+ ```dot
36
+ digraph when_to_use {
37
+ "Have implementation plan?" [shape=diamond];
38
+ "Tasks mostly independent?" [shape=diamond];
39
+ "Stay in this session?" [shape=diamond];
40
+ "subagent-driven-development" [shape=box];
41
+ "executing-plans" [shape=box];
42
+ "Manual execution or brainstorm first" [shape=box];
43
+
44
+ "Have implementation plan?" -> "Tasks mostly independent?" [label="yes"];
45
+ "Have implementation plan?" -> "Manual execution or brainstorm first" [label="no"];
46
+ "Tasks mostly independent?" -> "Stay in this session?" [label="yes"];
47
+ "Tasks mostly independent?" -> "Manual execution or brainstorm first" [label="no - tightly coupled"];
48
+ "Stay in this session?" -> "subagent-driven-development" [label="yes"];
49
+ "Stay in this session?" -> "executing-plans" [label="no - parallel session"];
50
+ }
51
+ ```
52
+
53
+ **vs. Executing Plans (parallel session):**
54
+ - Same session (no context switch)
55
+ - Fresh subagent per task (no context pollution)
56
+ - Review after each task (spec compliance + code quality), broad review at the end
57
+ - Faster iteration (no human-in-loop between tasks)
58
+
59
+ ## The Process
60
+
61
+ ```dot
62
+ digraph process {
63
+ rankdir=TB;
64
+
65
+ subgraph cluster_per_task {
66
+ label="Per Task";
67
+ "Dispatch implementer subagent (./implementer-prompt.md)" [shape=box];
68
+ "Implementer asks questions?" [shape=diamond];
69
+ "Answer questions, provide context" [shape=box];
70
+ "Implementer implements, tests, commits, self-reviews" [shape=box];
71
+ "Generate review package, dispatch task reviewer (./task-reviewer-prompt.md)" [shape=box];
72
+ "Spec ✅ and quality approved?" [shape=diamond];
73
+ "Finding conflicts with plan text?" [shape=diamond];
74
+ "Rule on the conflict, ledger the ruling" [shape=box];
75
+ "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" [shape=box];
76
+ "Dispatch scoped re-review (./re-review-prompt.md)" [shape=box];
77
+ "All findings addressed?" [shape=diamond];
78
+ "R = 5?" [shape=diamond];
79
+ "Adjudicate each open finding" [shape=box];
80
+ "Any load-bearing finding?" [shape=diamond];
81
+ "Rule and continue; stop only if every path forward is a guess" [shape=box];
82
+ "Park findings in ledger with rulings" [shape=box];
83
+ "Append completion to ledger, mark todo complete" [shape=box];
84
+ }
85
+
86
+ "Setup: worktree, ledger check, read plan, pre-flight review" [shape=box];
87
+ "More tasks remain?" [shape=diamond];
88
+ "Dispatch final code reviewer (../requesting-code-review/code-reviewer.md)" [shape=box];
89
+ "Final findings? ONE fix dispatch, one scoped re-review, adjudicate residuals" [shape=box];
90
+ "Final review clean: delete this plan's workspace" [shape=box];
91
+ "Use superpowers:finishing-a-development-branch" [shape=box style=filled fillcolor=lightgreen];
92
+
93
+ "Setup: worktree, ledger check, read plan, pre-flight review" -> "Dispatch implementer subagent (./implementer-prompt.md)";
94
+ "Dispatch implementer subagent (./implementer-prompt.md)" -> "Implementer asks questions?";
95
+ "Implementer asks questions?" -> "Answer questions, provide context" [label="yes"];
96
+ "Answer questions, provide context" -> "Implementer implements, tests, commits, self-reviews";
97
+ "Implementer asks questions?" -> "Implementer implements, tests, commits, self-reviews" [label="no"];
98
+ "Implementer implements, tests, commits, self-reviews" -> "Generate review package, dispatch task reviewer (./task-reviewer-prompt.md)";
99
+ "Generate review package, dispatch task reviewer (./task-reviewer-prompt.md)" -> "Spec ✅ and quality approved?";
100
+ "Spec ✅ and quality approved?" -> "Append completion to ledger, mark todo complete" [label="yes"];
101
+ "Spec ✅ and quality approved?" -> "Finding conflicts with plan text?" [label="no"];
102
+ "Finding conflicts with plan text?" -> "Rule on the conflict, ledger the ruling" [label="yes"];
103
+ "Rule on the conflict, ledger the ruling" -> "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model";
104
+ "Finding conflicts with plan text?" -> "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" [label="no"];
105
+ "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" -> "Dispatch scoped re-review (./re-review-prompt.md)";
106
+ "Dispatch scoped re-review (./re-review-prompt.md)" -> "All findings addressed?";
107
+ "All findings addressed?" -> "Append completion to ledger, mark todo complete" [label="yes"];
108
+ "All findings addressed?" -> "R = 5?" [label="no"];
109
+ "R = 5?" -> "Fix round R of 5: R≤3 resume implementer; R≥4 fresh implementer, more capable model" [label="no - next round"];
110
+ "R = 5?" -> "Adjudicate each open finding" [label="yes - breaker trips"];
111
+ "Adjudicate each open finding" -> "Any load-bearing finding?";
112
+ "Any load-bearing finding?" -> "Rule and continue; stop only if every path forward is a guess" [label="yes"];
113
+ "Any load-bearing finding?" -> "Park findings in ledger with rulings" [label="no"];
114
+ "Park findings in ledger with rulings" -> "Append completion to ledger, mark todo complete";
115
+ "Append completion to ledger, mark todo complete" -> "More tasks remain?";
116
+ "More tasks remain?" -> "Dispatch implementer subagent (./implementer-prompt.md)" [label="yes"];
117
+ "More tasks remain?" -> "Dispatch final code reviewer (../requesting-code-review/code-reviewer.md)" [label="no"];
118
+ "Dispatch final code reviewer (../requesting-code-review/code-reviewer.md)" -> "Final findings? ONE fix dispatch, one scoped re-review, adjudicate residuals";
119
+ "Final findings? ONE fix dispatch, one scoped re-review, adjudicate residuals" -> "Final review clean: delete this plan's workspace";
120
+ "Final review clean: delete this plan's workspace" -> "Use superpowers:finishing-a-development-branch";
121
+ }
122
+ ```
123
+
124
+ ## Setup
125
+
126
+ Ensure the work happens in an isolated workspace: use
127
+ superpowers:using-git-worktrees to create one or verify the existing one.
128
+ Never start implementation on a main/master branch without your human
129
+ partner's explicit consent.
130
+
131
+ Conversation memory does not survive compaction. In real sessions,
132
+ controllers that lost their place have re-dispatched entire completed task
133
+ sequences — the single most expensive failure observed. Track progress in
134
+ a ledger file, not only in todos.
135
+
136
+ - Each plan owns a workspace: at skill start, run this skill's
137
+ `scripts/sdd-workspace PLAN_FILE` — it prints the plan's git-ignored
138
+ directory (`<repo-root>/.superpowers/sdd/<plan-basename>/`), home to
139
+ every artifact for THIS plan: ledger, briefs, reports, review packages.
140
+ Another plan's directory is never yours to read or write.
141
+ - Check for this plan's ledger at `<workspace>/progress.md`. If its first
142
+ line names your plan file, tasks with a `Task <N>: complete` line are DONE
143
+ — do not re-dispatch them; resume at the first task without one. A task
144
+ whose last line is a fix round is mid-loop: resume the loop at the next
145
+ round. A ledger whose first line names a different plan file — or a stray
146
+ ledger at the old flat path `.superpowers/sdd/progress.md` — is another
147
+ plan's progress: leave it in place and start your own, fresh.
148
+ - Create the ledger with its identity as the first line:
149
+ `# SDD ledger — plan: <plan file path>`.
150
+ - The ledger is your recovery map: the commits it names exist in git even
151
+ when your context no longer remembers creating them. After compaction,
152
+ trust the ledger and `git log` over your own recollection.
153
+ - `git clean -fdx` will destroy the workspace (it's git-ignored scratch); if
154
+ that happens, recover from `git log`.
155
+
156
+ Read the plan once, note its context and Global Constraints, and create a
157
+ todo per task. If the plan names a Spec, read that too: the spec is the
158
+ authority the plan argues from, and conflicts inside the plan resolve
159
+ against it. A plan with no reachable spec gets a ledger note saying so —
160
+ rulings made without one are provisional.
161
+
162
+ Before dispatching Task 1, scan the plan once for conflicts, writing down
163
+ what you checked as you check it:
164
+
165
+ - tasks that contradict each other or the plan's Global Constraints
166
+ - anything the plan explicitly mandates that the review rubric treats as a
167
+ defect (a test that asserts nothing, verbatim duplication of a logic block)
168
+
169
+ The scan's output is a table, not a verdict. One row for every pair of tasks
170
+ that share a file or an interface: the two tasks, what one produces against
171
+ what the other consumes, and what you found. One row for every task: whether
172
+ its own text agrees with itself — the tests it specifies against the code it
173
+ specifies, the files it creates against the files it later touches. "The scan
174
+ is clean" without those rows is not a scan you ran.
175
+
176
+ Write the table to the ledger. Rule on everything you find before execution
177
+ begins — each finding against the plan text that mandates it — and record
178
+ each ruling in the ledger. If the scan is clean, proceed without comment.
179
+ Rule on each conflict it surfaces — the spec is the binding authority, the
180
+ plan is its argument — record the ruling beside its row, and dispatch
181
+ Task 1. The review loop remains the net for conflicts that only emerge from
182
+ implementation.
183
+
184
+ ## Model Selection
185
+
186
+ Use the least powerful model that can handle each role to conserve cost and increase speed.
187
+
188
+ **Mechanical implementation tasks** (isolated functions, clear specs, 1-2 files): use a fast, cheap model. Most implementation tasks are mechanical when the plan is well-specified.
189
+
190
+ **Integration and judgment tasks** (multi-file coordination, pattern matching, debugging): use a standard model.
191
+
192
+ **Architecture and design tasks**: use the most capable available model.
193
+ The final whole-branch review is one of these — dispatch it on the most
194
+ capable available model, not the session default.
195
+
196
+ **Review tasks**: choose the model with the same judgment, scaled to the
197
+ diff's size, complexity, and risk. A small mechanical diff does not need the
198
+ most capable model; a subtle concurrency change does. Scoped re-reviews of
199
+ small fix diffs take a cheap-to-mid tier.
200
+
201
+ **Fix-loop escalation (rounds 4-5)**: use a model at least one tier above
202
+ the implementer that got stuck.
203
+
204
+ **Always specify the model explicitly when dispatching a subagent.** An
205
+ omitted model inherits your session's model — often the most capable and
206
+ most expensive — which silently defeats this section.
207
+
208
+ **Turn count beats token price.** Wall-clock and context cost scale with how
209
+ many turns a subagent takes, and the cheapest models routinely take 2-3× the
210
+ turns on multi-step work — costing more overall. Use a mid-tier model as the
211
+ floor for reviewers and for implementers working from prose descriptions.
212
+ When the task's plan text contains the complete code to write, the
213
+ implementation is transcription plus testing: use the cheapest tier for
214
+ that implementer. Single-file mechanical fixes also take the cheapest tier.
215
+
216
+ **Task complexity signals (implementation tasks):**
217
+ - Touches 1-2 files with a complete spec → cheap model
218
+ - Touches multiple files with integration concerns → standard model
219
+ - Requires design judgment or broad codebase understanding → most capable model
220
+
221
+ ## The Task Loop
222
+
223
+ **Batch small same-shape work.** When the plan lists several tasks that are
224
+ each a small, independent edit of the same kind — the same one-line fix,
225
+ constant change, or field addition repeated across files — do not dispatch
226
+ one subagent per task. Compose ONE dispatch brief listing every file and
227
+ its change, send the whole batch to a single subagent, and review its diff
228
+ as one unit. Reserve one-dispatch-per-task for work that needs its own
229
+ judgment, its own tests, or its own review surface.
230
+
231
+ Everything you paste into a dispatch prompt — and everything a subagent
232
+ prints back — stays resident in your context for the rest of the session
233
+ and is re-read on every later turn. Hand artifacts over as files.
234
+
235
+ **Waiting on dispatched subagents:** never poll a wait interface with
236
+ short timeouts, and never sit in one silent, open-ended wait either.
237
+ While you have local work — ledger updates, packaging the next review,
238
+ reading reports — keep working; child results arrive on their own.
239
+ When you are genuinely idle, wait in bounded stretches (five to ten
240
+ minutes, where your platform allows), and between stretches post one
241
+ line of status and reconcile your live children: list them, and chase
242
+ any that finished without reporting. A bounded stretch keeps nearly
243
+ all of a long wait's efficiency while guaranteeing a stuck or lost
244
+ child is noticed within minutes, not at the end of the session.
245
+
246
+ ### 1. Dispatch the implementer
247
+
248
+ Record BASE (`git rev-parse HEAD`) before dispatching — the review package
249
+ and fix-round diffs need it.
250
+
251
+ - **Task brief:** before dispatching an implementer, run this skill's
252
+ `scripts/task-brief PLAN_FILE N` — it extracts the task's full text to a
253
+ uniquely named file and prints the path. Compose the dispatch so the
254
+ brief stays the single source of
255
+ requirements. Your dispatch should contain: (1) one line on where this
256
+ task fits in the project; (2) the brief path, introduced as "read this
257
+ first — it is your requirements, with the exact values to use verbatim";
258
+ (3) interfaces and decisions from earlier tasks that the brief cannot
259
+ know; (4) your resolution of any ambiguity you noticed in the brief;
260
+ (5) the report-file path and report contract. Exact values (numbers,
261
+ magic strings, signatures, test cases) appear only in the brief. Never
262
+ make a subagent read the whole plan file.
263
+ - **Report file:** name the implementer's report file after the brief
264
+ (brief `…/task-N-brief.md` → report `…/task-N-report.md`) and put it in
265
+ the dispatch prompt. The implementer writes the full report there and
266
+ returns only status, commits, a one-line test summary, and concerns.
267
+ - A dispatch prompt describes one task, not the session's history. Do not
268
+ paste accumulated prior-task summaries ("state after Tasks 1-3") into
269
+ later dispatches — a real session's dispatch hit 42k chars of which 99%
270
+ was pasted history. A fresh subagent needs its task, the interfaces it
271
+ touches, and the global constraints. Nothing else.
272
+ - The dispatch carries the no-subagents contract (it is in the
273
+ implementer template): the implementer never dispatches subagents —
274
+ not helpers, and never a reviewer. Review arrives from you, after the
275
+ report. In real sessions, every reviewer a worker spawned duplicated
276
+ the task review the controller dispatched anyway — a full extra
277
+ review seat per task.
278
+ - If an earlier task parked a finding in the area this task touches, carry
279
+ a pointer to that ledger entry in the dispatch.
280
+ - Record the implementer's agent identity from the dispatch result —
281
+ fix-loop rounds 1-3 resume this agent.
282
+ - Never dispatch multiple implementation subagents in parallel (conflicts).
283
+
284
+ Template: [implementer-prompt.md](implementer-prompt.md)
285
+
286
+ ### 2. Handle the report
287
+
288
+ Implementer subagents report one of four statuses. Handle each appropriately:
289
+
290
+ **DONE:** Generate the review package (`scripts/review-package PLAN_FILE BASE HEAD`, from this skill's directory — it prints the unique file path it wrote; BASE is the commit you recorded before dispatching the implementer — never `HEAD~1`, which silently drops all but the last commit of a multi-commit task), then dispatch the task reviewer with the printed path.
291
+
292
+ **DONE_WITH_CONCERNS:** The implementer completed the work but flagged doubts. Read the concerns before proceeding. If the concerns are about correctness or scope, address them before review. If they're observations (e.g., "this file is getting large"), note them and proceed to review.
293
+
294
+ **NEEDS_CONTEXT:** The implementer needs information that wasn't provided. Provide the missing context and re-dispatch.
295
+
296
+ **BLOCKED:** The implementer cannot complete the task. Assess the blocker:
297
+ 1. If it's a context problem, provide more context and re-dispatch with the same model
298
+ 2. If the task requires more reasoning, re-dispatch with a more capable model
299
+ 3. If the task is too large, break it into smaller pieces
300
+ 4. If the plan itself is wrong, rule on the correction, ledger it, and re-dispatch with the ruling carried in the dispatch
301
+
302
+ **Never** ignore an escalation or force the same model to retry without changes. If the implementer said it's stuck, something needs to change.
303
+
304
+ If the implementer asks questions — before starting or mid-task — answer
305
+ clearly and completely, provide additional context if needed, and don't
306
+ rush it into implementation.
307
+
308
+ ### 3. Review the task
309
+
310
+ Per-task reviews are task-scoped gates. The broad review happens once, at the
311
+ final whole-branch review. Never skip the task review, and never accept a
312
+ report missing either verdict — spec compliance AND task quality are both
313
+ required. Implementer self-review never replaces the task review; both are
314
+ needed.
315
+
316
+ - Hand the reviewer its diff as a file: run this skill's
317
+ `scripts/review-package PLAN_FILE BASE HEAD` and pass the reviewer the file path
318
+ it prints (or, without bash: `git log --oneline`, `git diff --stat`,
319
+ and `git diff -U10` for the range, redirected to one uniquely named
320
+ file). The output never enters your own context, and the reviewer sees
321
+ the commit list, stat summary, and full diff with context in one Read
322
+ call. Use the BASE you recorded before dispatching the implementer —
323
+ never `HEAD~1`, which silently truncates multi-commit tasks. Never
324
+ dispatch a task reviewer without a diff file.
325
+ - **Reviewer inputs:** the task reviewer gets three paths — the same brief
326
+ file, the report file, and the review package — plus the global
327
+ constraints that bind the task.
328
+ - The global-constraints block you hand the reviewer is its attention
329
+ lens. Copy the binding requirements verbatim from the plan's Global
330
+ Constraints section or the spec: exact values, exact formats, and the
331
+ stated relationships between components ("same layout as X", "matches
332
+ Y"). The reviewer's template already carries the process rules (YAGNI,
333
+ test hygiene, review method) — the constraints block is for what THIS
334
+ project's spec demands.
335
+ - Do not add open-ended directives like "check all uses" or "run race tests
336
+ if useful" without a concrete, task-specific reason
337
+ - Do not ask a reviewer to re-run tests the implementer already ran on the
338
+ same code — the implementer's report carries the test evidence
339
+ - Do not pre-judge findings for the reviewer — never instruct a reviewer to
340
+ ignore or not flag a specific issue. If you believe a finding would be a
341
+ false positive, let the reviewer raise it and adjudicate it in the review
342
+ loop. If the prompt you are writing contains "do not flag," "don't treat X
343
+ as a defect," "at most Minor," or "the plan chose" — stop: you are
344
+ pre-judging, usually to spare yourself a review loop.
345
+ The task reviewer may report "⚠️ Cannot verify from diff" items — requirements
346
+ that live in unchanged code or span tasks. These do not block the rest of the
347
+ review, but you must resolve each one yourself before marking the task
348
+ complete: you hold the plan and cross-task context the reviewer
349
+ lacks. If you confirm an item is a real gap, treat it as a failed spec
350
+ review — it enters the fix loop with the other findings.
351
+
352
+ Template: [task-reviewer-prompt.md](task-reviewer-prompt.md)
353
+
354
+ ### 4. The fix loop
355
+
356
+ The loop triggers when the review reports spec ❌, any Critical or Important
357
+ finding, or a ⚠️ item you confirmed as a real gap.
358
+
359
+ Before the loop starts, two routes leave it immediately:
360
+
361
+ - Record Minor findings in the progress ledger as you go
362
+ (`Task <N>: minor (deferred): <one-liner>`), and point the final
363
+ whole-branch review at that list so it can triage which must be fixed
364
+ before merge. A roll-up nobody reads is a silent discard. Minor findings
365
+ never enter the loop.
366
+ - A finding labeled plan-mandated — or any finding that conflicts with
367
+ what the plan's text requires — is yours to rule on: weigh the finding
368
+ against the plan text, decide with the spec as the binding authority, and
369
+ ledger the ruling before you act on it. Do not dismiss the finding because
370
+ the plan mandates it, and do not dispatch a fix that contradicts the plan
371
+ without a recorded ruling.
372
+ Everything else enters the loop. A fix round is one fix dispatch plus one
373
+ scoped re-review. Five rounds maximum per task:
374
+
375
+ **Rounds 1-3 — resume the original implementer.** Send it the open findings
376
+ verbatim. Its context is intact: it knows the task, the code, and its own
377
+ choices. If your harness cannot send another message to a live subagent,
378
+ dispatch a fresh implementer carrying the brief path, the report-file path,
379
+ and the findings — the report file is the persistent memory either way.
380
+
381
+ **Rounds 4-5 — dispatch a fresh implementer on a more capable model** (per
382
+ Model Selection), with the brief path, the report-file path, the open
383
+ findings, and this framing: "A prior implementer attempted this task
384
+ [N] times; you own it now. Read the report file for what was tried." A loop
385
+ that survives three resumes usually means the implementer cannot see its
386
+ own problem — fresh eyes and a capability bump in one move.
387
+
388
+ **Every round, either way:** the implementer fixes, re-runs the tests
389
+ covering the amended code, appends its fix report to the same report file,
390
+ and returns the short contract. Before re-dispatching the reviewer, confirm
391
+ the fix report contains the covering tests, the command run, and the
392
+ output; dispatch the re-review once all three are present. Name the
393
+ covering test files in the fix message — a one-line fix does not need the
394
+ whole suite.
395
+
396
+ **The re-review is scoped.** Run `scripts/review-package PLAN_FILE FIX_BASE HEAD`
397
+ where FIX_BASE is the head the previous review saw, and dispatch
398
+ [re-review-prompt.md](re-review-prompt.md) with the findings list, the
399
+ brief, the report file, and the printed diff path. The re-reviewer verdicts
400
+ each finding ADDRESSED or NOT ADDRESSED and flags new breakage in the fix
401
+ diff only. New Critical/Important breakage in the fix diff joins the open
402
+ findings list. Out-of-scope observations go to the ledger as deferred
403
+ minors — they never extend the loop.
404
+
405
+ **After each round,** append to the ledger:
406
+ `Task <N>: fix round <R>/5 (<X> addressed, <Y> open — <finding one-liners>; commits <a7>..<b7>)`
407
+
408
+ Never fix findings yourself in the controller session — your context stays
409
+ clean for coordination, and controller fixes skip review.
410
+
411
+ **The breaker.** When round 5's re-review still leaves findings open, stop
412
+ dispatching. Adjudicate each open finding yourself — you hold the plan and
413
+ the cross-task context the reviewer lacks:
414
+
415
+ - **The reviewer is wrong, or the point is contestable:** park it —
416
+ `Task <N>: parked — <finding> — Ruling: <why the code stands>`. The final
417
+ review sees both sides.
418
+ - **Real, but nothing downstream builds on it:** park it the same way, with
419
+ a ruling that says it's real and deferred.
420
+ - **Real and load-bearing** — a later task builds on it, or it reveals a
421
+ plan defect: rule on the smallest change that unblocks the dependent work,
422
+ ledger it as `Task <N>: Ruling: <finding> — <what you decided and why>`,
423
+ and carry it into the next task's dispatch. Parking a structural failure
424
+ silently lets every dependent task build on it. Stop only when the defect
425
+ leaves every path forward a guess.
426
+
427
+ Adjudicate only at the cap. Adjudicating earlier to end a loop is
428
+ pre-judging with a different name. Every adjudication is a ledger entry —
429
+ a silent discard is forbidden.
430
+
431
+ ### 5. Complete the task
432
+
433
+ When the review comes back clean — or every open finding is parked with a
434
+ ruling at the cap — append the completion line to the ledger in the same
435
+ message as your other bookkeeping:
436
+
437
+ - `Task <N>: complete (commits <base7>..<head7>, review clean)`
438
+ - `Task <N>: complete (commits <base7>..<head7>, <K> parked)` after a
439
+ tripped breaker
440
+
441
+ Then mark the todo complete and move on. Never move to the next task while
442
+ the review has open Critical/Important issues that are neither fixed nor
443
+ parked-with-ruling at the cap.
444
+
445
+ ## Final Review
446
+
447
+ The final whole-branch review gets a package too: run
448
+ `scripts/review-package PLAN_FILE MERGE_BASE HEAD` (MERGE_BASE = the commit the
449
+ branch started from, e.g. `git merge-base main HEAD`) and include the
450
+ printed path in the final review dispatch, so the final reviewer reads
451
+ one file instead of re-deriving the branch diff with git commands. Dispatch
452
+ on the most capable available model (see Model Selection), using
453
+ superpowers:requesting-code-review's
454
+ [code-reviewer.md](../requesting-code-review/code-reviewer.md). Point it at
455
+ the ledger's deferred-minor and parked lines so it can triage which must be
456
+ fixed before merge.
457
+
458
+ If the final whole-branch review returns findings, dispatch ONE fix subagent
459
+ with the complete findings list — not one fixer per finding.
460
+ Per-finding fixers each rebuild context and re-run suites; a real
461
+ session's final-review fix wave cost more than all its tasks combined.
462
+ Then run exactly one scoped re-review of the fix wave
463
+ (`scripts/review-package PLAN_FILE FIX_BASE HEAD` over the fix range,
464
+ [re-review-prompt.md](re-review-prompt.md)).
465
+ Adjudicate any residual findings as in the task loop's breaker: park with
466
+ rulings, or rule on the load-bearing ones and ledger what you decided. Only
467
+ the four classes above stop you here. There is no second fix wave —
468
+ residual load-bearing findings surface to your human partner when
469
+ finishing-a-development-branch presents the options.
470
+
471
+ ## Finish
472
+
473
+ Before you delete anything, collect every ledger line containing `Ruling:` —
474
+ preflight rulings, parked findings, breaker adjudications, all of them — into
475
+ your final message under "Rulings I made", in the order you made them, each
476
+ with what it costs if wrong. The list is exhaustive: if the ledger holds a
477
+ ruling, the list holds it. That list is the only place the decisions you
478
+ took on your human partner's behalf reach them — they read it and rework
479
+ whatever you got wrong. A ruling that dies with the workspace was a decision
480
+ made in secret.
481
+
482
+ When the final whole-branch review is clean and its fixes are merged,
483
+ delete this plan's workspace (`rm -rf <workspace>`) — the git history is
484
+ the record now. Sibling directories belong to other plans; leave them
485
+ alone.
486
+
487
+ Use superpowers:finishing-a-development-branch.
488
+
489
+ ## Common Rationalizations
490
+
491
+ | Excuse | Reality |
492
+ |--------|---------|
493
+ | "Close enough on spec compliance" | Reviewer found spec gaps = not done. Fix or hit the cap and adjudicate — those are the only exits. |
494
+ | "I'll fix it myself, dispatching is overhead" | Controller fixes pollute your context and skip review. Resume the implementer. |
495
+ | "One more round will converge" | Past the cap, rounds don't converge — the failure is structural. Adjudicate and route. |
496
+ | "The reviewer will just find something new anyway" | Scoped re-reviews verify fixes; they cannot wander. New findings on untouched code go to the ledger, not the loop. |
497
+ | "This finding is obviously wrong, I'll drop it" | You adjudicate only at the cap, and every ruling is a ledger entry. Silent discards are forbidden. |
498
+ | "The fix was small, skip the re-review" | Unreviewed fixes are how regressions land. Every round ends with a scoped re-review. |
499
+ | "Reviews slow the loop down" | The loop without reviews is just unverified churn. Reviews are the loop's brakes and steering. |
500
+ | "Ledger bookkeeping is overhead" | The ledger is what survives compaction. Controllers without one have re-dispatched entire completed task sequences. |
501
+ | "The implementer spawned its own reviewer — free extra assurance" | It's a duplicate seat reviewing the same diff; the task review is the gate. A worker-spawned reviewer is a defect to flag, not rigor. |
502
+
503
+ ## Example Workflow
504
+
505
+ ```
506
+ You: I'm using Subagent-Driven Development to execute this plan.
507
+
508
+ [Setup: worktree verified]
509
+ [Read plan file once: docs/superpowers/plans/feature-plan.md]
510
+ [Resolve workspace: scripts/sdd-workspace docs/superpowers/plans/feature-plan.md — no ledger inside, fresh start]
511
+ [Create todos for all tasks]
512
+
513
+ Task 1: Hook installation script
514
+
515
+ [Run task-brief for Task 1; dispatch implementer with brief + report paths + context]
516
+
517
+ Implementer: "Before I begin - should the hook be installed at user or system level?"
518
+
519
+ You: "User level (~/.config/superpowers/hooks/)"
520
+
521
+ Implementer: [Later]
522
+ - Implemented install-hook command
523
+ - Added tests, 5/5 passing
524
+ - Self-review: Found I missed --force flag, added it
525
+ - Committed
526
+
527
+ [Run review-package PLAN_FILE BASE HEAD; dispatch task reviewer with the printed path]
528
+ Task reviewer: Spec ✅ - all requirements met, nothing extra.
529
+ Strengths: Good test coverage, clean. Issues: None. Task quality: Approved.
530
+
531
+ [Ledger: Task 1: complete (commits a1b2c3d..d4e5f6a, review clean)]
532
+
533
+ Task 2: Recovery modes
534
+
535
+ [Run task-brief for Task 2; dispatch implementer with brief + report paths + context]
536
+
537
+ Implementer: [No questions]
538
+ - Added verify/repair modes
539
+ - 8/8 tests passing
540
+ - Committed
541
+
542
+ [Run review-package PLAN_FILE BASE HEAD; dispatch task reviewer with the printed path]
543
+ Task reviewer: Spec ❌:
544
+ - Missing: Progress reporting (spec says "report every 100 items")
545
+ Issues (Important): Magic number (100)
546
+
547
+ [Fix round 1: resume the implementer with both findings]
548
+ Implementer: Added progress reporting, extracted PROGRESS_INTERVAL constant.
549
+ Re-ran test/recovery.test.js — 10/10 passing. Fix report appended.
550
+
551
+ [Run review-package PLAN_FILE FIX_BASE HEAD; dispatch scoped re-review]
552
+ Re-reviewer: Missing progress reporting — ADDRESSED (src/recovery.js:41).
553
+ Magic number — ADDRESSED (src/recovery.js:7). New breakage: none.
554
+ Verdict: all findings addressed.
555
+
556
+ [Ledger: Task 2: fix round 1/5 (2 addressed, 0 open; commits d4e5f6a..b7c8d9e)]
557
+ [Ledger: Task 2: complete (commits d4e5f6a..b7c8d9e, review clean)]
558
+
559
+ ...
560
+
561
+ [After all tasks]
562
+ [Run review-package PLAN_FILE MERGE_BASE HEAD; dispatch final code-reviewer, most capable model]
563
+ Final reviewer: All requirements met. Deferred minors triaged: none block merge.
564
+
565
+ [Delete this plan's workspace — the record now lives in git]
566
+
567
+ Done! Using superpowers:finishing-a-development-branch.
568
+ ```