Skip to content

matthewrsj/claude-crew

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

claude-crew

A collection of specialized Claude AI agents for development workflows.

What is claude-crew?

These are agent configurations for Claude AI - specialized assistants that help with specific development tasks like bug hunting, test generation, code review, and more.

Installation

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.

Available Agents

🐛 bug-hunter

Systematically analyzes code for potential bugs, vulnerabilities, and common programming mistakes. Proactively catches issues before they become problems.

🛡️ test-guardian

Automatically generates comprehensive unit tests after code changes. Ensures code quality with edge case coverage and proper test structure.

Agent Configuration Format

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

Contributing

Feel free to submit PRs with new agents or improvements!

License

MIT

About

Specialized AI sub-agents for Claude to help with code review, testing, and development workflows

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors