Spec-driven development prompts for collaborating with AI agents to deliver reliable outcomes.
Want to install these prompts as slash commands? Use the slash-command-manager utility to install them in all of your local AI tools:
uvx --from git+https://github.com/liatrio-labs/slash-command-manager \
slash-man generate \
--github-repo liatrio-labs/spec-driven-workflow \
--github-branch main \
--github-path prompts/Want to use the prompts directly? Copy-paste them into your AI assistant:
-
Generate a spec: Copy
prompts/generate-spec.mdinto your AI chat → AI assesses scope, asks structured questions (numbered/lettered options), optionally reviews codebase, generates spec, iterates with you → Spec saved todocs/specs/01-spec-<feature-name>/01-spec-<feature-name>.md -
Generate task list: Point AI to spec (or let it auto-discover) and use
prompts/generate-task-list-from-spec.md→ AI analyzes spec, generates parent tasks for review, then after confirmation expands into sub-tasks with "Relevant Files" section → Saved todocs/specs/01-spec-<feature-name>/01-tasks-<feature-name>.md -
Manage tasks: Use
prompts/manage-tasks.mdwhile implementing → Choose checkpoint mode (Continuous/Task/Batch), execute with verification checklists, create proof artifacts before commits → Proofs saved todocs/specs/01-spec-<feature-name>/01-proofs/[NN]-task-[TT]-proofs.md -
Validate: Use
prompts/validate-spec-implementation.md(or let it auto-discover) → AI verifies proof artifacts, applies validation gates, produces coverage matrix and validation report -
SHIP IT 🚢💨
- Prompt-first workflow: Use curated prompts to go from idea → spec → task list → implementation-ready backlog.
- Predictable delivery: Every step emphasizes demoable slices, proof artifacts, and collaboration with junior developers in mind.
- No dependencies required: The prompts are plain Markdown files that work with any AI assistant.
Spec-Driven Development (SDD) keeps AI collaborators and human developers aligned around a shared source of truth. This repository provides a lightweight, prompt-centric workflow that turns an idea into a reviewed specification, an actionable plan, and a disciplined execution loop. By centering on markdown artifacts instead of tooling, the workflow travels with you—across projects, models, and collaboration environments.
- Clarify intent before delivery: The spec prompt enforces clarifying questions so requirements are explicit and junior-friendly.
- Ship demoable slices: Every stage pushes toward thin, end-to-end increments with clear demo criteria and proof artifacts.
- Make work transparent: Tasks live in versioned markdown files so stakeholders can review, comment, and adjust scope anytime.
- Progress one slice at a time: The management prompt enforces single-threaded execution to reduce churn and unfinished work-in-progress.
- Stay automation ready: While SDD works with plain Markdown, the prompts are structured for MCP, IDE agents, or other AI integrations.
All prompts live in prompts/ and are designed for use inside your preferred AI assistant.
generate-spec(prompts/generate-spec.md): Assess scope appropriateness, ask structured clarifying questions with numbered/lettered options, optionally review codebase context, then author a junior-friendly spec with demoable slices. Includes review and refinement cycle.generate-task-list-from-spec(prompts/generate-task-list-from-spec.md): Three-phase process: (1) internal analysis and planning, (2) generate parent tasks for review, (3) after user confirmation, expand into sub-tasks with relevant files section. Auto-discovers spec if not provided.manage-tasks(prompts/manage-tasks.md): Coordinate execution with checkpoint modes (Continuous/Task/Batch), update task status, create proof artifacts before commits, follow structured verification checklists, and record outcomes as you deliver value.validate-spec-implementation(prompts/validate-spec-implementation.md): Auto-discovers spec if needed, validates implementation against spec using proof artifacts, applies validation gates, produces coverage matrix, and generates comprehensive validation report.
Each prompt writes Markdown outputs into docs/specs/[NN]-spec-[feature-name]/ (where [NN] is a zero-padded 2-digit number: 01, 02, 03, etc.), giving you a lightweight backlog that is easy to review, share, and implement.
The workflow is driven by Markdown prompts that function as reusable playbooks for the AI agent. Reference the prompts directly, or install them as slash commands using the slash-command-manager, to keep the AI focused on structured outcomes.
📚 For comprehensive documentation, examples, and detailed guides, visit the SDD Playbook on GitHub Pages:
- SDD Playbook — Complete overview and workflow guide
- Comparison — How SDD compares to other structured development tools
- Developer Experience — Real-world usage examples and patterns
- Common Questions — FAQ and troubleshooting
- Video Overview — Visual walkthrough of the workflow
- Reference Materials — Additional resources and examples
Four prompts in /prompts define the full lifecycle. Use them sequentially to move from concept to completed work.
Stage 1 — Generate the Spec (prompts/generate-spec.md)
- Initial Scope Assessment: Evaluates if the feature is appropriately sized for this workflow (not too large or too small).
- Clarifying Questions: Asks structured questions with numbered/lettered options to gather detailed requirements, focusing on "what" and "why" rather than "how."
- Context Assessment (optional): Reviews existing codebase for relevant patterns, constraints, and repository standards.
- Spec Generation: Creates a comprehensive specification document with goals, user stories, demoable units, functional requirements, non-goals, design considerations, repository standards, technical considerations, success metrics, and open questions.
- Review and Refinement: Validates completeness and clarity with the user, iterating based on feedback.
- Produces
docs/specs/[NN]-spec-[feature-name]/[NN]-spec-[feature-name].md(where[NN]is a zero-padded 2-digit number: 01, 02, 03, etc.).
Stage 2 — Generate the Task List (prompts/generate-task-list-from-spec.md)
- Phase 1: Analysis and Planning (internal): Receives spec reference (or auto-discovers oldest spec without tasks), analyzes requirements, assesses current codebase state, defines demoable units, and evaluates scope.
- Phase 2: Parent Task Generation: Creates high-level parent tasks (typically 4-6) representing demoable units of work, each with demo criteria and proof artifacts. Saves to task file and presents for user review.
- Phase 3: Sub-Task Generation (after user confirmation): Identifies relevant files, breaks down each parent task into actionable sub-tasks, and updates the task file with complete structure including "Relevant Files" section.
- Outputs
docs/specs/[NN]-spec-[feature-name]/[NN]-tasks-[feature-name].mdready for implementation.
Stage 3 — Manage Tasks (prompts/manage-tasks.md)
- Checkpoint Modes: Presents three execution modes (Continuous/Task/Batch) for user preference, defaulting to Task Mode.
- Structured Execution: Follows a workflow with verification checkpoints:
- Sub-task execution: Mark in-progress → Implement → Test → Quality check → Mark complete
- Parent task completion: Run test suite → Quality gates → Create proof artifacts → Verify demo criteria → Git commit → Mark complete
- Proof Artifacts: Creates a single markdown file per parent task in
docs/specs/[NN]-spec-[feature-name]/[NN]-proofs/[NN]-task-[TT]-proofs.mdbefore the commit, containing CLI output, test results, screenshots, configuration examples, and demo validation. - Git Workflow: One commit per parent task with conventional commit format including task and spec references. Includes blocking verification before proceeding to next task.
- Enforces disciplined execution with built-in verification checklists and progress tracking.
Stage 4 — Validate Implementation (prompts/validate-spec-implementation.md)
- Auto-Discovery: If no spec is provided, automatically discovers the most recent spec with incomplete tasks by scanning
docs/specs/directory. - Validation Process:
- Maps git commits to requirements and tasks
- Analyzes changed files against "Relevant Files" list
- Verifies proof artifacts (URLs, CLI commands, tests, screenshots)
- Checks repository standards compliance
- Validation Gates: Applies mandatory gates (GATE A-E) including critical/high issue blocking, coverage matrix completeness, proof artifact accessibility, file integrity, and repository compliance.
- Coverage Matrix: Produces evidence-based coverage tables for Functional Requirements, Repository Standards, and Proof Artifacts with Verified/Failed/Unknown status.
- Output: Generates a single human-readable Markdown validation report with executive summary, coverage matrix, issues with severity ratings, and evidence appendix.
- Validates completeness, correctness, and adherence to the original specification.
sequenceDiagram
participant U as User
participant GS as 1. generate-spec
participant SPEC as docs/specs/[NN]-spec-[feature]/[NN]-spec-[feature].md
participant GT as 2. generate-task-list-from-spec
participant TL as docs/specs/[NN]-spec-[feature]/[NN]-tasks-[feature].md
participant MT as 3. manage-tasks
participant PROOFS as docs/specs/[NN]-spec-[feature]/[NN]-proofs/
participant CODE as Code / Docs / Tests
participant VAL as 4. validate-spec-implementation
Note over U,GS: Stage 1: Generate Spec
U->>GS: Provide Feature/Task
GS->>GS: Assess Scope Appropriateness
GS->>U: Scope Validation
U-->>GS: Confirm Scope
GS->>CODE: Analyze codebase (optional)
CODE-->>GS: Context findings
GS->>U: Structured Clarifying Questions<br/>(numbered/lettered options)
U-->>GS: Answer Questions
GS->>SPEC: Generate Spec (docs/specs/)
SPEC-->>U: Review Spec
U-->>GS: Feedback/Refinement
GS->>SPEC: Finalize Spec
Note over U,GT: Stage 2: Generate Task List
U->>GT: Provide Spec reference<br/>(or auto-discover)
GT->>SPEC: Read Spec
GT->>GT: Phase 1: Analysis & Planning<br/>(internal)
GT->>CODE: Assess Current State
CODE-->>GT: Patterns & Context
GT->>TL: Phase 2: Generate Parent Tasks<br/>(save to file)
TL-->>U: Review Parent Tasks
U-->>GT: "Generate sub tasks"
GT->>GT: Phase 3: Identify Relevant Files<br/>& Generate Sub-Tasks
GT->>TL: Update with Sub-Tasks<br/>& Relevant Files Section
Note over U,MT: Stage 3: Manage Tasks
U->>MT: Start Implementation
MT->>U: Choose Checkpoint Mode<br/>(Continuous/Task/Batch)
U-->>MT: Mode Selection
loop For Each Parent Task
loop For Each Sub-Task
MT->>TL: Mark [~] In Progress
MT->>CODE: Implement Sub-Task
MT->>CODE: Test & Quality Check
MT->>TL: Mark [x] Complete
end
MT->>CODE: Run Test Suite
MT->>CODE: Quality Gates
MT->>PROOFS: Create Proof Artifacts<br/>[NN]-task-[TT]-proofs.md
MT->>CODE: Git Commit<br/>(with task/spec refs)
MT->>TL: Mark Parent [x] Complete
MT->>MT: Blocking Verification
end
Note over U,VAL: Stage 4: Validate Implementation
U->>VAL: Run Validation<br/>(or auto-discover spec)
VAL->>SPEC: Read Spec
VAL->>TL: Read Task List
VAL->>CODE: Analyze Git Commits
VAL->>PROOFS: Verify Proof Artifacts
VAL->>CODE: Check Repository Standards
VAL->>VAL: Apply Validation Gates<br/>(GATE A-E)
VAL->>VAL: Generate Coverage Matrix
VAL->>U: Validation Report<br/>(PASS/FAIL with evidence)
- Specs:
docs/specs/[NN]-spec-[feature-name]/[NN]-spec-[feature-name].md— canonical requirements including goals, user stories, demoable units, functional requirements, non-goals, design considerations, repository standards, technical considerations, success metrics, and open questions (where[NN]is a zero-padded 2-digit number: 01, 02, 03, etc.). - Task Lists:
docs/specs/[NN]-spec-[feature-name]/[NN]-tasks-[feature-name].md— parent/subtask checklist with demo criteria, proof artifacts, and "Relevant Files" section listing all files that will be created or modified. - Proof Artifacts:
docs/specs/[NN]-spec-[feature-name]/[NN]-proofs/[NN]-task-[TT]-proofs.md— single markdown file per parent task (created before commit) containing CLI output, test results, screenshots, configuration examples, and demo validation evidence (where[NN]is spec number and[TT]is task number). - Status Keys:
[ ]not started,[~]in progress,[x]complete, mirroring the manage-tasks guidance. - Validation Reports: Generated by the validation prompt, includes coverage matrix, validation gates status, and evidence-based verification results.
- Kick off a spec: Copy or reference
prompts/generate-spec.mdinside your preferred AI chat. The AI will assess scope appropriateness, ask structured clarifying questions (with numbered/lettered options), optionally review your codebase, generate the spec, and iterate with you until it's complete. The spec is saved todocs/specs/[NN]-spec-[feature-name]/[NN]-spec-[feature-name].md. - Plan the work: Point the assistant to the new spec (or let it auto-discover) and walk through
prompts/generate-task-list-from-spec.md. The AI will analyze the spec, generate parent tasks for your review (Phase 2), then after you confirm, expand into detailed subtasks with a "Relevant Files" section (Phase 3). The result is saved todocs/specs/[NN]-spec-[feature-name]/[NN]-tasks-[feature-name].md. - Execute with discipline: Follow
prompts/manage-tasks.mdwhile implementing. Choose your checkpoint mode (Continuous/Task/Batch), update statuses as you work, create proof artifacts indocs/specs/[NN]-spec-[feature-name]/[NN]-proofs/[NN]-task-[TT]-proofs.mdbefore each commit, and follow the verification checklists at each step. - Validate: Use
prompts/validate-spec-implementation.md(or let it auto-discover the spec) to ensure the implementation matches the spec. The AI will verify proof artifacts, check coverage, apply validation gates, and produce a comprehensive validation report.
Install the prompts as native slash commands in your AI assistant using the slash-command-manager:
uvx --from git+https://github.com/liatrio-labs/slash-command-manager \
slash-man generate \
--github-repo liatrio-labs/spec-driven-workflow \
--github-branch main \
--github-path prompts/This will auto-detect your configured AI assistants (Claude Code, Cursor, Windsurf, etc.) and install the prompts as slash commands.
Once installed, you can use:
/generate-spec- Generate a new specification/generate-task-list-from-spec- Create a task list from a spec/manage-tasks- Manage task execution/validate-spec-implementation- Validate implementation against spec
# Clone the repository
git clone https://github.com/liatrio-labs/spec-driven-workflow.git
cd spec-driven-workflowThat's it! The prompts are plain Markdown files in the prompts/ directory. No dependencies required.
| Reference | Description | Link |
|---|---|---|
| AI Dev Tasks | Foundational example of an SDD workflow expressed entirely in Markdown. | https://github.com/snarktank/ai-dev-tasks |
| Slash Command Manager | Utility for installing prompts as slash commands in AI assistants. | https://github.com/liatrio-labs/slash-command-manager |
| MCP | Standard protocol for AI agent interoperability. | https://modelcontextprotocol.io/docs/getting-started/intro |
This project is licensed under the Apache License, Version 2.0. See the LICENSE file for details.
