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

Turn effort display now tracks the model the turn is running on

You'll notice
Useful3 Signal0
Terminal UI

The effort label in your status line stays correct when the model changes mid-turn.

What

The effort label in the status line is computed against the model actually running the turn, so it stays correct after a mid-turn model change or a fallback.

Details
  • The agent status store gained turnModel alongside turnEffort
  • setTurnEffort(effort, model) is called at turn start with the resolved agent model, and again on query_model_change and on fallback-model events
  • Cleared with setTurnEffort(null, null) at turn end
  • The spinner/status component takes the new turnModel prop and uses it when computing the label
Evidence

setTurnEffort

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