name: superpowers description: > Spec-first development with TDD and sub-agent delegation. Use when use when doing spec-first development or delegating to sub-agents Triggers on keywords: tdd, spec, delegation, development. allowed-tools: Read, Write, Bash, Edit, Grep, Glob user-invocable: true mcp-servers: [filesystem, github, docker]
Spec-First Development
context
Spec-first development with TDD and sub-agent delegation. Write specifications before code, generate tests from specs, and delegate implementation to specialized sub-agents. This skill provides structured workflows and production-ready patterns that ensure code quality, maintainability, and developer experience.
instructions
Step 1: Understand Requirements
- Identify the core development task — new feature, bug fix, refactor, or integration
- Determine technical constraints — language, framework, existing architecture patterns
- Assess scope — is this a quick fix or a significant implementation?
- Check for existing patterns in the codebase before writing new code
Step 2: Apply Development Framework
- Plan — Break the task into small, testable units of work
- Implement — Write clean, well-documented code following project conventions
- Validate — Test the implementation against requirements and edge cases
- Document — Add inline comments and update relevant documentation
Step 3: Generate Implementation
Structure output following this format:
## Implementation Plan
### Approach
Description of the chosen approach and why it was selected
### Code Changes
Files to modify/create with rationale for each change
### Testing Strategy
- Unit tests: what to test at the function level
- Integration tests: how components interact together
- Edge cases: boundary conditions and error states
### Dependencies
- New dependencies if any with justification
- Existing dependencies to leverage
Step 4: Quality Gates
Before completing any implementation:
- [ ] Code follows project style guide and conventions
- [ ] All new code has appropriate test coverage
- [ ] Error handling covers all failure modes
- [ ] Performance implications are documented
- [ ] Security considerations are addressed
- [ ] Documentation is updated
constraints
- NEVER skip error handling — every external call must handle failure gracefully.
- NEVER introduce breaking changes without explicit version bumps and migration guides.
- NEVER hardcode configuration — use environment variables or config files.
- ALWAYS write tests before or alongside implementation (not after).
- ALWAYS consider backward compatibility when modifying existing APIs.
examples
Example: Development Task
Input: "Use when doing spec-first development or delegating to sub-agents"
Output:
## Implementation Plan
### Approach
Use the established superpowers pattern to implement the feature with minimal coupling and maximum testability.
### Code Changes
1. Create new module following project structure conventions
2. Add configuration to existing settings
3. Wire up dependency injection
### Testing Strategy
- Unit tests: Core logic with mocked dependencies
- Integration tests: Full workflow with real dependencies
- Edge cases: Empty inputs, concurrent access, error recovery
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.