Skip to content
Development
Skill

/v3-swarm-coordination

15-agent hierarchical mesh coordination for v3 implementation. Orchestrates parallel execution across security, core, and integration domains following 10 ADRs with 14-week timeline.

From plugin
agentic-flow
78835 skills103 agents133 commands2 MCP
Install
$ npx -y skills add ruvnet/agentic-flow --skill v3-swarm-coordination --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition โ†’
  • You can call itInvoke it directly when you want it.
  • Slash command/v3-swarm-coordination

Context preview

The summary Claude sees to decide when to auto-load this skill.

15-agent hierarchical mesh coordination for v3 implementation. Orchestrates parallel execution across security, core, and integration domains following 10 ADRs with 14-week timeline.

SKILL.md

v3-swarm-coordination.SKILL.md
name: "V3 Swarm Coordination"
description: "15-agent hierarchical mesh coordination for v3 implementation. Orchestrates parallel execution across security, core, and integration domains following 10 ADRs with 14-week timeline."

V3 Swarm Coordination

What This Skill Does

Orchestrates the complete 15-agent hierarchical mesh swarm for claude-flow v3 implementation, coordinating parallel execution across domains while maintaining dependencies and timeline adherence.

Quick Start

# Initialize 15-agent v3 swarm
Task("Swarm initialization", "Initialize hierarchical mesh for v3 implementation", "v3-queen-coordinator")

# Security domain (Phase 1 - Critical priority)
Task("Security architecture", "Design v3 threat model and security boundaries", "v3-security-architect")
Task("CVE remediation", "Fix CVE-1, CVE-2, CVE-3 vulnerabilities", "security-auditor")
Task("Security testing", "Implement TDD security framework", "test-architect")

# Core domain (Phase 2 - Parallel execution)
Task("Memory unification", "Implement AgentDB 150x improvement", "v3-memory-specialist")
Task("Integration architecture", "Deep agentic-flow@alpha integration", "v3-integration-architect")
Task("Performance validation", "Validate 2.49x-7.47x targets", "v3-performance-engineer")

15-Agent Swarm Architecture

Hierarchical Mesh Topology

                    ๐Ÿ‘‘ QUEEN COORDINATOR
                         (Agent #1)
                             โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        โ”‚                   โ”‚                    โ”‚
   ๐Ÿ›ก๏ธ SECURITY         ๐Ÿง  CORE              ๐Ÿ”— INTEGRATION
   (Agents #2-4)       (Agents #5-9)        (Agents #10-12)
        โ”‚                   โ”‚                    โ”‚
        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                             โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        โ”‚                   โ”‚                    โ”‚
   ๐Ÿงช QUALITY          โšก PERFORMANCE        ๐Ÿš€ DEPLOYMENT
   (Agent #13)         (Agent #14)          (Agent #15)

Agent Roster

| ID | Agent | Domain | Phase | Responsibility | | --- | --------------------- | ------------- | ------------ | ------------------------------------- | | 1 | Queen Coordinator | Orchestration | All | GitHub issues, dependencies, timeline | | 2 | Security Architect | Security | Foundation | Threat modeling, CVE planning | | 3 | Security Implementer | Security | Foundation | CVE fixes, secure patterns | | 4 | Security Tester | Security | Foundation | TDD security testing | | 5 | Core Architect | Core | Systems | DDD architecture, coordination | | 6 | Core Implementer | Core | Systems | Core module implementation | | 7 | Memory Specialist | Core | Systems | AgentDB unification | | 8 | Swarm Specialist | Core | Systems | Unified coordination engine | | 9 | MCP Specialist | Core | Systems | MCP server optimization | | 10 | Integration Architect | Integration | Integration | agentic-flow@alpha deep integration | | 11 | CLI/Hooks Developer | Integration | Integration | CLI modernization | | 12 | Neural/Learning Dev | Integration | Integration | SONA integration | | 13 | TDD Test Engineer | Quality | All | London School TDD | | 14 | Performance Engineer | Performance | Optimization | Benchmarking validation | | 15 | Release Engineer | Deployment | Release | CI/CD and v3.0.0 release |

Implementation Phases

Phase 1: Foundation (Week 1-2)

**Active Agents**: #1, #2-4, #5-6

const phase1 = async () => {
  // Parallel security and architecture foundation
  await Promise.all([
    // Security domain (critical priority)
    Task(
      "Security architecture",
      "Complete threat model and security boundaries",
      "v3-security-architect",
    ),
    Task("CVE-1 fix", "Update vulnerable dependencies", "security-implementer"),
    Task("CVE-2 fix", "Replace weak password hashing", "security-implementer"),
    Task("CVE-3 fix", "Remove hardcoded credentials", "security-implementer"),
    Task(
      "Security testing",
      "TDD London School security framework",
      "test-architect",
    ),

    // Core architecture foundation
    Task(
      "DDD architecture",
      "Design domain boundaries and structure",
      "core-architect",
    ),
    Task("Type modernization", "Update type system for v3", "core-implementer"),
  ]);
};

Phase 2: Core Systems (Week 3-6)

**Active Agents**: #1, #5-9, #13

const phase2 = async () => {
  // Parallel core system implementation
  await Promise.all([
    Task(
      "Memory unification",
      "Implement AgentDB with 150x-12,500x improvement",
      "v3-memory-specialist",
    ),
    Task(
      "Swarm coordination",
      "Merge 4 coordination systems into unified engine",
      "swarm-specialist",
    ),
    Task(
      "MCP optimization",
      "Optimize MCP server performance",
      "mcp-specialist",
    ),
    Task(
      "Core implementation",
      "Implement DDD modular architecture",
      "core-implementer",
    ),
    Task(
      "TDD core tests",
      "Comprehensive test coverage for core systems",
      "test-architect",
    ),
  ]);
};

Phase 3: Integration (Week 7-10)

**Active Agents**: #1, #10-12, #13-14

const phase3 = async () => {
  // Parallel integration and optimization
  await Promise.all([
    Task(
      "agentic-flow integration",
      "Eliminate 10,000+ duplicate lines",
      "v3-integration-architect",
    ),
    Task(
      "CLI modernization",
      "Enhance CLI with hooks system",
Read more
Ships withagentic-flow

Production-ready AI agent orchestration with 66 self-learning agents, 213 MCP tools, and autonomous multi-agent swarms.

Get the whole plugin

Other skills on agentic-flow.