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.232 Home All releases olderv2.1.231 v2.1.233newer
Claude Code v2.1.232

Directory sync can check its base against a remote ref

Under the hood
Useful2 Signal3
Cloud Sessions

Directory sync can compare against a remote git reference and refuses invalid object ids.

What

The directory sync path can now build its comparison base from a remote reference by listing the cloned tree with git ls-tree -r -z --full-tree under GIT_NO_LAZY_FETCH=1, and refuses when the tree or commit is not a valid object id.

Details
  • It reads core.filemode to decide whether file modes from the listing can be trusted.
  • The stored-base validator now rejects malformed tree references with a message about a sync base naming a path or commit its reader would refuse.
  • Only the directory sync path uses this; nothing else in the build reaches it.
Evidence

sync base names a path or commit its reader would refuse

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