From srnnkls-tropos
Ultra-concise bash command patterns. Use when constructing shell commands or one-liners.
How this skill is triggered — by the user, by Claude, or both
Slash command
/srnnkls-tropos:bashThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Patterns for interactive bash commands, one-liners, and CLI usage.
Patterns for interactive bash commands, one-liners, and CLI usage.
Quote paths with spaces:
cd "/path with spaces/dir"
rm requires relative paths — absolute paths through $HOME, /, etc. are blocked:
rm -rf ./build # relative: allowed
rm -rf $HOME/build # absolute: blocked
Chain commands:
cmd1 && cmd2 && cmd3 # Stop on failure
cmd1; cmd2; cmd3 # Continue regardless
Command substitution:
result=$(command) # Not `command`
Check command exists:
command -v jq &>/dev/null || echo "not found"
Output redirection:
command 2>&1 # Stderr to stdout
command &>/dev/null # Suppress all
Process substitution:
diff <(cmd1) <(cmd2)
~/.claude/skills/loqui/reference/loqui/languages/bash/reference/commands.md
rm; when && is needed$()implement: Language-specific patterns (includes bash)test: TDD workflownpx claudepluginhub joshuarweaver/cascade-code-general-misc-2 --plugin srnnkls-troposCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.