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.248 Home All releases olderv2.1.247 v2.1.250newer
Claude Code v2.1.248

Queued client events survive a remote bridge reconnect

Under the hood
Useful2 Signal2
Remote Control

Undelivered events now carry over when the remote bridge rebuilds its connection.

What

When the remote bridge rebuilds its connection, for example after refreshing credentials, events that were queued but never delivered are now carried over to the new connection instead of being thrown away. It logs "[remote-bridge] Carrying N undelivered client event(s) over to the rebuilt transport". This is unconditional on the bridge path, with no flag to turn it off.

Details
  • The uploader's close now accepts a retain option, keeping in-flight plus pending items in an undelivered list capped at the same maximum queue size, with take/peek/discard accessors.
  • Carry-overs are counted by the telemetry event tengu_bridge_repl_events_carried_over; events lost at a terminal failure are counted by bridge_repl_v2_client_events_lost.
  • Enqueuing a batch larger than the maximum queue size now splits it into chunks instead of stalling on backpressure.
Evidence

tengu_bridge_repl_events_carried_over, retainUndelivered: !0

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