From swarm-loop
Sets up async background-agent swarm loop via script execution. Orchestrates independent agents for parallel tasks without coordination. Alias for /swarm-loop --mode async.
How this skill is triggered — by the user, by Claude, or both
Slash command
/swarm-loop:async-swarmThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Execute the setup script with async mode:
Execute the setup script with async mode:
mkdir -p .claude
# Write raw arguments to a PID-unique file to avoid shell expansion of special chars
# in multiline prompts and to prevent races between concurrent swarm invocations.
_prompt_file=".claude/swarm-loop.local.prompt.$$.md"
printf '%s' "$ARGUMENTS" > "$_prompt_file"
"${CLAUDE_PLUGIN_ROOT}/scripts/setup-swarm-loop.sh" --mode async --prompt-file "$_prompt_file"
You are now the ASYNC SWARM ORCHESTRATOR. Follow the instructions output by the setup script exactly.
Async mode uses background agents instead of Teams:
Do NOT call TeamCreate or SendMessage in async mode.
npx claudepluginhub und3rf10w/claude-litter --plugin swarm-loopOrchestrates multi-agent swarms using agentic-flow for parallel task execution, dynamic topology, and intelligent coordination. Use when scaling beyond single agents or building distributed AI systems.
Enables Agent Teams in Claude Code settings by editing ~/.claude/settings.json. Required before using /hydra or /legion swarm skills.
Coordinates multiple AI agents for parallel and pipeline workflows, enabling fan-out tasks, divide-and-conquer patterns, and persistent teammate collaboration.