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 the correct order with dependency and checklist validation. ## Core Features & Use Cases - Task Plan Execution: Parses tasks.md for phases, dependencies, and parallel [P] markers, then executes tasks in order following a TDD approach. - Checklist Gating: Scans FEATURE_DIR/checklists/ before implementation, reports completion status, and halts for confirmation if items are incomplete. - Project Setup Verification: Detects the tech stack from plan.md and creates or verifies ignore files (.gitignore, .dockerignore, .eslintignore, and more) with correct patterns. - Extension Hooks: Supports optional and mandatory before/after implementation hooks declared in .specify/extensions.yml. - Use Case: After running /speckit.tasks to generate a task breakdown, invoke this Skill to implement the entire feature, marking each completed task as [X] in tasks.md. ## Quick Start Run the speckit-implement skill to execute all tasks in tasks.md for the current feature.