A collection of specialized Claude AI agents for development workflows.
These are agent configurations for Claude AI - specialized assistants that help with specific development tasks like bug hunting, test generation, code review, and more.
Copy the agents you want to your project's .claude/agents/ directory:
# Create the directory if it doesn't exist
mkdir -p /path/to/your/project/.claude/agents/
# Copy specific agents
cp claude-crew/agents/bug-hunter.md /path/to/your/project/.claude/agents/
cp claude-crew/agents/test-guardian.md /path/to/your/project/.claude/agents/
# Or copy all agents
cp claude-crew/agents/*.md /path/to/your/project/.claude/agents/Once the agents are in your project's .claude/agents/ directory, Claude will automatically detect and make them available.
Systematically analyzes code for potential bugs, vulnerabilities, and common programming mistakes. Proactively catches issues before they become problems.
Automatically generates comprehensive unit tests after code changes. Ensures code quality with edge case coverage and proper test structure.
Agents use a YAML frontmatter format:
---
name: your-agent-name
description: Brief description of what your agent does
model: opus # or other model preference
color: blue # optional color for the UI
---
Your agent's system prompt and instructions go here...Feel free to submit PRs with new agents or improvements!
MIT