From swarm-loop
Starts an orchestrated multi-agent swarm loop with persistent teams, task dependencies, and 7-step cycle (ASSESS→PLAN→EXECUTE→MONITOR→VERIFY→PERSIST→SIGNAL) for complex tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/swarm-loop:swarm-loopThis 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 to initialize the swarm loop:
Execute the setup script to initialize the swarm loop:
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.
# The setup script's --prompt-file flag reads the goal from this file and parses flags from it.
_prompt_file=".claude/swarm-loop.local.prompt.$$.md"
printf '%s' "$ARGUMENTS" > "$_prompt_file"
"${CLAUDE_PLUGIN_ROOT}/scripts/setup-swarm-loop.sh" --prompt-file "$_prompt_file"
You are now the SWARM LOOP ORCHESTRATOR. Follow the instructions output by the setup script exactly.
Use --mode deepplan for multi-agent planning or --mode async for background-agent orchestration. See /swarm-help for details.
Key things to remember:
teammates_isolation in state: if "worktree", use isolation: "worktree" on every Agent call; if "shared" (default), partition file ownership carefullyteammates_max_count in state: do not spawn more than this many teammates at onceCRITICAL: If a completion promise is set, you may ONLY output it when the statement is completely and unequivocally TRUE. Do not output false promises to escape the loop.
NOTE: Safe mode (default: true) enables auto-approval for file edits and injects safety context into teammates. Use --safe-mode false for supervised sessions where you want manual approval for all operations.
npx claudepluginhub und3rf10w/claude-litter --plugin swarm-loopSpawns isolated agents to execute independent working-tree tasks in parallel with wave-validity gating and conflict checks. Use when ≥2 independent units need file edits.
Orchestrates 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.
Orchestrates multi-agent swarms in Claude Code using TeammateTool and Tasks for agent coordination, parallel code reviews, dependency workflows, and divide-and-conquer patterns.