terminal-command-safety
Installation
SKILL.md
Terminal Command Safety
Detailed patterns and examples for safe terminal command execution in AI agent contexts.
Backtick Hazard — Details
Backticks in terminal command arguments break across all shells:
- bash/zsh: backtick = command substitution (
echo "uselshere"executesls) - PowerShell: backtick = escape character (
echo "usen here"` inserts newline)
Ref: vscode#295620