claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes Local RuVector Accelerator and all CFN skills for complete functionality.
246 lines (201 loc) ⢠7.99 kB
Markdown
# Complete Agent Directory Structure
**Total Agents:** 607 organized in 8 main categories and 36 subcategories
**Last Updated:** 2025-10-18
## š Hierarchical Organization
### 1. Development & Engineering (155 agents)
```
development-engineering/
āāā backend/ ..................... 56 agents
ā Backend development, APIs, server-side programming
āāā integration/ ................. 33 agents
ā API integration, third-party services, webhooks
āāā devops/ ...................... 24 agents
ā DevOps, CI/CD, containerization, orchestration
āāā testing/ ..................... 17 agents
ā Testing, QA, quality assurance, test automation
āāā frontend/ .................... 10 agents
ā Frontend frameworks, UI development, client-side
āāā database/ .................... 10 agents
ā Database design, SQL, NoSQL, data modeling
āāā architecture/ ................. 3 agents
ā Software architecture, system design, patterns
āāā mobile/ ....................... 2 agents
Mobile app development (iOS, Android)
```
### 2. Industry-Specific (224 agents)
```
industry-specific/
āāā other/ ...................... 217 agents
ā Real estate, hospitality, tourism, energy, utilities, telecom, insurance
āāā entertainment/ ................ 5 agents
ā Entertainment, media, gaming, sports
āāā healthcare/ ................... 1 agent
ā Healthcare, medical, clinical systems
āāā finance/ ...................... 1 agent
Finance, banking, fintech, trading
```
### 3. AI/ML & Automation (62 agents)
```
ai-ml-automation/
āāā machine-learning/ ............ 55 agents
ā Traditional ML, classification, regression
āāā automation/ ................... 5 agents
ā Intelligent automation, workflow automation
āāā deep-learning/ ................ 1 agent
ā Deep learning, neural networks, frameworks
āāā computer-vision/ .............. 1 agent
Computer vision, image processing, object detection
```
### 4. Business & Operations (61 agents)
```
business-operations/
āāā strategy/ .................... 21 agents
ā Business strategy, strategic planning
āāā leadership/ .................. 21 agents
ā Leadership, management, organizational development
āāā growth/ ....................... 6 agents
ā Business growth, scaling, expansion
āāā revenue/ ...................... 6 agents
ā Revenue optimization, sales, monetization
āāā customer/ ..................... 4 agents
ā Customer experience, CRM, support
āāā operations/ ................... 3 agents
Operations management, process optimization
```
### 5. Data & Analytics (34 agents)
```
data-analytics/
āāā business-intelligence/ ....... 18 agents
ā Business intelligence, dashboards, reporting
āāā forecasting/ ................. 10 agents
ā Forecasting, time-series analysis, predictions
āāā analytics/ .................... 4 agents
ā Data analytics, statistical analysis, insights
āāā data-engineering/ ............. 2 agents
Data engineering, ETL/ELT, data pipelines
```
### 6. Personal & Professional (32 agents)
```
personal-professional/
āāā career/ ...................... 16 agents
ā Career development, job search, interviews
āāā communication/ ................ 9 agents
ā Communication skills, presentations, feedback
āāā leadership/ ................... 3 agents
ā Leadership development, coaching, mentoring
āāā wellness/ ..................... 3 agents
ā Wellness, work-life balance, mental health
āāā productivity/ ................. 1 agent
Productivity, time management, goal setting
```
### 7. Security & Compliance (28 agents)
```
security-compliance/
āāā cybersecurity/ ............... 15 agents
ā Cybersecurity, threat analysis, penetration testing
āāā compliance/ .................. 11 agents
ā Compliance, regulatory requirements, auditing
āāā privacy/ ...................... 2 agents
Data privacy, GDPR, personal data protection
```
### 8. Payment & Financial (11 agents)
```
payment-financial/
āāā payment-gateways/ ............. 6 agents
ā Payment gateways (Stripe, PayPal, Square, etc.)
āāā bnpl/ ......................... 2 agents
ā Buy-now-pay-later, installment payments
āāā cryptocurrency/ ............... 2 agents
ā Cryptocurrency, blockchain, Web3 payments
āāā billing/ ...................... 1 agent
Billing systems, invoicing, subscriptions
```
## š Quick Access Patterns
### By Main Category
```bash
# Browse main categories
ls agents/
# View category overview
cat agents/development-engineering/INDEX.md
```
### By Subcategory
```bash
# Browse subcategories
ls agents/development-engineering/
# View subcategory agents
cat agents/development-engineering/backend/INDEX.md
ls agents/development-engineering/backend/
```
### By Specific Agent
```bash
# Find agent by name
find agents -name "*react*"
# View agent
cat agents/development-engineering/frontend/react-19-specialist.md
```
## š Statistics by Main Category
| Category | Agents | Subcategories | Largest Subcategory |
|----------|--------|---------------|---------------------|
| **Industry-Specific** | 224 | 4 | other (217) |
| **Development & Engineering** | 155 | 8 | backend (56) |
| **AI/ML & Automation** | 62 | 4 | machine-learning (55) |
| **Business & Operations** | 61 | 6 | strategy (21), leadership (21) |
| **Data & Analytics** | 34 | 4 | business-intelligence (18) |
| **Personal & Professional** | 32 | 5 | career (16) |
| **Security & Compliance** | 28 | 3 | cybersecurity (15) |
| **Payment & Financial** | 11 | 4 | payment-gateways (6) |
## šÆ Most Populated Subcategories
1. **industry-specific/other** - 217 agents
2. **development-engineering/backend** - 56 agents
3. **ai-ml-automation/machine-learning** - 55 agents
4. **development-engineering/integration** - 33 agents
5. **development-engineering/devops** - 24 agents
6. **business-operations/strategy** - 21 agents
7. **business-operations/leadership** - 21 agents
8. **business-intelligence** - 18 agents
9. **testing** - 17 agents
10. **career** - 16 agents
## š Navigation Guide
### Top-Down Exploration
```bash
# 1. Start with main categories
ls agents/
# 2. Pick a category
cat agents/development-engineering/INDEX.md
# 3. Explore subcategories
ls agents/development-engineering/
# 4. View specific subcategory
cat agents/development-engineering/backend/INDEX.md
# 5. List agents
ls agents/development-engineering/backend/
```
### Search-Based Discovery
```bash
# Find by keyword
find agents -name "*kubernetes*"
grep -r "react" agents/development-engineering/frontend/
# Search all agents
grep -r "machine learning" agents/ai-ml-automation/
```
### Direct Access
```bash
# If you know the path
cat agents/development-engineering/backend/backend-api-code-writer-agent.md
```
## š Related Documentation
- **[QUICK_REFERENCE.md](QUICK_REFERENCE.md)** - Fast lookup table
- **[CATEGORIZATION_SUMMARY.md](CATEGORIZATION_SUMMARY.md)** - Main category breakdown
- **[IMPORTED_AGENTS_README.md](IMPORTED_AGENTS_README.md)** - Complete integration guide
- **Category INDEX.md files** - Subcategory overviews (e.g., `development-engineering/INDEX.md`)
- **Subcategory INDEX.md files** - Agent lists (e.g., `development-engineering/backend/INDEX.md`)
## š” Pro Tips
1. **Hierarchical Browsing**: Start broad (main category) ā narrow down (subcategory) ā find specific agent
2. **Keyword Search**: Use `find` or `grep` when you know what you're looking for
3. **Index Files**: Every category/subcategory has an INDEX.md with full agent list
4. **Native vs Imported**: Use native `.claude/agents/` for core workflows, imported `agents/` for specialized expertise
---
**Total Organization:**
- 8 main categories
- 36 subcategories
- 607 agents
- Fully indexed and searchable