Help us improve
Share bugs, ideas, or general feedback.
From code
Guides CLI usage in Bash: zoxide for navigation (prefix 'command cd'), git -C over cd && git, long flags like --message. Activates on Bash tool use or zoxide errors.
npx claudepluginhub motlin/claude-code-plugins --plugin codeHow this skill is triggered — by the user, by Claude, or both
Slash command
/code:cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- I replaced `cd` with `zoxide`. Use `command cd` to change directories
Manages git aliases (g, gs, gco, gb) and Claude Code aliases (claude-yolo, claude-cont) with bash tab completion via interactive wizard, status, audit, and uninstall.
Provides Claude Code bash patterns for PreToolUse hooks, command chaining, CLI orchestration, git workflows, custom commands, and handling bash permissions, failures, security guards.
Teaches terminal basics: navigation, file operations, npm, git, env vars, pipes. Auto-activates when Claude runs Bash commands for non-technical users.
Share bugs, ideas, or general feedback.
cd with zoxide. Use command cd to change directories
commandgit with command gitcd or zoxide at all. It's usually not necessary with CLI commands
cd <dir> && git <subcommand>git -C <dir> <subcommand>Prefer long flag names when available:
git commit -mgit commit --message instead