Coordinate with other AI agents running in tmux panes. Use this skill when you need to delegate tasks, request reviews, or collaborate with agents like Codex, Gemini, or other Claude instances.
This skill inherits all available tools. When active, it can use any tool Claude has access to.
You are working in a multi-agent tmux environment. Use the tmux-team CLI to communicate with other AI agents running in different panes.
# Send and wait for response (recommended)
tmux-team talk codex "your message" --wait
tmux-team talk gemini "your message" --wait --timeout 120
# Broadcast to all agents
tmux-team talk all "message for everyone" --wait
# List configured agents
tmux-team list
The --wait flag blocks until the agent responds, returning the response directly:
tmux-team talk codex "Review this authentication code" --wait
# Response is returned directly - no need for a separate check command
--wait - it's more token-efficient than polling with check--timeout 300 for complex tasks that need more time--delay 5 to add delay between messages (rate limiting)tmux-team learn for a comprehensive guide