What problem does it solve? This Skill automates the execution phase of spec-driven development by reading a project's tasks.md and plan.md files and systematically implementing every task in the correct order, removing the manual effort of translating a specification into working code. ## Core Features & Use Cases - Task Plan Execution: Parses tasks.md to extract phases, dependencies, and parallel markers, then executes tasks phase-by-phase following TDD ordering. - 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 such as .gitignore, .dockerignore, and .eslintignore. - Extension Hooks: Runs optional and mandatory before/after hooks defined in .specify/extensions.yml. - Use Case: After running /speckit-tasks to generate a task breakdown for a new feature, invoke this Skill to implement all tasks, mark them complete in tasks.md, and receive a completion report. ## Quick Start Run the speckit-implement skill to execute all tasks in tasks.md for the current feature.