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.100 Home All releases olderv2.1.98 v2.1.101newer
Claude Code v2.1.100

Relaxed Stall Detection During Thinking

The stall detection threshold was increased from 3 seconds to 10 seconds, and the intensity ramp-up period was extended from 2 seconds to 10 seconds. Additionally, the thinking state is now explicitly treated as an active state for stall detection purposes. Together, these changes mean the spinner no longer incorrectly indicates a "stalled" connection during legitimately long thinking periods.

Evidence

Stall threshold change from 3000 / 2000 to 1e4 / 1e4 (search for j > 1e4 in the stall detection function k87), and added q === "thinking" condition in the calling code

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