From srnnkls-tropos
Ultra-concise bash command patterns. Use when constructing shell commands or one-liners.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-2 --plugin srnnkls-troposThis skill uses the workspace's default tool permissions.
Patterns for interactive bash commands, one-liners, and CLI usage.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Patterns for interactive bash commands, one-liners, and CLI usage.
Quote paths with spaces:
cd "/path with spaces/dir"
Relative paths with rm:
rm -rf ./build # Not $HOME/...
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)
Read: ~/.claude/skills/code-implement/resources/loqui/languages/bash/reference/commands.md
Use Read tool to access (paths outside cwd require direct reads).
rm; when && is needed$()