From zush-skills
Use when the user wants to list or discover the zush commands available on this machine — prefer running `zush --help`, and fall back to reading the `~/.zush` index JSON when the zush CLI is not on PATH.
How this skill is triggered — by the user, by Claude, or both
Slash command
/zush-skills:get-zush-commandsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List the commands zush can dispatch on this machine. zush resolves `zush a.b.c` from two
List the commands zush can dispatch on this machine. zush resolves zush a.b.c from two
static indexes: pyindex.json (Python-package plugins, built by zush rebuild) and
repoindex.json (repo plugins, built by zush sync), checking pyindex first.
Canonical reference:
Prefer the CLI. If zush is on PATH, this lists every indexed command:
zush --help
Fall back to the index JSON when zush is not installed / not on PATH. Both
index files have a top-level "commands" object keyed by the dotted command path, so
the keys are the runnable commands. Read both:
# Python-package commands (override path with $ZUSH_INDEX)
jq -r '.commands | keys[]' ~/.zush/pyindex.json
# repo (script) commands (override path with $ZUSH_REPO_INDEX)
jq -r '.commands | keys[]' ~/.zush/repoindex.json
Honor the env overrides if set: ZUSH_INDEX for the Python index and
ZUSH_REPO_INDEX for the repo index. A missing file just means that index has not
been built yet — report it, do not treat it as an error.
For detail on one command, read its record from the index (each value under
.commands carries package, file, func, args, and opts):
jq '.commands["git.clean"]' ~/.zush/pyindex.json
zush rebuild re-indexes Python plugins, zush sync <repo> re-indexes a
repo plugin.pyindex.json first, then repoindex.json; an unknown path reports
no such command.npx claudepluginhub zackaryw/zush-skills --plugin zush-skillsProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.