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.225 Home All releases olderv2.1.224 v2.1.226newer

New bash-parse rule flags two statements sharing a line

You'll notice
Useful3 Signal0
Permissions

Commands cramming two statements onto one line are now flagged as too complex to auto-approve.

What

Command analysis now treats a command as too complex when one statement directly follows another on the same line, since bash reads that as a single command.

Details
  • Two node-type sets back the check: a statement-like set including redirected_statement and ERROR, and a smaller set of negated_command, if_statement, while_statement and for_statement
  • A new walk over the parse tree applies the rule and classifies the command accordingly
Evidence

statement directly follows another statement on the same line

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