From example-skills
Specification-Driven Development (SDD) toolkit. Transforms ideas into executable specifications, implementation plans, and task lists. Use for feature planning, PRD creation, or when user invokes /speckit.specify, /speckit.plan, /speckit.tasks commands.
npx claudepluginhub organvm-iv-taxis/a-i--skills --plugin document-skillsThis skill uses the workspace's default tool permissions.
Spec Kit implements **Specification-Driven Development (SDD)** - a methodology where specifications drive code, not vice versa. Instead of specs serving as documentation for code, code becomes the expression of specifications.
assets/templates/constitution-template.mdassets/templates/plan-template.mdassets/templates/spec-template.mdassets/templates/tasks-template.mdreferences/commands/plan.mdreferences/commands/specify.mdreferences/commands/tasks.mdreferences/methodology.mdreferences/workflow-integration.mdscripts/init_spec_dir.pyscripts/validate_spec.pyCompares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Spec Kit implements Specification-Driven Development (SDD) - a methodology where specifications drive code, not vice versa. Instead of specs serving as documentation for code, code becomes the expression of specifications.
Traditional development: Code is truth, specs are scaffolding SDD: Specifications are truth, code is generated output
This eliminates the gap between intent and implementation by making specifications executable through AI.
/speckit.specify <feature-description>Creates a comprehensive feature specification from a natural language description.
Usage: /speckit.specify Real-time chat with message history and presence
Output:
specs/{feature-name}/spec.md - Complete feature specificationspecs/{feature-name}/checklists/requirements.md - Quality validation checklistProcess:
Guidelines:
[NEEDS CLARIFICATION] markers to 3 maximumFor detailed template: read assets/templates/spec-template.md
For command details: read references/commands/specify.md
/speckit.plan [tech-context]Creates an implementation plan from an existing specification.
Usage: /speckit.plan WebSocket, PostgreSQL, Redis or /speckit.plan (will determine tech from context)
Prerequisites: spec.md must exist in the feature directory
Output:
specs/{feature}/plan.md - Implementation plan with tech decisionsspecs/{feature}/research.md - Technology research and decisionsspecs/{feature}/data-model.md - Entity definitionsspecs/{feature}/contracts/ - API specifications (OpenAPI/GraphQL)specs/{feature}/quickstart.md - Validation scenariosProcess:
research.mdConstitution Gates (if using constitution):
For detailed template: read assets/templates/plan-template.md
For command details: read references/commands/plan.md
/speckit.tasksGenerates an executable task list from the implementation plan.
Usage: /speckit.tasks
Prerequisites: plan.md and spec.md must exist
Output:
specs/{feature}/tasks.md - Dependency-ordered task listProcess:
[P]Task Format: [ID] [P?] [Story] Description
[P] = Can run in parallel (different files, no dependencies)[Story] = Which user story (US1, US2, US3)For detailed template: read assets/templates/tasks-template.md
For command details: read references/commands/tasks.md
# 1. Create specification (5 min)
/speckit.specify Real-time chat with message history and user presence
# 2. Generate implementation plan (5 min)
/speckit.plan WebSocket for messaging, PostgreSQL for history, Redis for presence
# 3. Create task list (5 min)
/speckit.tasks
Result (in 15 minutes):
A constitution defines immutable architectural principles for a project. When present at memory/constitution.md, the /speckit.plan command will:
Sample principles:
For constitution template: read assets/templates/constitution-template.md
Tasks are grouped by user story to enable:
Templates constrain AI behavior for better outcomes:
When working in a project:
specs/{feature-name}/memory/constitution.mdassets/templates/spec-template.md - Feature specification templateassets/templates/plan-template.md - Implementation plan templateassets/templates/tasks-template.md - Task list templateassets/templates/constitution-template.md - Project constitution templatereferences/methodology.md - Full SDD philosophy documentreferences/commands/specify.md - /speckit.specify command definitionreferences/commands/plan.md - /speckit.plan command definitionreferences/commands/tasks.md - /speckit.tasks command definition