What problem does it solve? Executing a multi-task implementation plan in one session pollutes context, loses progress after compaction, and skips quality gates. This Skill coordinates a controller loop that dispatches isolated subagents per task with review checkpoints, so plans execute continuously without context contamination or lost state. ## Core Features & Use Cases - Per-task subagent dispatch: Each task gets a fresh implementer subagent with a file-based task brief, followed by a task reviewer subagent that returns spec-compliance and code-quality verdicts. - File-based handoffs: Bundled scripts extract task briefs and build review packages (commit list, stat, full diff) as files, keeping bulk artifacts out of the controller's context. - Durable progress ledger: A git-ignored ledger records completed tasks with commit ranges so work resumes correctly after compaction, plus a final whole-branch review before finishing the branch. - Use Case: Given a plan with eight independent tasks, the controller dispatches an implementer for Task 1, reviews its diff, fixes findings, marks the ledger, and repeats through Task 8 before a final whole-branch review. ## Quick Start Execute the implementation plan at docs/superpowers/plans/feature-plan.md using subagent-driven development, dispatching an implementer and reviewer per task.