Claude Code can now pass messages between independent sessions, which makes parallel work less dependent on copy-pasting status from one terminal to another. The design has an important constraint, a message is text that Claude writes for another session, never the sender’s full conversation history or files.
Anthropic documents practical uses such as sharing a breaking change, coordinating worktrees, and reporting the result of a long-running migration or test. Sessions on the same machine can exchange messages, cross-machine communication is reply-only. The feature requires a current supported Claude Code version and is not available in every provider or platform configuration.
Messages do not become authority
The receiving session treats a peer message as untrusted instruction, not user consent. It cannot approve a permission request, change configuration, or execute a slash command embedded in the message. If acting on the message needs a permission, the usual prompt still appears. Teams can also hold or refuse inbound messages, require approval for messages leaving the machine, or deny the sending and discovery tools.
Where Auto mode fits
Auto mode is a separate permissions mode that uses classifiers to review actions before they run, reducing the pressure to approve every tool call manually. Anthropic is explicit that it lowers risk compared with skipping all permission checks, it does not eliminate risk. For high-impact work—production access, destructive commands, secrets, payments, or infrastructure—sandboxing, least privilege, tests, and human review remain necessary.
A sound team pattern
- Use messaging for findings, decisions, and bounded status updates.
- Keep work in separate worktrees with explicit ownership.
- Set inbound controls deliberately for unattended sessions.
- Keep environment secrets and deploy permissions out of routine agent sessions.
- Require a human gate before irreversible or external actions.
Bottom line
Session messaging makes a multi-session workflow more coherent, but it should move context—not trust. Auto mode can reduce approval fatigue, but it is not a license to remove your actual safety boundaries.