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.219 Home All releases olderv2.1.218 v2.1.220newer
Claude Code v2.1.219

Category-based server-side fallback beta

Under the hood
Useful2 Signal2
Elsewhere

The server can now pick a fallback model by category when a request is refused, instead of the app naming one.

Category-based fallback only applies if the server accepts a new beta header; rejection un-arms it and reverts to explicit fallback lists.

What

A second server-side-fallback beta lets the server choose the fallback model by category rather than the client naming one, but it only takes effect if the server accepts the new beta header.

Details
  • the descriptor is server_side_fallback_category with header server-side-fallback-2026-07-01
  • when it applies, the request sends fallbacks: "default" instead of an explicit [{ model: ... }] list, letting the server route, for example, cyber-category refusals to the previous Opus
  • fallback-error classification gained category_beta_header (the new header was rejected) and default_unconfigured (from a body containing "has no default fallback configuration")
  • the retry path un-arms the category header on those errors and falls back to the existing explicit-list behaviour
  • the code path also still requires the existing default-fallback conditions
Evidence

"server-side-fallback-2026-07-01"

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