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.224 Home All releases olderv2.1.223 v2.1.225newer

Remote Control tells you when a credential expired instead of just dropping

You'll notice
Useful3 Signal1
Remote Control

An expired Remote Control credential now closes with a clear message telling you to run /login.

/login
What

Remote Control now separates auth failures from other disconnects. When the worker token expires or is rejected, the session closes with a dedicated code and the message points you at /login, instead of the previous generic re-authenticate wording.

Details
  • New close code 4094, "worker credential expired or rejected (code 4094)", used for token_expired and auth_exhausted.
  • epoch_conflict, epoch_stale and session_not_found keep close code 4090 and recover through the poll loop.
  • The cause-based mapping applies only when the transport is built with causeTypedCloseCodes; both v2 bridge call sites pass it as true, so it is live.
  • The 404-exhaustion path now names its cause explicitly as session_not_found.
Evidence

worker credential expired or rejected (code 4094)

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