What problem does it solve? Executing a multi-task implementation plan in a single session leads to 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: Parses an implementation plan once, then delegates each task via delegate_task with full context, so every subagent starts with a clean, focused context. - Two-Stage Review Loop: Runs a spec compliance review first, then a code quality review, with fix-and-re-review cycles until both pass. - Final Integration Review: After all tasks complete, dispatches a reviewer to verify cross-task consistency, run the full test suite, and confirm merge readiness. - Use Case: You have a 5-task authentication feature plan. The Skill dispatches an implementer for the User model, verifies spec compliance, reviews code quality, then repeats for password hashing, login endpoint, and the remaining tasks before a final integration check. ## Quick Start Execute the implementation plan in docs/plans/feature-plan.md using subagent-driven development with per-task delegation and two-stage review.