with one click
zsh-completions
Add custom zsh completions for a tool.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Add custom zsh completions for a tool.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | zsh-completions |
| description | Add custom zsh completions for a tool. |
| argument-hint | <tool-name> |
Add or update completions for the tool "$1".
Basics:
fpath via compinit.$ZSH_CUSTOM/completions and enabled plugin directories to fpath before compinit.Steps:
Find or generate the completion script.
If the tool supports it, generate a zsh completion file, for example:
$1 completion zsh > _${1}
Choose a placement strategy.
Option A: custom completions directory (no plugin needed):
mkdir -p "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/completions"
mv _${1} "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/completions/_${1}"
Option B: custom plugin (useful if you want plugins=(...) control):
mkdir -p "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/${1}"
mv _${1} "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/${1}/_${1}"
Add ${1} to the plugins=(...) list in your .zshrc if you use Option B.
Reload completions.
rm -f "$ZSH_COMPDUMP"
exec zsh
Notes:
_${tool} to be discovered._tool manually using zsh completion functions.Capture global dotfile changes made by a CLI installer into the chezmoi source, then commit. Use after an installer (curl pipe to sh, npm -g, brew, etc.) edits shell rc files or PATH. Pass the install command as the argument; the skill runs it, diffs what changed, ports only the portable edits into the chezmoi source templates, confirms anything ambiguous, then commits.
Audit macOS efficiency, background load, cache sprawl, Homebrew cleanup, login items, LaunchAgents, and safe developer cache cleanup. Use for Mac performance, disk cleanup, cache cleanup, background process, launch daemon, or login item audits.
Refresh stale CLI-backed skills in PaulRBerg/agent-skills after installed CLI versions advance; update docs from official upstream release docs and set references/version.txt.
Add a new dependency to tool installation scripts