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.0.56 Home All releases olderv2.0.55 v2.0.57newer
Claude Code v2.0.56

LSP Diagnostics Volume Limiting

What: LSP diagnostics are now limited to 10 per file and 30 total, sorted by severity to preserve the most important issues.

Details:

  • Constants D21 = 10 (per file) and RG2 = 30 (total) at line 341029
  • Severity sorting via TG2() at line 340898: Errors → Warnings → Info → Hints
  • Cross-turn deduplication prevents same diagnostic from appearing repeatedly
  • Diagnostics cleared when file is modified via H21() at line 341024
  • Evidence: SG2() at line 340948, rIA tracking map at line 341032

See this entry in the whole of v2.0.56 →