What problem does it solve? Executing a multi-task implementation plan by hand is error-prone: tasks have dependencies, tests regress silently, and ad-hoc verification is unreliable. This Skill orchestrates the full execution of a structured plan under docs/plans/, dispatching work to subagents in dependency waves with enforced verification and integration-test gates. ## Core Features & Use Cases - Wave-based parallel execution: Parses the plan's dependency graph, groups tasks into waves, and dispatches coder subagents in parallel with model-tier resolution and a hard parallelism cap. - Independent acceptance verification: Routes every completed task through a fresh verifier subagent that checks planner-authored acceptance criteria and Verify recipes, with a strict parser as the sole verdict classifier. - Baseline-aware regression gating: Captures a frozen baseline of pre-existing test failures, reconciles each wave's integration run against it, and offers debugger-first remediation for new failures. - Use Case: You have a generated plan file with 8 tasks across 3 waves. Run this Skill to set up a git worktree, execute each wave with TDD-enabled coder agents, verify acceptance criteria, commit per wave, and pass a final integration gate before branch completion. ## Quick Start Ask the assistant to execute the plan at docs/plans/my-feature.md using the execute-plan skill and confirm the proposed execution settings.