Multi-agent orchestration tools for Claude Code.
npx claudepluginhub twaldin/tmux-orchestratorMulti-agent teams for Claude Code. Spawn agents in isolated tmux windows with their own context, tools, and git worktrees. No frameworks — just bash and tmux.
Give your agents Discord channels. Routes Discord messages to tmux agents and back.
Other tools give you an agent framework. This gives you tmux windows.
A Claude Code plugin for managing multi-agent teams in tmux. Spawn Claude Code agents in isolated windows with their own context, git worktrees, and task injection. Two-way communication via tmux send-keys. No daemons, no APIs, no polling — the window list is the registry.
/tmux-orchestrator:orchestrate (reactive management) and /tmux-orchestrator:persistent (always-on orchestrator)watch_agents unblocks stuck permission prompts across all agent panes# In your Claude Code settings.json
{
"enabledPlugins": {
"tmux-orchestrator": {
"source": "github:twaldin/tmux-orchestrator"
}
}
}
{
"enabledPlugins": {
"tmux-orchestrator@local": {
"source": "local:/path/to/tmux-orchestrator"
}
}
}
Add to your shell profile:
export TMUX_ORCHESTRATOR_HOME="$HOME/tmux-orchestrator"
export PATH="$TMUX_ORCHESTRATOR_HOME/scripts:$PATH"
Note: standalone mode only adds the scripts to PATH. The hooks (auto-approval on Stop, completion reminder) and slash commands won't be active unless you also add the plugin to settings.json as shown above.
claude)git and gh (for spawn_coder)/tmux-orchestrator:orchestrateYou're now an orchestrator. Spawn your first agent:
spawn_teammate researcher ~/my-project \
--task "Research the top 3 Rust async runtimes. Return findings via message_parent."
When it's done, it messages you: [RESEARCHER]: Done. Findings in research-rust-async.md.
Then: kill_teammate researcher
All scripts live in scripts/ and are added to spawned agents' PATH automatically.
| Script | Usage |
|---|---|
spawn_teammate | Spawn agent in named tmux window |
kill_teammate | Kill agent, restore CLAUDE.md, close window |
send_message | Send message to agent (orchestrator → agent) |
message_parent | Send message to orchestrator (agent → orchestrator) |
list_teammates | List all agent windows with status |
watch_agents | Auto-approve stuck permission prompts |
compact_self | Agent self-compaction: write state, /clear, resume |
spawn_coder | Convenience: worktree + GitHub issue context |
agent_status | Show context window usage and liveness for all agents |
capture_pane | Capture recent output from an agent's pane |
reconcile_agents | Detect dead agents; --fix respawns dead persistent agents |
spawn_teammate <name> <dir> [--model M] [--lifecycle L] [--task T] [--worktree] [--type coder]
--model opus|sonnet|haiku — model tier (default: sonnet)--lifecycle ephemeral|persistent — whether agent exits when done (default: ephemeral)--task "..." — first message sent to agent--worktree — create git worktree for file isolation--type coder — add PR workflow + git rules to injectionspawn_coder <issue_number> [--dir <project_dir>] [--model M]
Fetches GitHub issue, creates worktree, spawns coder with full context.
The core product. Teaches you:
Advanced. Teaches you how to run as an always-on orchestrator:
Default. Spawned for one task, exits when done. Gets completion protocol injection (message_parent + /exit).
spawn_teammate analyst ~/data \
--task "Analyze sales-q1.csv. Write findings to analysis.md. message_parent when done."
--type coder)Ephemeral + PR workflow + git rules. Designed for worktree-isolated code changes.
spawn_teammate fix-auth ~/project --type coder --worktree \
--task "Fix the JWT expiry bug in auth/token.ts. Tests in auth/token.test.ts."
--lifecycle persistent)Long-running. Has its own permanent directory with state.md and crons.md. Self-compacts independently.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations