speckit-workflow

Guides feature development through the eight-step spec-kit workflow from specification to audited implementation.

Updated Jun 27, 2026
One-click install
npx skills add https://github.com/marionoratoRN/custom-speckit-flow --skill speckit-workflow-marionoratorn
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-workflow
Source: https://github.com/marionoratoRN/custom-speckit-flow/tree/main/.claude/skills/speckit-workflow
Command: npx skills add https://github.com/marionoratoRN/custom-speckit-flow --skill speckit-workflow-marionoratorn

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It prevents unstructured feature implementation by enforcing a specification-first workflow, ensuring no production code is written without an approved spec, plan, and task list. ## Core Features & Use Cases - Ordered 8-Step Workflow: Coordinates the spec-kit commands from /speckit-constitution through /speckit-implement plus a final quality audit. - Implementation Gating: Blocks code generation when spec.md, plan.md, or tasks.md are missing and redirects the user to /speckit-specify. - Quality Audit: Defines a post-implementation checklist covering file size, test coverage, placeholders, duplication, and secrets. - Use Case: When a user says "implement the login feature", the Skill checks specs/ for existing artifacts and either proceeds with /speckit-implement or asks to launch /speckit-specify first. ## Quick Start Ask the assistant to implement a new feature and it will verify the spec, plan, and tasks exist before running the spec-kit implementation step.

Frequently Asked Questions about speckit-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement a feature with the spec-kit workflow?▼

Run the commands in order: /speckit-specify, /speckit-clarify, /speckit-plan, /speckit-tasks, /speckit-analyze, then /speckit-implement. Only /speckit-implement is allowed to create or modify production source files.

What happens if I ask to implement a feature without a spec?▼

The workflow blocks implementation and asks whether to launch /speckit-specify first. It requires a feature description, user goal, and constraints before any code is generated.

Can I skip workflow steps for small changes?▼

Small, focused fixes and minor changes may proceed directly without the full workflow. Medium and large features must go through all phases, and the boundary is defined in the project's CLAUDE.md.

What files must exist before running /speckit-implement?▼

The feature folder specs/NNN-slug/ must contain spec.md, plan.md, and tasks.md with at least one pending task. If any artifact is missing, the workflow asks you to complete the earlier steps first.

What does the quality audit check after implementation?▼

The audit verifies no file exceeds 500 lines, coverage is at least 80 percent with a green suite, no placeholders or duplicated logic exist, and no secrets are present. Issues must be fixed before the cycle is declared closed.