speckit-implement

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

Updated Aug 25, 2026
One-click install
npx skills add https://github.com/Omkar-code-mur/Job-Radar --skill speckit-implement-omkar-code-mur
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/Omkar-code-mur/Job-Radar/tree/main/Spec-it_job-Radar/.github/skills/speckit-implement
Command: npx skills add https://github.com/Omkar-code-mur/Job-Radar --skill speckit-implement-omkar-code-mur

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written implementation plan into working code requires tracking dozens of tasks, dependencies, and validation steps, which is error-prone when done manually. This Skill automates the execution phase of a spec-driven workflow by reading tasks.md and carrying out each task in the correct order. ## 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 checklist files before implementation and asks for confirmation when unchecked items remain. - Project Setup Verification: Detects the tech stack and creates or verifies ignore files such as .gitignore and .dockerignore. - Extension Hooks: Runs optional and mandatory pre- and post-implementation hooks defined in .specify/extensions.yml. - Use Case: After generating a specification and task breakdown with spec-kit, invoke 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 the current feature's tasks.md file.

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 that contains tasks.md. It parses task phases, dependencies, and parallel markers, then executes each task in order, marking completed items as [X] in the tasks file.

What is required before running spec-kit implementation?

The project needs a .specify directory with a complete tasks.md generated by the tasks command, plus plan.md for tech stack context. The skill runs check-prerequisites.ps1 to resolve feature paths and available documents before starting.

Does speckit-implement work without a tasks.md file?

No, tasks.md is required because it defines the complete task list and execution plan. If tasks are missing or incomplete, the skill suggests running the tasks generation command first to regenerate the breakdown.

What happens when checklists have unchecked items?

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

How are parallel tasks handled during implementation?

Tasks marked with [P] can run together, while sequential tasks execute in dependency order. If a non-parallel task fails, execution halts; for parallel tasks, successful ones continue and failures are reported.