Swarm Orchestration

Orchestrate multi-agent swarms with agentic-flow for parallel task execution and coordination.

Updated Aug 18, 2026
One-click install
npx skills add https://github.com/wandreandrade2018-maker/claude-config --skill swarm-orchestration-wandreandrade2018-maker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Swarm Orchestration
Source: https://github.com/wandreandrade2018-maker/claude-config/tree/main/.claude/skills/swarm-orchestration
Command: npx skills add https://github.com/wandreandrade2018-maker/claude-config --skill swarm-orchestration-wandreandrade2018-maker

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires agentic-flow.

What problem does it solve? Coordinating multiple AI agents on complex tasks requires manual task distribution, synchronization, and failure handling, which becomes unmanageable as agent count grows. ## Core Features & Use Cases - Topology Management: Configure mesh, hierarchical, or adaptive swarm topologies to match task structure and coordination needs. - Task Orchestration: Execute tasks in parallel, sequential pipelines, or adaptive modes with automatic work distribution and load balancing. - Shared Memory & Resilience: Share state across agents via swarm memory and handle failures with retries, exponential backoff, and task reassignment. - Use Case: Building a REST API with a team of agents—spawn a coder, tester, and reviewer, orchestrate them in parallel, and share the API schema through swarm memory so every agent works from the same context. ## Quick Start Initialize a mesh swarm with agentic-flow, spawn coder and tester agents, and orchestrate the task of building a REST API in parallel mode.

Frequently Asked Questions about Swarm Orchestration

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate multiple AI agents with agentic-flow?

Initialize a swarm with npx agentic-flow hooks swarm-init, spawn agents with agent-spawn, then run task-orchestrate with your task description and execution mode. The swarm distributes work across agents automatically.

What swarm topology should I use for multi-agent tasks?

Use mesh for peer-to-peer collaboration among equal agents, hierarchical for centralized coordination with a queen agent directing workers, and adaptive when you want the swarm to switch topology based on task complexity.

What are the requirements for running agentic-flow swarms?

You need agentic-flow version 1.5.11 or higher and Node.js 18 or higher. Familiarity with distributed systems concepts is helpful but not required.

How do agents share state in a swarm?

Agents share state through swarm memory using swarm.memory.store to save data under a key and swarm.memory.retrieve to read it. This lets all agents work from shared context like API schemas or task results.

Why are my swarm agents not coordinating properly?

Coordination failures usually stem from missing memory access or disabled hooks. Verify agents can read and write swarm memory, and enable pre-task and post-task hooks for automatic synchronization.

How does a swarm handle agent failures?

Configure resiliency with swarm.setResiliency to set retry policies with exponential backoff and a fallback strategy such as reassigning the failed task to another agent.