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.238 Home All releases olderv2.1.237 v2.1.239newer
Claude Code v2.1.238

Files changed during a turn are uploaded to the cloud session worker

You'll notice
Useful3 Signal4
Cloud Sessions not in their notes

Cloud sessions now upload files you changed during a turn back to the session worker.

/outputs
What

Cloud sessions gained an outputs push: after a turn, files under the outputs root that were modified since the turn started are read and POSTed to the session worker under a /outputs path. It runs only when a remote session id is set and the environment is anthropic_cloud, and the server can switch it off.

Details
  • Symlinks and files with more than one hard link are skipped; each file is capped at 20 MB.
  • Content is sent base64-encoded, authenticated with a session JWT.
  • A 501 or 404 from the worker is treated as the feature being off and aborts the whole pass.
  • Requires CLAUDE_CODE_REMOTE_SESSION_ID and CLAUDE_CODE_ENVIRONMENT_KIND set to anthropic_cloud; completion is reported as tengu_outputs_push_completed.
Evidence

tengu_outputs_push_completed

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

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v2.1.238 →