What problem does it solve? Turning a written task breakdown into working code is error-prone when done ad hoc: tasks get skipped, dependencies are ignored, and progress is lost. This Skill executes the spec-kit implementation phase deterministically, following tasks.md phase by phase. ## Core Features & Use Cases - Task Plan Execution: Parses tasks.md for phases, dependencies, and parallel markers, then executes tasks in the correct order with TDD discipline. - Checklist Gating: Scans checklists in the feature directory and asks for confirmation before proceeding when items are unchecked. - Project Setup Verification: Detects the tech stack and creates or verifies ignore files (.gitignore, .dockerignore, .eslintignore, and others) with appropriate patterns. - Extension Hooks: Runs mandatory and optional pre/post-implementation hooks declared in .specify/extensions.yml. - Use Case: After running /speckit-tasks to generate a task list for a new feature, invoke this Skill to implement all tasks, mark them complete in tasks.md, and receive a completion report. ## Quick Start Ask the assistant to run the speckit-implement skill to execute all tasks in the current feature's tasks.md.