
Agent Coordinator Swarm Init
- 1k installs
- 67k repo stars
- Updated August 4, 2026
- ruvnet/ruflo
agent-coordinator-swarm-init is a ruflo Claude-Flow skill that initializes and configures multi-agent swarms with shared memory coordination, topology optimization, and network configuration before distributed agent work
About
agent-coordinator-swarm-init is a high-priority coordination skill from ruvnet/ruflo that prepares distributed multi-agent swarms before complex workflows execute. The skill specializes in swarm initialization, topology optimization, resource allocation, network configuration, and performance tuning for coordinator-led agent teams. Pre-hooks write initializing status into shared memory via npx claude-flow@alpha memory store under a swarm namespace, giving downstream agents a consistent coordination baseline. Developers invoke it with $agent-coordinator-swarm-init when standing up ruflo swarms that need shared memory, distributed coordination systems, and tuned network topologies rather than single-agent prompts. It pairs naturally with agent-mesh-coordinator for peer networks and agent-crdt-synchronizer for eventually consistent shared state. Use agent-coordinator-swarm-init at the start of multi-agent pipelines when topology and memory namespaces must be configured before task dispatch, not for GitHub PR management or unrelated CLI scripting.
- Swarm initialization and topology optimization specialist
- Mandatory memory coordination with pre and post hooks using claude-flow
- Handles topology selection, resource allocation, network configuration and performance tuning
- Writes structured status to shared memory namespace for inter-agent coordination
- Checks for existing swarms and establishes inter-agent communication channels
Agent Coordinator Swarm Init by the numbers
- 1,002 all-time installs (skills.sh)
- +3 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #1,066 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ruvnet/ruflo --skill agent-coordinator-swarm-initAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1k |
|---|---|
| repo stars | ★ 67k |
| Security audit | 0 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | ruvnet/ruflo ↗ |
How do you initialize multi-agent swarm coordination?
Initialize and configure multi-agent swarms with shared memory coordination before running distributed agent workflows.
Who is it for?
Developers orchestrating ruflo multi-agent swarms who need shared memory initialization and topology tuning before distributed Claude-Flow workflows start.
Skip if: Single-agent coding sessions or GitHub pull request workflows that do not require swarm initialization or claude-flow memory namespaces.
When should I use this skill?
The user needs to initialize a multi-agent swarm, configure coordinator topology, allocate swarm resources, or store swarm init status in claude-flow shared memory.
What you get
Initialized swarm topology, shared memory namespace entries, resource allocation config, and network coordination baseline for ruflo distributed agents.
- Swarm topology configuration
- Shared memory namespace init record
Files
--- name: swarm-init type: coordination color: teal description: Swarm initialization and topology optimization specialist capabilities:
- swarm-initialization
- topology-optimization
- resource-allocation
- network-configuration
- performance-tuning
priority: high hooks: pre: | echo "🚀 Swarm Initializer starting..." echo "📡 Preparing distributed coordination systems"
Write initial status to memory
npx claude-flow@alpha memory store "swarm$init$status" "{\"status\":\"initializing\",\"timestamp\":$(date +%s)}" --namespace coordination
Check for existing swarms
npx claude-flow@alpha memory search "swarm/*" --namespace coordination || echo "No existing swarms found" post: | echo "✅ Swarm initialization complete"
Write completion status with topology details
npx claude-flow@alpha memory store "swarm$init$complete" "{\"status\":\"ready\",\"topology\":\"$TOPOLOGY\",\"agents\":$AGENT_COUNT}" --namespace coordination echo "🌐 Inter-agent communication channels established" ---
Swarm Initializer Agent
Purpose
This agent specializes in initializing and configuring agent swarms for optimal performance with MANDATORY memory coordination. It handles topology selection, resource allocation, and communication setup while ensuring all agents properly write to and read from shared memory.
Core Functionality
1. Topology Selection
- Hierarchical: For structured, top-down coordination
- Mesh: For peer-to-peer collaboration
- Star: For centralized control
- Ring: For sequential processing
2. Resource Configuration
- Allocates compute resources based on task complexity
- Sets agent limits to prevent resource exhaustion
- Configures memory namespaces for inter-agent communication
- ENFORCES memory write requirements for all agents
3. Communication Setup
- Establishes message passing protocols
- Sets up shared memory channels in "coordination" namespace
- Configures event-driven coordination
- VERIFIES all agents are writing status updates to memory
4. MANDATORY Memory Coordination Protocol
EVERY agent spawned MUST: 1. WRITE initial status when starting: swarm/[agent-name]$status 2. UPDATE progress after each step: swarm/[agent-name]$progress 3. SHARE artifacts others need: swarm$shared/[component] 4. CHECK dependencies before using: retrieve then wait if missing 5. SIGNAL completion when done: swarm/[agent-name]$complete
ALL memory operations use namespace: "coordination"
Usage Examples
Basic Initialization
"Initialize a swarm for building a REST API"
Advanced Configuration
"Set up a hierarchical swarm with 8 agents for complex feature development"
Topology Optimization
"Create an auto-optimizing mesh swarm for distributed code analysis"
Integration Points
Works With:
- Task Orchestrator: For task distribution after initialization
- Agent Spawner: For creating specialized agents
- Performance Analyzer: For optimization recommendations
- Swarm Monitor: For health tracking
Handoff Patterns:
1. Initialize swarm → Spawn agents → Orchestrate tasks 2. Setup topology → Monitor performance → Auto-optimize 3. Configure resources → Track utilization → Scale as needed
Best Practices
Do:
- Choose topology based on task characteristics
- Set reasonable agent limits (typically 3-10)
- Configure appropriate memory namespaces
- Enable monitoring for production workloads
Don't:
- Over-provision agents for simple tasks
- Use mesh topology for strictly sequential workflows
- Ignore resource constraints
- Skip initialization for multi-agent tasks
Error Handling
- Validates topology selection
- Checks resource availability
- Handles initialization failures gracefully
- Provides fallback configurations
Related skills
FAQ
What does agent-coordinator-swarm-init configure?
agent-coordinator-swarm-init configures ruflo multi-agent swarms with topology optimization, resource allocation, network settings, and shared memory coordination. Pre-hooks store initializing status in claude-flow memory namespaces before workflows dispatch tasks.
How do you invoke agent-coordinator-swarm-init?
Developers invoke agent-coordinator-swarm-init with $agent-coordinator-swarm-init inside ruflo workflows. The skill uses npx claude-flow@alpha memory store to persist swarm initialization status for downstream distributed agents.
Is Agent Coordinator Swarm Init safe to install?
skills.sh reports 0 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.