spec-kit-skill
GitHub Spec-Kit integration for constitution-based spec-driven development (7-phase workflow)
View on GitHubTable of content
GitHub Spec-Kit integration for constitution-based spec-driven development (7-phase workflow)
Installation
npx claude-plugins install @feiskyer/claude-code-settings/spec-kit-skill
Contents
Folders: skills
Included Skills
This plugin includes 1 skill definition:
spec-kit-skill
‘GitHub Spec-Kit integration for constitution-based spec-driven development. 7-phase workflow. Triggers: “spec-kit”, “speckit”, “constitution”, “specify”, “.specify/”, “规格驱动开发”, “需求规格”.’
View skill definition
Spec-Kit: Constitution-Based Spec-Driven Development
Official GitHub Spec-Kit integration providing a 7-phase constitution-driven workflow for feature development.
Quick Start
This skill works with the GitHub Spec-Kit CLI to guide you through structured feature development:
- Constitution → Establish governing principles
- Specify → Define functional requirements
- Clarify → Resolve ambiguities
- Plan → Create technical strategy
- Tasks → Generate actionable breakdown
- Analyze → Validate consistency
- Implement → Execute implementation
Storage: Creates files in .specify/specs/NNN-feature-name/ directory with numbered features
When to Use
- Setting up spec-kit in a project
- Creating constitution-based feature specifications
- Working with .specify/ directory
- Following GitHub spec-kit workflow
- Constitution-driven development
Prerequisites & Setup
Check CLI Installation
First, verify if spec-kit CLI is installed:
command -v specify || echo "Not installed"
Installation
If not installed:
# Persistent installation (recommended)
uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
# One-time usage
uvx --from git+https://github.com/github/spec-kit.git specify init <PROJECT_NAME>
Requirements:
- Python 3.11+
- Git
- uv package manager (install uv )
Project Initialization
If C
…(truncated)