speckit-implement

Executes implementation plans by processing tasks defined in tasks.md.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/KarenTenorio963/curso-mcp-karentenorio --skill speckit-implement-karentenorio963
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/KarenTenorio963/curso-mcp-karentenorio/tree/main/entregas/s4/mi-proyecto-speckit/.agents/skills/speckit-implement
Command: npx skills add https://github.com/KarenTenorio963/curso-mcp-karentenorio --skill speckit-implement-karentenorio963

SYSTEM DOCUMENTATION & REQUIREMENTS

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.

Frequently Asked Questions about speckit-implement

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute a tasks.md implementation plan with spec-kit?▼

Invoke the speckit-implement skill from the repository root. It runs the check-prerequisites script, loads tasks.md and plan.md, verifies checklists, then executes tasks phase-by-phase, marking each completed task as [X] in tasks.md.

What files does spec-kit implementation require before running?▼

The skill requires a .specify/ directory with tasks.md containing the task breakdown and plan.md describing the tech stack and architecture. Optional files include data-model.md, contracts/, research.md, quickstart.md, and checklists/.

Does speckit-implement support parallel task execution?▼

Yes, tasks marked with [P] in tasks.md can run in parallel, while tasks affecting the same files run sequentially. If a parallel task fails, execution continues with successful tasks and reports the failures.

What happens if checklists have unchecked items before implementation?▼

The skill displays a status table of all checklists, stops execution, and asks whether to proceed anyway. It only continues after the user explicitly confirms with yes, proceed, or continue.

Why does speckit-implement fail to start in my project?▼

Failure usually occurs when tasks.md is missing or incomplete, or the .specify/ directory structure is absent. The skill suggests running /speckit-tasks first to regenerate the task list before implementation.