What problem does it solve? Turning an approved plan into merged code involves many error-prone steps: creating branches, committing plan files, running TDD per task, reviewing changes, verifying with typecheck/lint/test, and opening a PR. This Skill orchestrates that entire implementation workflow so nothing is skipped. ## Core Features & Use Cases - Structured Implementation Flow: Creates a working branch with naming conventions (feature/, fix/, refactor/, chore/), commits the plan file to docs/plan/, and optionally writes ADRs decided during planning. - Task-Level TDD Execution: Runs each planned task through a TDD cycle in dependency order, handles Spike tasks as time-boxed investigation, and confirms with the user after each task. - Review and Verification Pipeline: Runs /review and /simplify passes, then validates with typecheck, lint, and tests before committing, pushing, and creating a PR with the plan embedded in the description. - Use Case: After approving a plan in Plan mode for a new user-auth feature, invoke this Skill to create the feature/user-auth branch, implement each task with TDD, review the diff, and open a PR containing the full plan summary. ## Quick Start Ask the AI to execute the approved implementation plan using the implementation workflow, starting with branch creation and ending with a pull request.