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

Remote sessions can wait for an auth token instead of erroring out

Not switched on
Useful2 Signal3
Sessions

Remote connections can wait for a late auth token, but only when an option asks for it.

A rereadMissingAuthHeaders option defers startup until a token arrives; without it the old error path stands.

What

The remote connection layer gained a rereadMissingAuthHeaders option. With it set, starting up without an auth token no longer fails: connection setup and worker startup are deferred behind a promise that re-reads the token, and the resume timing is re-based once it arrives. Without the option, the old immediate error path is unchanged.

Details
  • The deferred path logs "[remote-io] No session ingress token available yet, will re-read" instead of the old "[remote-io] No session ingress token available" error.
  • Both worker initialization and transport connect wait on the re-read.
Evidence

[remote-io] No session ingress token available yet, will re-read

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 →