Help us improve
Share bugs, ideas, or general feedback.
SpecSwarm: complete software development toolkit. Spec-driven workflows, autonomous orchestration, lifecycle management Build->Modify->Fix->Ship.
npx claudepluginhub martybonacci/specswarmShortcut aliases for SpecSwarm commands (/ss:build, /ss:ship, etc.)
Share bugs, ideas, or general feedback.
Complete Software Development Toolkit
Build, fix, maintain, and analyze your entire software project with one unified plugin.
SpecSwarm is a comprehensive Claude Code plugin for the complete software development lifecycle across any language or framework Claude supports:
10 Commands | MCP Integration | Production Ready
# 1. Add the marketplace
/plugin marketplace add MartyBonacci/specswarm
# 2. Install the plugin
/plugin install specswarm@specswarm-marketplace
# 3. (Optional) Install /ss: shortcuts
/plugin install ss@specswarm-marketplace
Restart Claude Code to activate the plugin.
# Initialize your project
/specswarm:init
That's it! Now you can use natural language:
"Build user authentication with JWT"
"Fix the login button on mobile"
"Change authentication from session to JWT"
"Ship this feature"
SpecSwarm automatically runs the right workflow based on your intent.
These 5 commands handle the vast majority of daily development work.
/specswarm:initInitialize SpecSwarm in your project
/specswarm:init
Creates .specswarm/ directory with:
tech-stack.md - Prevent technology driftquality-standards.md - Quality gates and budgetsconstitution.md - Project governanceUse when: First-time project setup, or to refresh tech-stack and constitution after external changes
/specswarm:buildBuild new features from specification to implementation
/specswarm:build "feature description"
Natural language:
"Build user authentication with JWT"
"Create a payment processing system"
"Add dashboard analytics"
Complete workflow:
Quick mode for small tasks:
/specswarm:build "add loading spinner" --quick
Skips clarification, auto-generates micro-spec, and executes immediately.
Use when: Building any new feature
/specswarm:fixFix bugs with regression testing and auto-retry
/specswarm:fix "bug description"
Natural language:
"Fix the login button on mobile"
"Images don't load"
"Tailwind styles not showing up"
Complete workflow:
Use when: Fixing any bug or broken functionality
/specswarm:modifyChange existing feature behavior with impact analysis
/specswarm:modify "modification description"
Natural language:
"Change authentication from session to JWT"
"Add pagination to user list API"
"Update search to use full-text search"
Complete workflow:
Use when:
/specswarm:fix)/specswarm:modify "..." --refactor)/specswarm:shipValidate quality, merge to parent branch, and complete feature
/specswarm:ship
Natural language:
"Ship this feature" ⚠️ (requires confirmation)
"Deploy to production" ⚠️ (requires confirmation)
Complete workflow:
⚠️ DESTRUCTIVE OPERATION - Always requires explicit "yes" confirmation
Use when:
Instead of memorizing slash commands, describe what you want in plain English:
Build a Feature:
"Build user authentication with JWT"
"Create a payment processing system"
Fix a Bug:
"Fix the login button"
"Images don't load"
"Styles not showing up"
Modify Existing Features:
"Change authentication to use JWT"
"Add pagination to the API"
Ship Features:
"Ship this feature" ⚠️ (always requires confirmation)
"Merge to main" ⚠️ (always requires confirmation)