Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.37 KB

File metadata and controls

51 lines (40 loc) · 1.37 KB

Contributing

Pull requests welcome.

Ideas

  • Framework-specific prompts (Rails, Django, Laravel)
  • Language-specific checks (Go, Rust, Python)
  • Better grep patterns
  • New agent types
  • New workflows

Guidelines

  • Keep prompts concise. Less is more.
  • Test your changes on a real codebase.
  • No over-kill. No marketing language.

Process

  1. Fork
  2. Make changes
  3. Test on a real project
  4. PR with description of what you changed and why

Structure

.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.