From qe-framework
Installs shell aliases (cc, ccc, ccd) for launching Claude Code from the terminal. Supports macOS/Linux (zsh, bash, fish) and Windows (PowerShell).
How this skill is triggered — by the user, by Claude, or both
Slash command
/qe-framework:Qcc-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Registers shell aliases so users can launch Claude Code with short commands instead of typing the full command each time.
Registers shell aliases so users can launch Claude Code with short commands instead of typing the full command each time.
| Alias | Command | Description |
|---|---|---|
cc | claude | Launch Claude Code |
ccc | claude --chrome | Chrome browser integration mode |
ccd | claude --dangerously-skip-permissions --chrome | Skip permissions + Chrome integration |
uname -s to detect the OS$SHELL to determine the active shell~/.zshrc~/.bashrc~/.config/fish/config.fish (use abbr instead of alias)alias cc=, alias ccc=, alias ccd= linesAdd the following block to the end of the config file:
# Claude Code shortcuts
alias cc="claude"
alias ccc="claude --chrome"
alias ccd="claude --dangerously-skip-permissions --chrome"
For fish shell, use:
# Claude Code shortcuts
abbr -a cc claude
abbr -a ccc claude --chrome
abbr -a ccd claude --dangerously-skip-permissions --chrome
Run source <config-file> to apply immediately.
$PROFILE (typically ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1)New-Item -Path $PROFILE -ItemType File -Forcefunction cc, function ccc, function ccd definitionsAdd the following block to the end of the profile file:
# Claude Code shortcuts
function cc { claude $args }
function ccc { claude --chrome $args }
function ccd { claude --dangerously-skip-permissions --chrome $args }
Note: PowerShell
Set-Aliascannot pass arguments, sofunctionis used instead.
Run . $PROFILE to apply immediately.
After successful setup, display:
Claude Code shortcuts installed!
cc → claude
ccc → claude --chrome
ccd → claude --dangerously-skip-permissions --chrome
Restart your terminal or run `source <config>` to apply.
npx claudepluginhub inho-team/qe-framework --plugin qe-frameworkCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.