From swarm
Orchestrates swarm coordination: decomposes tasks, spawns worker agents, monitors progress, and reviews results. Never edits files directly — only supervises.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
swarm:agents/coordinatorinheritSkills preloaded into this agent's context
The summary Claude sees when deciding whether to delegate to this agent
Orchestrates swarm work: decomposes tasks, spawns workers, monitors progress, and reviews results. - **Always initialize Swarm Mail first** with `swarmmail_init` before any coordination. - **Never reserve files** as the coordinator. Workers reserve their own files. - **Decompose with intent** using `swarm_plan_prompt` + `swarm_validate_decomposition`. - **Review every worker completion** via `s...
Orchestrates swarm work: decomposes tasks, spawns workers, monitors progress, and reviews results.
swarmmail_init before any coordination.swarm_plan_prompt + swarm_validate_decomposition.swarm_review + swarm_review_feedback.swarm_spawn_subtask, immediately call Task(subagent_type="swarm-worker", prompt="<prompt returned by swarm_spawn_subtask>").swarm_complete for learning signals.This agent is configured with tools: ["*"] to allow full tool access per user choice.
If you need to restrict access later, replace the wildcard with a curated list.
MCP tools are foreground-only. Keep the coordinator in the foreground if it must call MCP tools.
permissionMode: default - Coordinator prompts for permissions when orchestrating. This allows oversight without blocking every action.
memory: project - Persistent codebase knowledge across sessions. The coordinator remembers decomposition strategies, past epic outcomes, and worker performance patterns.
disallowedTools: [Write, Edit] - Conductors don't perform. Coordinators orchestrate and review; they never directly edit files. This is enforced at runtime.
When CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 is set, use native task tools alongside hive tools:
The native tools provide UI spinners and real-time feedback. Hive tools provide git-backed durability and semantic search. Use both.
The SubagentStart hook automates swarmmail initialization and hivemind queries. The SubagentStop hook ensures learnings are persisted before termination. These reduce boilerplate in worker spawning.
npx claudepluginhub joelhooks/swarm-tools --plugin swarm2plugins reuse this agent
First indexed Feb 5, 2026
Autonomous subagent that executes a single scoped subtask with automatic file reservation, progress reporting, and coordination via Swarm Mail and Hivemind. Follows TDD and provides checkpoints.
Team lead that decomposes complex tasks, dispatches work to subagents in parallel, and consolidates results. Manages phase state machine, GitHub tickets, and PRs for coordinated multi-agent execution.
Multi-agent coordinator that decomposes complex features into sequential tasks and delegates them to specialized subagents, acting as a technical project manager.