What problem does it solve? Executing a multi-task implementation plan in one long session pollutes context, loses progress after compaction, and skips quality gates. This Skill orchestrates plan execution by delegating each task to a fresh subagent with isolated context, enforcing per-task spec and quality reviews, and tracking progress in a durable ledger. ## Core Features & Use Cases - Fresh subagent per task: Dispatch an implementer subagent with a task brief file, curated context, and an explicit model choice, then review its diff with a separate task reviewer subagent. - File-based handoffs: Use bundled scripts to 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: Record completed tasks and commit ranges in a git-ignored ledger so work resumes correctly after context compaction. - Use Case: Given a written implementation plan with eight independent tasks, run the whole plan in one session: each task is implemented, tested, committed, reviewed for spec compliance and code quality, fixed if needed, and finally validated by a whole-branch review before merge. ## Quick Start Use subagent-driven development to execute the implementation plan in docs/plans/feature-plan.md task by task with reviews after each task.