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.229 Home All releases olderv2.1.228 v2.1.231newer
Claude Code v2.1.229

Faster new-diagnostic detection, and none at all without a baseline

You'll notice
Useful2 Signal1
Elsewhere

Detecting new editor diagnostics after an edit is faster and skipped entirely without a baseline.

What

Comparing editor diagnostics before and after an edit now hashes each one (message, severity, source, code, range) into a set instead of comparing every diagnostic against every other, and when there is no earlier snapshot to compare against it returns immediately without even asking the IDE for diagnostics. Less CPU and one fewer round-trip on files that were never snapshotted.

Evidence

getDiagnostics

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