From example-skills
Transforms natural language ideas into executable feature specifications, implementation plans, data models, API contracts, and task lists. Use for Specification-Driven Development (SDD), feature planning, and PRD creation via /speckit commands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/example-skills:speckitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.pySpec 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 definitionnpx claudepluginhub a-organvm/a-i--skills --plugin document-skillsProvides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.