What problem does it solve? Executing a multi-task implementation plan in a single session causes context pollution, inconsistent quality, and missed spec requirements. This Skill orchestrates plan execution by delegating each task to a fresh subagent and enforcing systematic review between tasks. ## Core Features & Use Cases - Per-Task Subagent Dispatch: Reads the plan once, extracts all tasks into a todo list, and dispatches an implementer subagent per task with full context and TDD instructions via delegate_task. - Two-Stage Review: Runs a spec compliance reviewer first, then a code quality reviewer, looping fixes until both pass before marking a task complete. - Failure Recovery Playbook: Handles subagent timeouts, context compaction, nested background tasks, and partial dirty trees with bounded retry and fresh narrow transactions. - Use Case: Given a plan file like docs/plans/auth-feature.md with five tasks, the controller dispatches implementer and reviewer subagents per task, verifies tests and diffs itself, and finishes with a final integration review and commit. ## Quick Start Ask the agent to execute the implementation plan in docs/plans/feature-plan.md using subagent-driven development with per-task review.