From conductor
Orchestrate Claude Code workers with tmux. Use when the user asks to spawn workers, manage tmux panes/sessions, coordinate parallel tasks, run multiple AI agents, monitor worker progress, or use text-to-speech announcements. Also use when you see conductor MCP tools available (spawn_worker, smart_spawn, send_keys, etc.).
How this skill is triggered — by the user, by Claude, or both
Slash command
/conductor:conductorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to the conductor MCP server for orchestrating Claude Code workers via tmux.
You have access to the conductor MCP server for orchestrating Claude Code workers via tmux.
The most common workflow is spawning workers for parallel tasks:
# Spawn a single worker in a visible pane
smart_spawn(issue_id="task-name", project_dir="/path/to/project")
# Spawn multiple workers at once
smart_spawn_wave(issue_ids="task-1,task-2,task-3", project_dir="/path/to/project")
# Use a different AI agent
smart_spawn(issue_id="review", project_dir="/path", profile="codex")
Always use send_keys to communicate with workers. It handles timing automatically:
send_keys(session="task-name", keys="your prompt here") # submit=True by default
send_keys(session="task-name", keys="partial text", submit=False) # type without Enter
list_workers() # See all active sessions
get_context_percent("task-name") # Check context usage
get_workers_with_capacity(60) # Find workers below 60% context
capture_worker_output("task-name") # See recent terminal output
Use profile="name" with smart_spawn to launch different tools:
| Profile | Tool |
|---|---|
claude | Claude Code (default) |
codex | OpenAI Codex CLI |
gemini | Google Gemini CLI |
copilot | GitHub Copilot CLI |
tfe | Terminal file explorer |
lazygit | Terminal git UI |
For detailed tool signatures, workflows, and hotkeys, see:
references/tool-reference.md — all 41 tools with parametersreferences/workflows.md — common multi-step patternsreferences/hotkeys.md — tmux keybinding cheat sheetnpx claudepluginhub ggprompts/conductor-mcp --plugin conductorLaunches and manages Claude Code, Codex, or Pi worker sessions as sub-processes. Useful for project managers that delegate tasks, assign work, monitor progress, review tool calls, and collect results via the `csd` CLI.
Spawns and manages persistent tmux-based Claude Code CLI sessions with bidirectional communication. Subcommands: spawn, send, read, status, list, kill for parallel peer orchestration and multi-turn steering.
Orchestrates multi-agent coding tasks via Claude DevFleet — plan projects, dispatch parallel agents in isolated worktrees, monitor progress, and read structured reports.