product updateAnthropic

Anthropic Adds Cross-Session Messaging to Claude Code, Letting Terminal Instances Communicate Directly

TL;DR

Claude Code sessions running on macOS and Linux can now send messages to one another instead of requiring users to manually copy context between terminals. Anthropic says the feature supports both local and cross-machine communication, though it's not yet available on major cloud platforms.

2 min read
0

Anthropic has added the ability for Claude Code sessions to communicate directly with one another, according to Anthropic's documentation. The feature, available on macOS and Linux, lets one Claude Code instance send a text summary or question to another session without a user manually copying and pasting context between terminals.

How it works

According to Anthropic, communication is bidirectional. A user can ask one session to query another and receive an answer back directly, and Claude can also initiate contact on its own — for example, to flag that a change in one workspace affects work happening in a parallel session.

The documentation cites use cases including sharing insights between sessions, coordinating parallel workflows, and checking status on long-running tasks.

The underlying transport differs by location. When two sessions run on the same machine, messages are exchanged locally. When sessions are on different computers, messages route through Anthropic's servers, and in that cross-machine scenario, only responses are supported rather than full bidirectional messaging initiated from either side.

Availability and restrictions

Administrators can disable the feature entirely through settings, giving enterprise deployments control over whether sessions are permitted to exchange information.

The capability is not available on Amazon Bedrock, Google Cloud's Agent Platform, or Microsoft Foundry, limiting it for now to Anthropic's own Claude Code distribution channels. Anthropic has not disclosed a timeline for extending support to those platforms.

No pricing changes were mentioned alongside the update, and Anthropic did not publish benchmark data tied to this feature, since it is an infrastructure/workflow change rather than a model update.

What this means

Developers increasingly run multiple Claude Code sessions in parallel — one per terminal, feature branch, or repository — and previously had to manually relay context between them, copying error messages, decisions, or status updates by hand. Direct session-to-session messaging removes that friction for a specific but common pattern: multi-agent or multi-terminal coding workflows where one task's outcome affects another.

The local-versus-server routing split is worth noting. Same-machine messaging staying local avoids unnecessary latency and data transit, while the cross-machine, server-routed, response-only design suggests Anthropic is being conservative about what unsolicited cross-machine messages a session can send, likely for security reasons — an agent on one machine probably shouldn't be able to arbitrarily push unprompted instructions to a session on a different machine.

The absence of support on Bedrock, Google Cloud, and Microsoft Foundry means enterprise customers running Claude Code through those managed platforms won't get this capability yet, which could push some power users toward Anthropic's direct offering if cross-session coordination becomes a workflow they rely on. It also signals that Anthropic is iterating on Claude Code's agentic tooling faster than its cloud partners can keep pace with feature parity.

Related Articles

product update

Anthropic Adds Cross-Session Messaging to Claude Code v2.1.224

Claude Code v2.1.224 introduces cross-session messaging, letting separate Claude Code instances on macOS and Linux send each other summaries to coordinate work. The feature does not support approving permissions or executing commands remotely.

product update

Anthropic Makes Claude Code's Auto Mode Default, Cutting Dangerous Command Approvals by 75 Percentage Points

Anthropic will enable Auto Mode by default in Claude Code for Pro, Max, and Team plans starting August 14, 2026. Internal testing with 1,053 paid users found the classifier-based system caught 89% of dangerous commands compared to 13.6% caught by human reviewers, while producing 25% more pull requests.

product update

Anthropic Sets Claude Code Auto Mode as Default Starting August 14

Anthropic will switch Claude Code's default permission setting to auto mode on August 14 for Pro, Max, and Team users. The company says its safety classifier caught 89% of dangerous commands in testing, compared to 13.6% for human reviewers, and will no longer charge extra tokens for the classifier itself.

product update

GitHub Publishes Guide to Slash Commands in the Copilot App

GitHub has published a guide covering slash commands available in the GitHub Copilot app, designed to extend Copilot beyond simple chat into planning, team collaboration, task automation, and workflow customization. The guide targets developers looking to get more structured, repeatable value out of Copilot's interface.

Comments

Loading...