speckit-implement

Execute spec-kit implementation plans with prerequisite validation and task orchestration.

Updated May 2, 2026
One-click install
npx skills add https://github.com/ayehiaa/my-travel-assistant --skill speckit-implement-ayehiaa
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: speckit-implement
Source: https://github.com/ayehiaa/my-travel-assistant/tree/main/.claude/skills/speckit-implement
Command: npx skills add https://github.com/ayehiaa/my-travel-assistant --skill speckit-implement-ayehiaa

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Speckit implementation planning is only useful if it can be executed safely and consistently, so this Skill helps you turn tasks and architecture docs into an ordered, validated implementation run with guardrails.

Core Features & Use Cases

  • Pre-implementation validation: Runs prerequisite checks and verifies checklist completion status to prevent skipping required work.
  • Context-driven implementation: Loads tasks.md and plan.md (and optionally architecture-related docs) to drive phase-by-phase execution.
  • Deterministic coordination with validation checkpoints: Executes tasks according to dependency and parallel markers, tracks completion, and stops on non-parallel failures to maintain correctness.
  • Extensibility via hooks: Detects optional and mandatory before/after implementation hooks from .specify/extensions.yml and prepares them for execution at the right times.

Quick Start

Run speckit-implement at the repository root to execute the full implementation plan from tasks.md, after validating prerequisites and checklists.

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

To execute a spec-kit implementation plan, run the tool at the repository root. It validates prerequisites, analyzes tasks.md and plan.md, and runs phase-by-phase work with dependency tracking and TDD-style checkpoints.

What is task orchestration with dependency and parallel markers in spec-kit?

Task orchestration in spec-kit coordinates ordered execution using dependency and parallel markers in tasks.md. It tracks completion and stops automatically on non-parallel failures to maintain implementation correctness.

Does spec-kit implementation support custom extension hooks?

Spec-kit implementation supports custom extension hooks. It detects optional and mandatory before and after implementation hooks defined in .specify/extensions.yml and prepares them for execution at the correct phases.

How do I prevent skipping required work during TDD workflow implementation?

To prevent skipping required work during TDD workflow implementation, the tool runs prerequisite scripts and verifies checklist completion status before executing any tasks, gating progress until all required validations pass.

What files do I need in my repository for spec-kit implementation to work?

You need .specify scripts, tasks.md, and plan.md in your repository for spec-kit implementation to work. Optionally, architecture-related docs can be loaded to provide additional context for phase-by-phase execution.

Why does my spec-kit implementation stop on task failures?

Spec-kit implementation stops on non-parallel task failures to maintain correctness. This deterministic coordination ensures that dependent tasks are not executed when prerequisite parallel tasks fail validation.