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.234 Home All releases olderv2.1.233 v2.1.235newer
Claude Code v2.1.234

Directory sync announces a single verdict to everything waiting on it

Under the hood
Useful2 Signal3
Cloud Sessions

Directory sync for cloud sessions now publishes one final verdict instead of making callers poll.

What

The background worker that syncs a directory for cloud sessions now publishes one final verdict, "served", "refused" or "off", to whatever is waiting on it, so callers stop polling for an answer that is already decided.

Details
  • Anything subscribing after the verdict is published receives it immediately; a "refused" or "off" verdict drops the listener list.
  • Repeat publishes and publishes that arrive out of sequence are rejected and logged as dir_sync_lane_verdict_out_of_order; a listener that throws is logged as dir_sync_lane_verdict_listener_threw.
  • A new callback fires the "served" verdict the moment the file manifest is answered rather than waiting for the rest of the work.
Evidence

dir_sync_lane_verdict_out_of_order

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