Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.271 ·

Bash-tool static command analysis now tracks per-argument unquoted-glob status

Claude Code's shell command analysis now flags which specific arguments contain unquoted glob patterns

TierUnder the hoodhow much it should matter to you
Useful1my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaBash Permissionswhat it touches
KindInternal Changesin v2.1.271,
Under the hood

Claude Code's shell command analysis now flags which specific arguments contain unquoted glob patterns

What

When Claude Code statically analyzes a bash command (before running it, to check its safety), it now records, for each individual argument, whether that argument contained an unquoted glob pattern (a wildcard like * that wasn't wrapped in quotes). This is returned as a new argvUnquotedGlob field alongside the parsed argument list for straightforward ("simple") commands.

Why

Unquoted globs can expand unexpectedly and cause a command to affect more files than intended. Tracking this per-argument gives Claude Code finer-grained information to reason about whether a command is safe to run.

See this entry in the whole of v2.1.271 →