Pull requests welcome.
- Framework-specific prompts (Rails, Django, Laravel)
- Language-specific checks (Go, Rust, Python)
- Better grep patterns
- New agent types
- New workflows
- Keep prompts concise. Less is more.
- Test your changes on a real codebase.
- No over-kill. No marketing language.
- Fork
- Make changes
- Test on a real project
- PR with description of what you changed and why
.claude/agents/ # 24 agent definitions
├── *-auditor.md # Scanners that find issues (11)
├── fix-*.md # Planners and implementers
├── test-*.md # Validators and test generators
├── *-checker.md # Deploy validation
├── *-validator.md # Config validation
├── *-reviewer.md # Quality gates
├── browser-qa-*.md # Chrome UI testing
├── console-monitor.md # Real-time console
├── visual-diff.md # Screenshot comparison
├── pr-writer.md # PR generation
└── seed-generator.md # Test data
workflows/ # 6 predefined agent chains
├── pre-commit.md
├── pre-deploy.md
├── full-audit.md
├── new-feature.md
├── bug-fix.md
└── release-prep.md
Each agent file maps to a Claude Code subagent type. Check README for the mapping.