An intelligent agent configuration system for Claude Code projects. Simply describe your project to Claude, and it will automatically select the optimal combination of agents from a library of 134 specialized configurations, creating a complete, portable setup tailored to your specific needs.
- 134 Real Agent Configurations - Pre-extracted from VoltAgent repository
- Automatic Setup - Claude is pre-configured as a workflow generator when you open this repo
- Intelligent Agent Selection - Claude analyzes your project and picks the perfect agents
- Complete Agent Catalog - Full descriptions for informed agent selection
- Zero Dependencies - No scripts or external tools required
- Fully Portable - Generated
.claudefolders work immediately - Adaptive Configuration - Tailored to your exact technology stack and requirements
agentic-coding/
├── agents/ # 134 agent configurations with full specs
│ ├── orchestrator.md # Workflow coordinator (always included)
│ ├── frontend-developer.md # Frontend specialist
│ ├── backend-developer.md # Backend specialist
│ └── [131 more agents] # Complete agent library
│
├── .claude-output/ # Generated configurations (git-ignored)
│ └── .claude/ # Portable Claude configuration
│ ├── agents/ # Selected agents for your project
│ ├── workflows/ # Workflow definitions
│ ├── config/ # Settings and configuration
│ ├── project.yaml # Main configuration
│ └── CLAUDE.md # Project-specific instructions
│
├── design/ # Design documents and research
│ ├── agent-coding-research.md
│ ├── agentic-workflow-design.md
│ └── [other design docs]
│
├── .claude/ # Claude Code configuration (auto-loaded)
│ ├── CLAUDE.md # Workflow generator instructions
│ └── ... # Additional Claude settings
│
├── AGENT-CATALOG.md # Complete agent reference (134 agents)
└── PROJECT_REQUIREMENTS_TEMPLATE.md # Template for requirements
# Clone the repository
git clone https://github.com/[your-org]/agentic-coding
cd agentic-coding
# Agents are pre-extracted and ready to use!
# 134 agents available in /agents directory# Open this repository in Claude Code
claude .
# Claude is automatically configured as a workflow generator!
# The .claude/CLAUDE.md instructions are loaded on startupSimply tell Claude about your project:
"I'm building a SaaS application with React frontend, Node.js backend, PostgreSQL database, and Stripe payments"
Or for existing projects:
"Configure Claude agents for my Python data science project that uses pandas and scikit-learn"
Claude will:
- Analyze your requirements
- Intelligently select the right agents from 134 available
- Generate complete configuration in
.claude-output/ - Provide setup instructions
# Copy the generated configuration to your project
cp -r .claude-output/.claude /path/to/your/project/
# Open your project with Claude Code
cd /path/to/your/project
claude .Claude intelligently selects agents based on your project. Here are some examples:
When you describe a React + Node.js + PostgreSQL project, Claude might select:
orchestrator- Workflow coordinationreact-specialist- React developmentjavascript-pro- Node.js backenddatabase-administrator- PostgreSQL optimizationapi-designer- REST API designqa-expert- Testing strategydevops-engineer- Deploymentsecurity-auditor- Security review
For a fraud detection ML project, Claude might choose:
orchestrator- Workflow managementdata-scientist- Model developmentml-engineer- Pipeline implementationpython-pro- Python expertisedata-engineer- ETL processesmlops-engineer- Model deploymentperformance-engineer- Optimizationsecurity-auditor- Data protection
For a React Native e-commerce app, Claude might select:
orchestrator- Development coordinationreact-native-developer- Mobile UImobile-developer- Platform integrationbackend-developer- API servicespayment-integration- Checkout flowqa-expert- Mobile testingux-designer- User experience
See AGENT-CATALOG.md for the complete list of 134 available agents with full descriptions, organized by category:
- 🛠️ Core Development (11 agents)
- 💻 Language & Framework Specialists (24 agents)
- 🏗️ Infrastructure & DevOps (12 agents)
- 🔒 Quality, Security & Testing (13 agents)
- 🤖 Data, AI & Machine Learning (13 agents)
- 🎯 Specialized Domains (11 agents)
- 📊 Business, Product & Management (14 agents)
- 🔧 Developer Experience & Tools (11 agents)
- 🔄 Meta-Orchestration & Coordination (9 agents)
You can ask Claude for specific agents:
"I need a configuration with rust-engineer, blockchain-developer, and security-auditor agents"
Be specific about your needs:
"Create a configuration for a high-traffic e-commerce platform with React frontend,
Node.js microservices, Kubernetes deployment, and strict security requirements"
After generation, you can ask:
"Why did you choose these agents? Can you add a payment-integration specialist?"
For complex projects, use the template for comprehensive configuration:
# 1. Copy and fill out the template
cp PROJECT_REQUIREMENTS_TEMPLATE.md my-requirements.md
# Edit my-requirements.md with your project details
# 2. Share with Claude:
"Here's my project requirements: [paste template contents]"Claude will parse your detailed requirements and create a precise configuration.
- project.yaml - Main configuration with agent list
- agents/*.md - Selected agent definitions
- workflows/*.yaml - Workflow patterns (main, feature, bugfix, testing)
- CLAUDE.md - Project-specific instructions
- config/settings.json - Feature toggles and settings
- setup.sh - One-command installer for your project
- validate.sh - Configuration validator
After Claude generates your configuration, review it:
# Check what was generated
ls -la .claude-output/.claude/
# View selected agents
ls .claude-output/.claude/agents/
# Review the configuration
cat .claude-output/.claude/project.yamlClaude will ensure all necessary files are created and properly configured.
- Intelligent Agent Selection - Claude analyzes your needs and picks optimal agents
- Adaptive Configuration - Tailored specifically to your project, not generic templates
- Best Practice Workflows - Industry-standard patterns built-in
- Zero Setup Time - No manual configuration or script running
- Fully Portable - Share configurations with your team
- Version Control Ready - Check everything into git
- No External Dependencies - Works offline after setup
- Project Analysis: Claude understands your requirements through natural conversation
- Intelligent Matching: Analyzes your tech stack, scale, and needs against 134 agents
- Smart Selection: Picks optimal agents considering dependencies and interactions
- Configuration Generation: Creates complete
.claudestructure with workflows - Portable Output: Self-contained configuration ready to copy to any project
# Verify agents directory exists
ls agents/ | wc -l # Should show 134"Please generate the workflow configuration for my project"
"Can you add agents for GraphQL and Redis to my configuration?"
"Replace the frontend-developer with react-specialist and vue-expert"
- AGENT-CATALOG.md - Complete agent reference with descriptions
- PROJECT_REQUIREMENTS_TEMPLATE.md - Quick setup template
- design/ - Architecture and design documents
- Add new agents - Create properly formatted
.mdfiles in/agents - Improve templates - Enhance pre-configured project types
- Share workflows - Add new workflow patterns
- Report issues - Help us improve the tool
MIT License - See LICENSE file for details
Ready to configure your Claude Code project?
- Open this repository in Claude Code:
claude . - Describe your project: "I'm building a [your project type]"
- Copy the generated configuration to your project
- Start developing with your optimized multi-agent team!
Your personalized agent configuration will be ready in seconds!