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.
**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.
**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: BLOCKED status you cannot resolve, ambiguity that genuinely prevents progress, or all tasks complete.
- Read the plan once, note its context and Global Constraints
- Create a todo per task
- Before dispatching Task 1, scan the plan for conflicts: tasks that contradict each other, anything the plan mandates that the review would flag as a defect
- Present conflicts to the user as one batched question before execution begins
- Task brief: extract the task's full text, make it the single source of requirements
- Compose dispatch with: (1) one line on where this task fits, (2) the brief path, (3) interfaces from earlier tasks, (4) resolution of any ambiguity, (5) report-file path
- Never make a subagent read the whole plan file
- Never dispatch multiple implementation subagents in parallel (conflicts)
- DONE_WITH_CONCERNS: Read concerns before proceeding. If about correctness/scope, address before review. If observations, note and proceed.
- NEEDS_CONTEXT: Provide missing context and re-dispatch
- BLOCKED: Assess — context problem (re-dispatch), needs more reasoning (more capable model), too large (break into pieces), plan wrong (escalate to user)
After all tasks: dispatch final whole-branch review on the most capable model. If findings: ONE fix subagent with complete findings list, then ONE scoped re-review. Adjudicate residuals. No second fix wave.