Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.210 Home All releases olderv2.1.209 v2.1.211newer
Claude Code v2.1.210

SendFile — Send Files Between Claude Code Sessions

What

A new SendFile tool lets Claude send one or more local files to another Claude Code session — a peer session on the same machine or a Remote Control / cloud session on a different machine.

Details
  • Local sessions are addressed by name or by explicit uds:<socket> address. Cloud sessions use bridge:<session-id>.
  • Files are verified with a SHA-256 digest after transfer, so the receiver can confirm integrity.
  • Same-machine transfers travel over a Unix domain socket (no data leaves the host). Cross-machine transfers upload file contents through Anthropic servers; this path can be restricted with the isolatePeerMachines setting.
  • An optional message parameter delivers a short note alongside the files.
  • Agents within the same session are explicitly excluded — they already share the filesystem, so there is nothing to transfer.
  • When isolatePeerMachines is enabled, cross-machine sends require explicit approval before anything is uploaded.
  • To find available peer sessions, use the existing session-listing tool: Use <ListSessions> to see the sessions you can send files to.
Evidence

Tool definition with name "SendFile" (search for "Send one or more files to another Claude Code session")

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.210 →