What problem does it solve? Executing a multi-task implementation plan in a single session often leads to context pollution, skipped reviews, and inconsistent quality. This Skill orchestrates plan execution by dispatching a fresh subagent for each task and enforcing a two-stage review (spec compliance, then code quality) after every task. ## Core Features & Use Cases - Fresh Subagent Per Task: Each task runs in an isolated subagent context with curated instructions, preventing context pollution and preserving the controller's context for coordination. - Two-Stage Review Gates: A spec compliance reviewer verifies the code matches requirements before a code quality reviewer assesses maintainability, with fix-and-re-review loops until approval. - Status Handling & Model Selection: Handles DONE, DONE_WITH_CONCERNS, NEEDS_CONTEXT, and BLOCKED statuses, and assigns cheaper models to mechanical tasks and capable models to design and review work. - Use Case: Given a written plan with five independent tasks, execute all of them continuously in the current session, with each task implemented, tested, spec-reviewed, and quality-reviewed before a final whole-implementation review. ## 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.