What problem does it solve? Executing a multi-task implementation plan in a single agent session leads to context pollution, skipped tests, and unchecked spec drift. This Skill orchestrates plan execution by dispatching a fresh subagent per task and enforcing three mandatory review gates so defects are caught before they compound across tasks. ## Core Features & Use Cases - Fresh subagent per task: Each plan task runs in an isolated delegate_task subagent with full task text and project context, preventing accumulated-state confusion. - Three-gate review pipeline: A TDD gate verifies RED-GREEN evidence in the git log, a spec reviewer checks compliance against the original task spec, and a quality reviewer approves code before the task is marked complete. - Failure recovery loops: Failed gates trigger re-dispatch of the implementer with stricter instructions rather than manual patching in the controller session. - Use Case: Given a 5-task authentication feature plan, the orchestrator dispatches implementer subagents task by task, rejects a combined test-plus-code commit at the TDD gate, forces a proper RED-GREEN redo, and finishes with a final integration review and full test suite run. ## Quick Start Execute the implementation plan in docs/plans/auth-feature.md using subagent-driven development with TDD, spec, and quality review gates for every task.