What problem does it solve? Executing a multi-task implementation plan in a single AI session pollutes the context window, loses progress after compaction, and skips verification between tasks. This Skill coordinates plan execution by dispatching a fresh, isolated subagent per task and tracking durable progress on disk. ## Core Features & Use Cases - Per-task subagent dispatch: Each plan task runs in a fresh implementer subagent with a file-based task brief, explicit model selection, and a structured status contract (DONE, DONE_WITH_CONCERNS, BLOCKED, NEEDS_CONTEXT). - Durable progress ledger: A git-ignored per-plan workspace (.ai/sdd/<plan>/) stores briefs, reports, review packages, and a progress ledger so sessions resume correctly after compaction. - Final whole-branch review: After all tasks complete, a reviewer subagent audits the full commit range, with one fix wave and one scoped re-review. - Use Case: Given a 12-task implementation plan, the controller extracts each task brief with scripts/task-brief, dispatches implementers sequentially, records completions in the ledger, and finishes with a whole-branch code review before merge. ## Quick Start Use the subagent-driven-development skill to execute the implementation plan at .ai/plans/feature-plan.md task by task.