speckit-implement

Executes implementation plans by processing tasks defined in spec-kit tasks.md files.

Updated Jul 16, 2026
One-click install
npx skills add https://github.com/Argoss84/Kando-Caracter-sheet-generator --skill speckit-implement-argoss84
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/Argoss84/Kando-Caracter-sheet-generator/tree/main/.cursor/skills/speckit-implement
Command: npx skills add https://github.com/Argoss84/Kando-Caracter-sheet-generator --skill speckit-implement-argoss84

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It removes the manual coordination burden of turning a spec-kit task breakdown into working code by orchestrating phased, dependency-aware execution of every task in tasks.md. ## Core Features & Use Cases - Phased Task Execution: Parses tasks.md into Setup, Tests, Core, Integration, and Polish phases, respecting sequential dependencies and parallel [P] markers. - 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). - Extension Hooks: Runs mandatory and optional before/after implementation hooks declared in .specify/extensions.yml. - Use Case: After generating a feature plan with spec-kit, run this Skill to implement all tasks in order, mark completed tasks as [X] in tasks.md, and receive a completion report validated against the specification. ## Quick Start Run the speckit-implement skill to execute all tasks in the current feature's tasks.md following the implementation plan.

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 spec-kit implementation plan automatically?▼

Run the speckit-implement skill from the repository root. It reads tasks.md and plan.md, executes tasks phase by phase respecting dependencies and parallel markers, marks completed tasks as [X], and reports a completion summary.

What project structure does spec-kit implementation require?▼

The repository must contain a .specify directory with scripts, plus a feature directory holding tasks.md and plan.md. Optional files include data-model.md, contracts/, research.md, quickstart.md, and checklists/.

What happens if checklists have unchecked items before implementation?▼

The skill scans all checklist files, displays a status table with checked and unchecked counts, then stops and asks whether to proceed. Implementation only continues after explicit user confirmation.

Can I run speckit-implement without a tasks.md file?▼

No. The skill assumes a complete task breakdown exists in tasks.md. If tasks are missing or incomplete, it suggests running the speckit-tasks command first to regenerate the task list.

How do extension hooks work during implementation?▼

If .specify/extensions.yml defines hooks under before_implement or after_implement, the skill executes mandatory hooks automatically and presents optional hooks for manual invocation, skipping disabled or condition-gated entries.