What problem does it solve? Turning a written specification and task breakdown into working code requires disciplined, phase-by-phase execution; this Skill automates that process by reading tasks.md and plan.md from a spec-kit project and executing every task in dependency order. ## Core Features & Use Cases - Task Plan Execution: Parses tasks.md for phases, dependencies, and parallel markers, then implements tasks sequentially or in parallel while marking completed items as [X]. - Checklist Gating: Scans checklists in the feature directory, reports pass/fail status, and asks for confirmation before proceeding when items are unchecked. - Project Setup Verification: Detects the tech stack from plan.md and creates or verifies ignore files (.gitignore, .dockerignore, .eslintignore, and others) with appropriate patterns. - Extension Hooks: Runs optional and mandatory before/after hooks declared in .specify/extensions.yml. - Use Case: After running /speckit-tasks to generate a task breakdown for a new feature, invoke this Skill to implement the entire feature—setup, tests, core code, integration, and polish—following TDD ordering. ## Quick Start Run the speckit-implement skill to execute all tasks in the current feature's tasks.md and report progress as each task completes.