UNPKG

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