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.242 Home All releases olderv2.1.241 v2.1.243newer
Claude Code v2.1.242

Cloud sessions can be seeded from a bundle of your local commits

You'll notice
Useful3 Signal3
Cloud Sessions

A cloud session can start from your local commits instead of always pulling the remote copy.

What

When your checkout agrees with the pinned remote commit, a cloud session can now be started from a git bundle of your local HEAD instead of refusing and falling back to the remote's copy. What decides whether this is offered at all is set outside the code paths visible here, and it degrades cleanly to the old seeding when unavailable.

Details
  • The seed carries the pinned commit, your local head commit, the agreed tree and a digest of the bundle.
  • The planner is loaded on demand; if that load fails the plan is reported unavailable and normal seeding proceeds.
  • New refusal reasons include pull not supported, the head having moved during planning, and the file inventory being refused.
  • Tracked files are written through a temporary file created exclusively, with the parent directory re-verified as being under the sync root.
  • Emits tengu_ccr_overlay_bundle.
Evidence

tengu_ccr_overlay_bundle, planOverlay

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.242 →