Awesome Claude Agents 🚀 - Complete Directory (Updated August 2025)

August 1, 2025 · View on GitHub

A community-driven collection Claude Code agents and sub-agents—turn your Claude instance into an unstoppable team of domain experts! This repo catalogs plug-and-play agents, agent frameworks, and orchestration recipes contributed by the community and curated from public sources.

The Claude Code agent ecosystem has exploded with hundreds of specialized sub-agents, frameworks, and orchestration tools. Here's the most comprehensive directory of all available Claude Code agents, repositories, guides, and resources.

What are Claude Agents?

Claude Agents are specialized, task-focused AI "teammates" defined via simple Markdown+YAML files. Each agent lives in .claude/agents/ and is scoped with a clear role, tool set, and behaviour prompt. With sub-agent support, Claude Code can now delegate complex projects to expert agents who work in parallel—just like a real engineering team!

NameTypeRole / HighlightsLink
Tech Debt Finder & FixerSub-AgentScans codebase for debt, refactors, and automates fixes with test validation[derek-opdee/subagent-example-script]
Architecture ReviewerSub-AgentDetects circular deps, generates diagrams, flags anti-patterns[derek-opdee/subagent-example-script]
Test GeneratorSub-AgentSuggests, writes, and integrates tests for uncovered paths[derek-opdee/subagent-example-script]
Performance OptimizerSub-AgentAnalyzes bundle size, boosts DB/index/query speed, optimizes React[derek-opdee/subagent-example-script]
28-Subagent Power PackRepoSecurity, compliance, changelogs, SQL tuning & more (ready-to-use agents)[wshobson/agents]
Claude Code Dev KitMeta-RepoSets up docs, multi-agent templates, hooks & MCP server integration[peterkrueck/Claude-Code-Development-Kit]

Production-Ready Agent Collections

RepositorySub-AgentsUpdatedHighlights
0xfurai/claude-code-subagents100+Aug 2025Massive collection with uniform prompt format, MIT licensed, multi-language support
wshobson/agents48Jul 2025Production-ready specialists with orchestration patterns and advanced workflows
vijaythecoder/awesome-claude-agents26Jul 2025AI development team with Tech Lead, Analyst, and specialized domain experts
davepoon/claude-code-subagents-collection36Jul 2025Comprehensive collection with auto-delegation and best practices guide
charles-adedotun/claude-code-sub-agentsFull ecosystemJul 2025Workflow-stage based system mapping entire dev lifecycle

Specialized Frameworks & Tools

RepositoryPurposeKey Features
hesreallyhim/awesome-claude-code-agentsOrchestration frameworkClean interface, sophisticated orchestration logic
webdevtodayjason/sub-agentsCLI ManagerNPM installable, context-forge integration, bulk management
baryhuang/claude-code-by-agentsDesktop appMulti-agent workspace, @agent mentions, local+remote agents
Dicklesworthstone/claude_code_agent_farmOrchestrationMultiple Claude sessions in parallel, systematic codebase improvement

Individual Contributor Collections

RepositorySub-AgentsSpecialization
iannuttall/claude-agents7Code refactoring, content writing, frontend design, PRD writing
zhsama/claude-sub-agentWorkflow systemSpec-driven development pipeline with quality gates

📚 Essential Guides & Documentation

Official Documentation

Community Tutorials & Deep Dives

GuideAuthorFocus
Claude Code: Subagent Deep Divecuong.ioParallelism limits, task queuing, performance benchmarks
Mastering Claude Code: The Sub-agent PatternEnting's BlogHidden features, prompt templates, practical benefits
How I use Claude CodeChristian B.B. HoumannCLAUDE.md, commands, extended thinking, project-specific patterns
Claude Code's Custom Agent Framework Changes Everythingdev.toEnterprise applications, security, parallel execution

Video Tutorials

VideoCreatorDurationFocus
Claude Code NEW Sub Agents in 7 MinutesDevelopers Digest7 minSetup walkthrough, research agent demo
Master Claude Code Sub‑Agents in 10 MinutesVarious10 minComplete feature overview
How to use Claude Code AgentsVariousN/APACT framework for refined agents
My Claude Code Sub Agents BUILD THEMSELVESVariousN/ASelf-building agent patterns

🏗️ Agent Categories & Use Cases

Development Lifecycle Agents

  • Planning: Requirements analyst, architect, tech lead, project planner
  • Implementation: Backend/frontend developers, API designers, database specialists
  • Quality: Code reviewers, testers, security auditors, performance optimizers
  • Operations: DevOps engineers, incident responders, deployment specialists
  • Documentation: Technical writers, API documenters, changelog generators

Domain Specialists

  • Languages: Python, JavaScript, TypeScript, Go, Rust, Java specialists
  • Frameworks: React, Vue, Django, FastAPI, Spring Boot experts
  • Cloud: AWS, GCP, Azure architects and troubleshooters
  • Data: ML engineers, data scientists, analytics specialists
  • Security: Penetration testers, compliance auditors, crypto experts

Business & Marketing

  • Content: Copywriters, blog authors, social media managers
  • Sales: Lead generators, email automators, CRM specialists
  • Analytics: Business analysts, growth hackers, conversion optimizers
  • Support: Customer service, FAQ creators, documentation writers

🌐 Community & Platforms

Agent Sharing Platforms

  • subagents.cc - Dedicated Claude agent directory
  • Reddit Communities: r/ClaudeAI, r/programming - Active sharing and discussion
  • GitHub Topics: #claude-agents, #claude-code, #subagents

Multi-Agent Orchestration Examples

🔧 Advanced Patterns & Workflows

