speckit-implement

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

Updated Sep 9, 2026
One-click install
npx skills add https://github.com/alidotcom2000/RSSFeedReader --skill speckit-implement-alidotcom2000
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/alidotcom2000/RSSFeedReader/tree/main/.github/skills/speckit-implement
Command: npx skills add https://github.com/alidotcom2000/RSSFeedReader --skill speckit-implement-alidotcom2000

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, which is error-prone and hard to keep consistent across a spec-driven project. ## Core Features & Use Cases - Task Plan Execution: Parses tasks.md to extract phases, dependencies, and parallel markers, then executes tasks in the correct order following a TDD approach. - Checklist Gating: Scans checklist files in the feature directory, reports pass/fail status, and asks for confirmation before proceeding when items are unchecked. - Project Setup Verification: Detects the project's tech stack and creates or verifies ignore files such as .gitignore, .dockerignore, and .eslintignore. - Extension Hooks: Runs optional and mandatory before/after hooks registered in .specify/extensions.yml. - Use Case: After generating a specification, 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 parses tasks.md for phases, dependencies, and parallel markers, then executes tasks in order, marking each completed task as [X].

What is required before running spec-kit implementation?

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

Does speckit-implement support parallel task execution?

Yes, tasks marked with [P] in tasks.md can run in parallel, while sequential tasks run in order. Tasks affecting the same files are coordinated to run sequentially, and failed parallel tasks are reported without stopping successful ones.

What happens if checklists have unchecked items before implementation?

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.

Why does implementation fail at the prerequisites step?

The check-prerequisites.ps1 script must run successfully from the repo root and return FEATURE_DIR and available documents. Failure usually means the spec-kit project structure is missing or tasks.md does not exist for the feature.