speckit-implement

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

Updated May 5, 2026
One-click install
npx skills add https://github.com/nikegeorgian-stack/otgruzka-tovara --skill speckit-implement-nikegeorgian-stack
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/nikegeorgian-stack/otgruzka-tovara/tree/main/.cursor/skills/speckit-implement
Command: npx skills add https://github.com/nikegeorgian-stack/otgruzka-tovara --skill speckit-implement-nikegeorgian-stack

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It removes the manual effort of translating a spec-kit task breakdown into working code by orchestrating the phased execution of every task in tasks.md with dependency awareness and progress tracking. ## Core Features & Use Cases - Phased Task Execution: Parses tasks.md into Setup, Tests, Core, Integration, and Polish phases, running sequential tasks in order and parallel [P] tasks together. - Checklist Gating: Scans feature checklists before implementation and halts for user confirmation if any items are incomplete. - 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 mandatory and optional before_implement and after_implement hooks declared in .specify/extensions.yml. - Use Case: After generating a specification and task list with spec-kit, invoke this Skill to implement the entire feature, marking each completed task as [X] in tasks.md and reporting a completion summary. ## Quick Start Ask the agent to run the speckit-implement skill to execute all tasks in the current feature's tasks.md.

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 tasks.md implementation plan?▼

Run the speckit-implement command from the repository root. It loads tasks.md and plan.md, executes tasks phase by phase respecting dependencies and [P] parallel markers, and marks each completed task as [X].

What happens if checklists are incomplete before implementation?▼

The skill scans all files in the feature's checklists directory and builds a status table. If any checklist has incomplete items, it stops and asks whether to proceed; answering yes continues, while no halts execution.

Does speckit-implement require a specific project structure?▼

Yes, it requires a spec-kit project with a .specify directory and a feature folder containing tasks.md and plan.md. Optional files like data-model.md, contracts/, research.md, and quickstart.md are read when present.

How are extension hooks handled during implementation?▼

Hooks declared under hooks.before_implement and hooks.after_implement in .specify/extensions.yml are executed. Mandatory hooks run automatically and block progress until finished, while optional hooks are only suggested to the user.

What should I do if tasks.md is missing or incomplete?▼

The skill assumes a complete task breakdown exists. If tasks are missing or incomplete, run /speckit-tasks first to regenerate the task list before attempting implementation.