swarm-advanced

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

Updated Jul 16, 2026
One-click install
npx skills add https://github.com/optimaxin/Tredev_Gems --skill swarm-advanced-optimaxin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: swarm-advanced
Source: https://github.com/optimaxin/Tredev_Gems/tree/main/.claude/skills/swarm-advanced
Command: npx skills add https://github.com/optimaxin/Tredev_Gems --skill swarm-advanced-optimaxin

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires claude-flow.

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, coordinating, and monitoring agent swarms using Claude Flow MCP tools and 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: Spawn specialized agents (researchers, coders, testers, analysts) and execute tasks in parallel with memory persistence and state snapshots. - Fault Tolerance & Learning: Apply auto-recovery strategies, neural pattern training, and performance monitoring to keep swarms healthy. - Use Case: Spin up a hierarchical development swarm with an architect, backend and frontend developers, testers, and a reviewer to design, implement, test, and deploy a REST API in coordinated phases. ## Quick Start Initialize a mesh swarm with six agents and orchestrate a parallel research task on a topic of your choice.

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 Claude Flow?

Install claude-flow via npm, add the MCP server, then call swarm_init with a topology like mesh or hierarchical. Next spawn typed agents with agent_spawn and coordinate work using task_orchestrate or parallel_execute.

Which swarm topology should I use for development vs testing?

Use hierarchical topology for development since it provides a clear coordinator and sequential workflow support. Use star topology for testing because it centralizes control while running parallel validation across testers.

Can Claude Flow swarms run tasks in parallel?

Yes, parallel_execute runs independent tasks concurrently across spawned agents, and batch_process handles multiple test suites or items at once. Dependent tasks should use sequential orchestration with declared dependencies.

How do I persist swarm state across sessions?

Use memory_usage with namespaces and TTL values to store findings, memory_persist for cross-session state, and state_snapshot to create checkpoints. Snapshots can be restored later with context_restore.

What happens when a swarm agent fails during execution?

Configure daa_fault_tolerance with an auto-recovery strategy so agents recover automatically. You can also check swarm_status, run error_analysis on logs, and retry failed tasks with a sequential fallback strategy.