no-unsafe-command-argument-interpolation
raw Claude command argument interpolated into an executable shell or query fence
Why
Slash-command arguments are user-controlled. Embedding them into a shell token or query string can change command structure or query semantics when the documented command is executed.
Fix
Pass the argument as its own quoted shell token to a wrapper that validates or parameterizes it; never splice it into SQL, LogQL, or another query string.
Examples
```sqlSELECT idFROM recordsWHERE id = '$ARGUMENTS';``````bashscripts/lookup.sh "$ARGUMENTS"```Files
.claude/commands/*.md