Production-tested Claude Code skills, commands, and tools for AI-augmented software development.
Based on learnings from AI-Augmented Development at Scale.
ai-engineering/
├── claude-skills/ # Skills (complex, stateful workflows)
│ ├── spec/ # /spec - Interactive spec creation
│ ├── beads/ # /beads - Task decomposition with git-backed tracking
│ ├── converge/ # /converge - Exhaustive multi-pass research
│ ├── sparky/ # Sparky integration (Letta persistent memory)
│ └── aws-cdk-development/
│
├── claude-commands/ # Commands (slash commands for Claude Code)
│ ├── create_plan.md # /create_plan - Architecture planning
│ ├── implement_plan.md
│ ├── research_codebase.md
│ └── ... (25+ commands)
│
├── claude-agents/ # Custom subagent definitions
│ ├── codebase-analyzer.md
│ ├── codebase-pattern-finder.md
│ └── ...
│
└── sparky-rs/ # Rust Slack bot for Sparky (Letta agent)
└── src/
/spec → /create_plan → /beads → /implement_plan → Visual Verification
↓ ↓ ↓ ↓ ↓
Human Human Human Claude Claude
Scope Guide Verify Execute Verify UI
Interactive spec creation with:
- Parallel research (codebase, Linear, Sparky, Git, docs, Exa)
- Strategic questions based on research findings
- Gherkin acceptance criteria
- Automatic Linear ticket creation
- ADR compliance checking
- Structured decision questions
- Phased implementation planning
- File:line references from research
Uses beads for:
- Atomic, context-window-sized tasks
- Git-backed distributed tracking
- Dependency graphs for parallel execution
- Quality gates per task
Multi-pass research until convergence:
- Normal (~60 min): 3 parallel agents → sequential refinement
- Extreme (~3 hours): + GPT-5 Pro synthesis
- Insane (~6+ hours): GPT-5 Pro handles everything
Copy to your Claude Code configuration:
# Copy skills
cp -R claude-skills/* ~/.claude/skills/
# Copy commands
cp -R claude-commands/* ~/.claude/commands/
# Copy agents (optional)
cp -R claude-agents/* ~/.claude/agents/See sparky-rs/README.md for setup instructions.
Requires:
- Letta account and agent
- Slack workspace with bot permissions
- Claude Code: https://claude.ai/download
- Beads: https://github.com/steveyegge/beads
- Letta: https://letta.com (for Sparky)
- Linear (optional): For ticket management
- Exa (optional): For web/code search
MIT