Skip to content

bashrc snippets

S4 · Deterministic ✓ Stable 2026-04-18

Modular bashrc additions. Each file is a drop-in — source it from ~/.bashrc to get its helpers.

FileWhat it provides
claude-code-helpers.shcc, ccy, ccr, ccry — Claude CLI shortcuts with resume + skip-permissions variants
zellij-helpers.shz <name>, zk, zl, zd, zfix — Zellij session management
tmux-helpers.shtmux equivalents for when Zellij isn’t available
opencode-helpers.shOpenCode CLI shortcuts
osc7-cwd.shOSC 7 working-directory reporting for clone-tab-at-cwd in terminal emulators
flow-control.shFlow-control tweaks — disable Ctrl+S/Ctrl+Q freeze
Terminal window
# Add to ~/.bashrc on a machine that has this repo checked out:
REPO=/path/to/agentic-workflow-and-tech-stack # wherever you checked it out
source "$REPO/02-stack/profiles/bashrc-snippets/claude-code-helpers.sh"
source "$REPO/02-stack/profiles/bashrc-snippets/zellij-helpers.sh"
source "$REPO/02-stack/profiles/bashrc-snippets/osc7-cwd.sh"

Or curl to a hostless machine:

Terminal window
curl -o ~/.claude-helpers.sh https://raw.githubusercontent.com/cybersader/agentic-workflow-and-tech-stack/main/02-stack/profiles/bashrc-snippets/claude-code-helpers.sh
echo 'source ~/.claude-helpers.sh' >> ~/.bashrc