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 v1.0.120 Home All releases olderv1.0.119 v1.0.122newer
Claude Code v1.0.120

Removed Redundant Slash Command Execution Logic

What: Removed duplicate condition check in slash command processing that always evaluated to true.

Details:

  • Old code at line 1373: if (!0) Y(!0); - condition always true, always executed
  • New code at line 1499: Y(!0); - executes directly without redundant check
  • No functional change, just cleaner code
Evidence

Comparison of lNB() function structure at lines 424900-425196

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v1.0.120 →