send_message
Send async messages to other Claude Code sessions for inter-session communication. Optionally push the message directly into a live session's terminal.
Instructions
Send an async message to another Claude Code session. It lands in that session's intercom inbox; the recipient reads it with read_messages on its next turn. Set deliver_live=true to also inject it immediately into the recipient's live tmux pane (this interrupts whatever it's doing).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | recipient session id or 8-char prefix (from list_sessions) | |
| text | Yes | the message body | |
| deliver_live | No | if the recipient is live, also push the message into its terminal now |