speckit-implement

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

Updated Aug 19, 2026
One-click install
npx skills add https://github.com/Base-Analitica/mouse-hub --skill speckit-implement-base-analitica
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/Base-Analitica/mouse-hub/tree/main/.jcode/skills/speckit-implement
Command: npx skills add https://github.com/Base-Analitica/mouse-hub --skill speckit-implement-base-analitica

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It turns a written implementation plan into actual code by systematically executing every task in tasks.md, so developers do not have to manually track phases, dependencies, and completion status during feature builds. ## 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 and asks for confirmation before proceeding when items are unchecked. - Project Setup Verification: Detects the tech stack and creates or verifies ignore files such as .gitignore and .dockerignore. - Extension Hooks: Runs optional and mandatory before/after hooks declared in .specify/extensions.yml. - Use Case: After generating a spec, plan, and task breakdown with spec-kit, run this Skill to implement the entire feature, marking each completed task as [X] in tasks.md. ## Quick Start Ask the agent to 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 automatically?▼

Run the speckit-implement skill from the repository root of a spec-kit project. It reads tasks.md, plan.md, and related artifacts, then executes tasks phase by phase, marking each completed task as [X].

What is required before running spec-kit implementation?▼

The project needs a .specify directory with a complete tasks.md generated by the speckit-tasks command, plus plan.md and optionally data-model.md, contracts, and research.md. If tasks are missing, run speckit-tasks first.

Does speckit-implement support parallel task execution?▼

Yes, tasks marked with [P] in tasks.md can run in parallel, while tasks touching the same files run sequentially. Failed parallel tasks are reported without halting successful ones.

What happens if checklists have unchecked items before implementation?▼

The skill scans all checklist files, displays a status table, and stops to ask whether to proceed. Implementation only continues after explicit user confirmation.

Why does implementation stop when a task fails?▼

Non-parallel task failures halt execution to prevent building on broken state. The skill reports the error with context and suggests next steps before any further tasks run.