Orchestration Patterns

  • Sequential: Agent A → Agent B → Agent C → Result
  • Parallel: Multiple agents execute simultaneously, merge results
  • Conditional: Dynamic routing based on analysis
  • Review & Validation: Primary agent → Review agent → Final result

Performance Optimization

  • Context Preservation: Separate context windows prevent pollution
  • Tool Scoping: Limit permissions to necessary tools only
  • Batch Processing: Queue tasks efficiently (10 parallel max)
  • Smart Delegation: Automatic vs. explicit agent invocation

📊 Quick Reference

  1. wshobson/agents - 248+ stars, production-ready
  2. iannuttall/claude-agents - 248 stars, community favorite
  3. 0xfurai/claude-code-subagents - Newest, largest collection
  4. vijaythecoder/awesome-claude-agents - AI development focus

Best Starting Points

  • Beginners: iannuttall/claude-agents (7 agents, simple setup)
  • Production Teams: wshobson/agents (48 agents, enterprise patterns)
  • Maximum Coverage: 0xfurai/claude-code-subagents (100+ agents)
  • Development Teams: vijaythecoder/awesome-claude-agents (orchestrated workflow)

🛠️ Installation & Setup

# 100+ agent mega-collection
git clone https://github.com/0xfurai/claude-code-subagents.git ~/.claude/agents/mega-pack

# Production-ready 48-agent collection
git clone https://github.com/wshobson/agents ~/.claude/agents/wh-production

# AI development team (26 agents)
git clone https://github.com/vijaythecoder/awesome-claude-agents ~/.claude/agents/ai-team

# Comprehensive collection (36 agents) 
git clone https://github.com/davepoon/claude-code-subagents-collection ~/.claude/agents/comprehensive

Install Management Tools

# CLI manager for sub-agents
npm install -g claude-sub-agents-manager

# Or clone the manager
git clone https://github.com/webdevtodayjason/sub-agents

Quick-Start Recipes

  1. Create a ProjectLocal Sub-Agent
mkdir -p .claude/agents
cat > .claude/agents/code-reviewer.md <<'EOF'
---
name: code-reviewer
description: "Use proactively to review new pull requests for style, security, and test coverage."
tools: grep, view, edit, mcp-gemini
---
You are a senior code reviewer. Provide inline comments and suggest fixes...
EOF

Any request that includes “review” language will now trigger this agent automatically.

  1. Clone Community Packs
# Download Derek Dee’s power pack
mkdir -p ~/.claude/agents
curl -sL https://raw.githubusercontent.com/derek-opdee/subagent-example-script/main/sub-agent-tech-debt-finder-fixer.md -o ~/.claude/agents/tech-debt.md

# Download W. Shobson’s 28-agent bundle
git clone https://github.com/wshobson/agents ~/.claude/agents/wh-bundle
  1. Invoke Explicitly
> Use the test-generator sub agent to create Jest tests for the new Cart module

or launch several agents at once:

> Spawn 3 subagents:
> 1. Security audit
> 2. Lint & style check
> 3. Bundle size analysis

Claude will queue and run up to 10 tasks in parallel.

Directory Structuring Tips

  • Project agents (.claude/agents/) take priority over user-level agents (~/.claude/agents/).
  • Prefix agent files with numbers (like 01_, 02_) to sort their order in the /agents listing.
  • Keep system prompts brief; long role descriptions increase token use.
  • Limit access to only the necessary tools for each agent to maintain security and efficiency.

Common Pitfalls & Solutions

IssueCauseSolution
Sub-agent ignores taskVague descriptionUse explicit trigger phrases like “use proactively for X”
Token blow-upsOverly long system promptsReuse boilerplate; make role descriptions concise
No output mergeEach agent authors a full planAdd a step where the main agent merges all findings
Max parallelism at 10System-imposed task capBatch remaining tasks; more start as others finish

4. Mix, Match, and Share!

Mix and match roles, tweak YAML front-matter, and contribute your own agents back to this directory!

✨ Tips for Creating Great Agents

  • Specialise Roles: “Proactively review PRs for security and lint errors,” “only optimize SQL queries in src/db/.”
  • Limit Permissions: List only the tools/commands each agent truly needs for maximum safety.
  • Keep Context Lean: Set concise system prompts to control token cost per spawn.
  • Provide Dry-Run / Interactive Modes: Where possible, so users stay in control.

🚀 The Claude Agent Ecosystem (August 2025)

This directory represents the complete ecosystem as of August 2025. The Claude Code agent community continues to grow rapidly, with new repositories, tools, and patterns emerging weekly.

  • Agent Marketplaces: Community-driven agent sharing platforms
  • Cross-Platform Integration: Agents working across different development environments
  • Self-Improving Agents: Agents that modify and optimize themselves
  • Multi-Model Orchestration: Different Claude models for different agent roles
  • Real-Time Collaboration: Multiple users working with shared agent teams

For the latest updates, monitor the GitHub repositories and Reddit communities listed in the Community & Platforms section above.

🤝 Contributing

  • Fork this repo, add your my-unique-agent.md files to the main directory, and open a PR.
  • Include a short description and a working example in each agent file.
  • Want your own agent repo included? Submit a link and summary via PR or issue.

License

MIT License for this directory. Individual agent files may contain separate copyright/attribution info.

Credits

Big thanks to everyone building and open-sourcing specialist Claude agents—your work powers this community!
Want to be featured? Suggest your repo or agent file via PR or issue.

: https://github.com/derek-opdee/subagent-example-script
: https://github.com/wshobson/agents
: https://github.com/peterkrueck/Claude-Code-Development-Kit

“The most powerful Claude agents feel like hiring a team of experts—but you get code reviews, migrations, and tests done in minutes.”
– Community Contributor

Happy hacking! Add, remix, and power up your Claude!