$npx -y skills add spencermarx/open-code-review --skill v3-swarm-coordination15-agent hierarchical mesh coordination for v3 implementation. Orchestrates parallel execution across security, core, and integration domains following 10 ADRs with 14-week timeline.
| 1 | # V3 Swarm Coordination |
| 2 | |
| 3 | ## What This Skill Does |
| 4 | |
| 5 | Orchestrates the complete 15-agent hierarchical mesh swarm for claude-flow v3 implementation, coordinating parallel execution across domains while maintaining dependencies and timeline adherence. |
| 6 | |
| 7 | ## Quick Start |
| 8 | |
| 9 | ```bash |
| 10 | # Initialize 15-agent v3 swarm |
| 11 | Task("Swarm initialization", "Initialize hierarchical mesh for v3 implementation", "v3-queen-coordinator") |
| 12 | |
| 13 | # Security domain (Phase 1 - Critical priority) |
| 14 | Task("Security architecture", "Design v3 threat model and security boundaries", "v3-security-architect") |
| 15 | Task("CVE remediation", "Fix CVE-1, CVE-2, CVE-3 vulnerabilities", "security-auditor") |
| 16 | Task("Security testing", "Implement TDD security framework", "test-architect") |
| 17 | |
| 18 | # Core domain (Phase 2 - Parallel execution) |
| 19 | Task("Memory unification", "Implement AgentDB 150x improvement", "v3-memory-specialist") |
| 20 | Task("Integration architecture", "Deep agentic-flow@alpha integration", "v3-integration-architect") |
| 21 | Task("Performance validation", "Validate 2.49x-7.47x targets", "v3-performance-engineer") |
| 22 | ``` |
| 23 | |
| 24 | ## 15-Agent Swarm Architecture |
| 25 | |
| 26 | ### Hierarchical Mesh Topology |
| 27 | ``` |
| 28 | 👑 QUEEN COORDINATOR |
| 29 | (Agent #1) |
| 30 | │ |
| 31 | ┌────────────────────┼────────────────────┐ |
| 32 | │ │ │ |
| 33 | 🛡️ SECURITY 🧠 CORE 🔗 INTEGRATION |
| 34 | (Agents #2-4) (Agents #5-9) (Agents #10-12) |
| 35 | │ │ │ |
| 36 | └────────────────────┼────────────────────┘ |
| 37 | │ |
| 38 | ┌────────────────────┼────────────────────┐ |
| 39 | │ │ │ |
| 40 | 🧪 QUALITY ⚡ PERFORMANCE 🚀 DEPLOYMENT |
| 41 | (Agent #13) (Agent #14) (Agent #15) |
| 42 | ``` |
| 43 | |
| 44 | ### Agent Roster |
| 45 | | ID | Agent | Domain | Phase | Responsibility | |
| 46 | |----|-------|--------|-------|----------------| |
| 47 | | 1 | Queen Coordinator | Orchestration | All | GitHub issues, dependencies, timeline | |
| 48 | | 2 | Security Architect | Security | Foundation | Threat modeling, CVE planning | |
| 49 | | 3 | Security Implementer | Security | Foundation | CVE fixes, secure patterns | |
| 50 | | 4 | Security Tester | Security | Foundation | TDD security testing | |
| 51 | | 5 | Core Architect | Core | Systems | DDD architecture, coordination | |
| 52 | | 6 | Core Implementer | Core | Systems | Core module implementation | |
| 53 | | 7 | Memory Specialist | Core | Systems | AgentDB unification | |
| 54 | | 8 | Swarm Specialist | Core | Systems | Unified coordination engine | |
| 55 | | 9 | MCP Specialist | Core | Systems | MCP server optimization | |
| 56 | | 10 | Integration Architect | Integration | Integration | agentic-flow@alpha deep integration | |
| 57 | | 11 | CLI/Hooks Developer | Integration | Integration | CLI modernization | |
| 58 | | 12 | Neural/Learning Dev | Integration | Integration | SONA integration | |
| 59 | | 13 | TDD Test Engineer | Quality | All | London School TDD | |
| 60 | | 14 | Performance Engineer | Performance | Optimization | Benchmarking validation | |
| 61 | | 15 | Release Engineer | Deployment | Release | CI/CD and v3.0.0 release | |
| 62 | |
| 63 | ## Implementation Phases |
| 64 | |
| 65 | ### Phase 1: Foundation (Week 1-2) |
| 66 | **Active Agents**: #1, #2-4, #5-6 |
| 67 | ```typescript |
| 68 | const phase1 = async () => { |
| 69 | // Parallel security and architecture foundation |
| 70 | await Promise.all([ |
| 71 | // Security domain (critical priority) |
| 72 | Task("Security architecture", "Complete threat model and security boundaries", "v3-security-architect"), |
| 73 | Task("CVE-1 fix", "Update vulnerable dependencies", "security-implementer"), |
| 74 | Task("CVE-2 fix", "Replace weak password hashing", "security-implementer"), |
| 75 | Task("CVE-3 fix", "Remove hardcoded credentials", "security-implementer"), |
| 76 | Task("Security testing", "TDD London School security framework", "test-architect"), |
| 77 | |
| 78 | // Core architecture foundation |
| 79 | Task("DDD architecture", "Design domain boundaries and structure", "core-architect"), |
| 80 | Task("Type modernization", "Update type system for v3", "core-implementer") |
| 81 | ]); |
| 82 | }; |
| 83 | ``` |
| 84 | |
| 85 | ### Phase 2: Core Systems (Week 3-6) |
| 86 | **Active Agents**: #1, #5-9, #13 |
| 87 | ```typescript |
| 88 | const phase2 = async () => { |
| 89 | // Parallel core system implementation |
| 90 | await Promise.all([ |
| 91 | Task("Memory unification", "Implement AgentDB with 150x-12,500x improvement", "v3-memory-specialist"), |
| 92 | Task("Swarm coordination", "Merge 4 coordination systems into unified engine", "swarm-specialist"), |
| 93 | Task("MCP optimization", "Optimize MCP server performance", "mcp-specialist"), |
| 94 | Task("Core implementation", "Implement DDD modular architecture", "core-implementer"), |
| 95 | Task("TDD core tests", "Comprehensive test coverage for core systems", "test-architect") |
| 96 | ]); |
| 97 | }; |
| 98 | ``` |
| 99 | |
| 100 | ### Phase 3: Integration (Week 7-10) |
| 101 | **Active Agents**: #1, #10-12, #13-14 |
| 102 | ```typescript |
| 103 | const phase3 = async |