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.
Bash commands that are not strings no longer reach the parser
Under the hood
Useful1Signal1
Elsewhere
A non-string Bash command can no longer reach the command parser.
What's wrong with this entry?
Anonymous. No account, no email.
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.