claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes CodeSearch (hybrid SQLite + pgvector), mem0/memgraph specialists, and all CFN skills.
176 lines (149 loc) β’ 6.01 kB
Markdown
# Agent Navigation Guide
**Start here** to explore 607 specialized AI agents organized hierarchically.
## πΊοΈ Quick Navigation Map
```
agents/
β
βββ π Documentation
β βββ QUICK_REFERENCE.md ............... Fast category lookup
β βββ FULL_STRUCTURE.md ................ Complete hierarchy
β βββ CATEGORIZATION_SUMMARY.md ........ Detailed breakdown
β βββ IMPORTED_AGENTS_README.md ........ Integration guide
β
βββ π» Development & Engineering (155)
β βββ backend/ (56) .................... APIs, server-side
β βββ integration/ (33) ................ Third-party APIs
β βββ devops/ (24) ..................... CI/CD, Docker, K8s
β βββ testing/ (17) .................... QA, test automation
β βββ frontend/ (10) ................... React, Angular, Vue
β βββ database/ (10) ................... SQL, NoSQL
β βββ architecture/ (3) ................ System design
β βββ mobile/ (2) ...................... iOS, Android
β
βββ π Industry-Specific (224)
β βββ other/ (217) ..................... Real estate, energy, etc.
β βββ entertainment/ (5) ............... Media, gaming
β βββ healthcare/ (1) .................. Medical systems
β βββ finance/ (1) ..................... Banking, fintech
β
βββ π€ AI/ML & Automation (62)
β βββ machine-learning/ (55) ........... Classification, regression
β βββ automation/ (5) .................. Workflow automation
β βββ deep-learning/ (1) ............... Neural networks
β βββ computer-vision/ (1) ............. Image processing
β
βββ π Business & Operations (61)
β βββ strategy/ (21) ................... Business planning
β βββ leadership/ (21) ................. Management
β βββ growth/ (6) ...................... Scaling
β βββ revenue/ (6) ..................... Sales, monetization
β βββ customer/ (4) .................... CRM, support
β βββ operations/ (3) .................. Process optimization
β
βββ π Data & Analytics (34)
β βββ business-intelligence/ (18) ...... Dashboards, reporting
β βββ forecasting/ (10) ................ Time-series, predictions
β βββ analytics/ (4) ................... Statistical analysis
β βββ data-engineering/ (2) ............ ETL/ELT pipelines
β
βββ π€ Personal & Professional (32)
β βββ career/ (16) ..................... Job search, interviews
β βββ communication/ (9) ............... Presentations, feedback
β βββ leadership/ (3) .................. Coaching, mentoring
β βββ wellness/ (3) .................... Work-life balance
β βββ productivity/ (1) ................ Time management
β
βββ π Security & Compliance (28)
β βββ cybersecurity/ (15) .............. Threat analysis
β βββ compliance/ (11) ................. Regulatory, auditing
β βββ privacy/ (2) ..................... GDPR, data protection
β
βββ π³ Payment & Financial (11)
βββ payment-gateways/ (6) ............ Stripe, PayPal, Square
βββ bnpl/ (2) ........................ Buy-now-pay-later
βββ cryptocurrency/ (2) .............. Blockchain, Web3
βββ billing/ (1) ..................... Invoicing, subscriptions
```
## π― Usage Scenarios
### Scenario 1: "I need a backend API developer"
```bash
cd agents/development-engineering/backend/
cat INDEX.md
# β Choose from 56 backend specialists
```
### Scenario 2: "Find payment integration agents"
```bash
cd agents/payment-financial/payment-gateways/
ls
# β stripe-payment-integration-agent.md
# β paypal-integration-agent.md
# β square-integration-agent.md
```
### Scenario 3: "I want machine learning expertise"
```bash
cd agents/ai-ml-automation/machine-learning/
cat INDEX.md
# β 55 ML specialists available
```
### Scenario 4: "Need security compliance help"
```bash
cd agents/security-compliance/compliance/
ls
# β gdpr, hipaa, sox, pci specialists
```
## π Search Strategies
### Browse by Category
```bash
# Top-down exploration
ls agents/ # Main categories
ls agents/development-engineering/ # Subcategories
ls agents/development-engineering/backend/ # Agent files
```
### Search by Name
```bash
# Find specific technology
find agents -name "*react*"
find agents -name "*kubernetes*"
find agents -name "*stripe*"
```
### Search by Keyword
```bash
# Search agent descriptions
grep -r "machine learning" agents/ai-ml-automation/
grep -r "payment" agents/payment-financial/
grep -r "security" agents/security-compliance/
```
### Search All Content
```bash
# Full-text search
grep -r "your keyword" agents/
```
## π Index Files
Every category and subcategory has an INDEX.md:
```bash
# Main category index
cat agents/development-engineering/INDEX.md
# β Lists all 8 subcategories with counts
# Subcategory index
cat agents/development-engineering/backend/INDEX.md
# β Lists all 56 backend agents alphabetically
```
## π‘ Tips for Efficiency
1. **Start Broad**: Begin with main category β drill down to subcategory
2. **Use INDEX.md**: Every folder has one - it's your table of contents
3. **Search When You Know**: If you know what you want, use `find` or `grep`
4. **Check QUICK_REFERENCE.md**: Fast category overview
5. **Compare**: Native `.claude/agents/` (93) for workflows, `agents/` (607) for expertise
## π Next Steps
```bash
# 1. Browse available categories
cat agents/QUICK_REFERENCE.md
# 2. Explore your domain
cat agents/development-engineering/INDEX.md
# 3. Find your agent
cat agents/development-engineering/backend/backend-api-code-writer-agent.md
# 4. Use it!
# β Copy agent content or reference by path
```
---
**Questions?** See [IMPORTED_AGENTS_README.md](IMPORTED_AGENTS_README.md) for complete guide.