speckit-implement

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

Updated Apr 18, 2026
One-click install
npx skills add https://github.com/PanyaPrimal/selfHandlerApp --skill speckit-implement-panyaprimal
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/PanyaPrimal/selfHandlerApp/tree/main/.agents/skills/speckit-implement
Command: npx skills add https://github.com/PanyaPrimal/selfHandlerApp --skill speckit-implement-panyaprimal

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written implementation plan into working code requires manually tracking dozens of tasks, dependencies, and validation steps. This Skill automates that execution by reading tasks.md and plan.md from a spec-kit project and carrying out each phase in the correct order. ## Core Features & Use Cases - Checklist gating: Scans all checklists in the feature directory, reports completion status, and asks for confirmation before proceeding when items are incomplete. - Phased task execution: Parses tasks.md for phases, dependencies, and parallel [P] markers, then executes setup, tests, core, integration, and polish work in order while marking completed tasks as [X]. - Project setup verification: Detects the technology 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 breakdown for a new feature, invoke this Skill to implement every task, run the tests first per TDD, and receive a completion report. ## 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 tasks.md implementation plan automatically?

Run the speckit-implement skill in a spec-kit project. It reads tasks.md and plan.md, verifies checklists, then executes each phase in dependency order, marking completed tasks as [X] and reporting progress after each one.

What project structure does spec-kit implementation require?

It requires a .specify directory with the check-prerequisites script and a feature directory containing tasks.md and plan.md. Optional files like data-model.md, contracts/, research.md, and quickstart.md are loaded when present.

What happens if checklists are incomplete before implementation?

The skill scans every checklist file, counts completed and incomplete items, and displays a status table. If any items are incomplete, it stops and asks whether to proceed before continuing with implementation.

Does speckit-implement support parallel task execution?

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

Why did implementation stop after a task failure?

Execution halts when any non-parallel task fails, since later tasks depend on it. The skill reports the error with context and suggests next steps, such as fixing the failure or regenerating tasks with speckit-tasks.