How this skill is triggered — by the user, by Claude, or both
Slash command
/ruflo-swarm:swarm-init [--topology hierarchical|mesh|ring][--topology hierarchical|mesh|ring]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Initialize a hierarchical swarm for coordinated multi-agent work.
Initialize a hierarchical swarm for coordinated multi-agent work.
Via MCP: mcp__claude-flow__swarm_init({ topology: "hierarchical", maxAgents: 8, strategy: "specialized" })
Or via CLI:
npx @claude-flow/cli@latest swarm init --topology hierarchical --max-agents 8 --strategy specialized
Then create a Claude Code team via TeamCreate and spawn agents using the Agent tool with isolation: "worktree" for git-safe parallel work. Use SendMessage for inter-agent coordination.
For larger teams (10+), use hierarchical-mesh topology:
npx @claude-flow/cli@latest swarm init --topology hierarchical-mesh --max-agents 15 --strategy specialized
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub digitalcrest01/ruflow --plugin ruflo-swarm