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

Bash commands that are not strings no longer reach the parser

Under the hood
Useful1 Signal1
Elsewhere

A non-string Bash command can no longer reach the command parser.

What

The check deciding whether a Bash invocation is a read or search command bailed out only on falsy values, so a non-string command could be passed to the parser. It now bails out on anything that is not a string.

Evidence

isSearchOrReadCommand

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 →