swarm-advanced

Orchestrates multi-agent swarms for research, development, testing, and analysis workflows.

Updated Feb 17, 2026
One-click install
npx skills add https://github.com/derbalimajd04-dot/al-wasat --skill swarm-advanced-derbalimajd04-dot
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: swarm-advanced
Source: https://github.com/derbalimajd04-dot/al-wasat/tree/main/.agents/skills/swarm-advanced
Command: npx skills add https://github.com/derbalimajd04-dot/al-wasat --skill swarm-advanced-derbalimajd04-dot

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multiple AI agents across complex tasks like research, full-stack development, and testing requires manual orchestration, which is error-prone and hard to scale. This Skill provides structured patterns for initializing swarm topologies, spawning specialized agents, and running parallel or sequential workflows through MCP tools or CLI commands. ## Core Features & Use Cases - Swarm Topologies: Configure mesh, hierarchical, star, or ring topologies matched to research, development, testing, or pipeline workflows. - Parallel Orchestration: Execute independent tasks concurrently with agent specialization, memory namespaces, and state snapshots. - Fault Tolerance & Monitoring: Apply auto-recovery strategies, health checks, metrics collection, and bottleneck analysis for long-running swarms. - Use Case: Spin up a six-agent research swarm with web and academic researchers, analysts, and a report writer to gather sources, validate findings, and generate a structured research report. ## Quick Start Initialize a mesh swarm with six agents and orchestrate a parallel research task on a topic of your choice using the Codex Flow MCP tools.

Frequently Asked Questions about swarm-advanced

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

FAQPage Schema
How do I set up a multi-agent swarm with Codex Flow?▼

Initialize a swarm with swarm_init specifying a topology and max agents, then spawn specialized agents with agent_spawn and orchestrate work via task_orchestrate. Alternatively, run npx Codex-flow swarm with strategy and mode flags from the CLI.

Which swarm topology should I use for research vs development?▼

Use mesh topology for research and analysis since agents communicate peer-to-peer. Use hierarchical topology for development workflows needing a coordinator, star topology for centralized testing, and ring topology for sequential pipeline processing.

Can I run swarm tasks in parallel with MCP tools?▼

Yes, parallel_execute runs independent tasks concurrently across spawned agents. Use sequential orchestration only when tasks have dependencies, and monitor execution with swarm_monitor at a set interval.

How do I persist swarm state across sessions?▼

Use memory_persist with a session ID, organize data with memory namespaces and TTL values, and create state snapshots with state_snapshot. You can restore later via context_restore and back up memory stores to a file path.

Why are my swarm agents not coordinating properly?▼

Coordination failures usually stem from wrong topology selection, missing memory configuration, or disabled monitoring. Verify the topology matches your workflow, check memory namespaces, and enable swarm_monitor to observe agent health.

What are the limitations of parallel swarm execution?▼

Parallel execution fails when tasks have hidden dependencies, resource limits are exceeded, or error handling is absent. Identify truly independent tasks first, implement fault tolerance with auto-recovery, and analyze bottlenecks before scaling agent count.