Skip to content

skillshub list

The list command displays all skills currently installed on your system. It provides a quick overview of skill names, versions, and the taps they were installed from.

Terminal window
skillshub list
OptionDescription
--jsonOutput the list in JSON format for programmatic consumption.
--verboseShow additional details including install path and linked agents.

Running skillshub list produces a table of installed skills:

Name Version Tap Scripts Refs
code-review 1.2.0 brokad/hub yes yes
commit-message 0.9.1 brokad/hub no yes
refactor-assist 2.0.0 acme/skills yes no
test-generator 1.1.3 brokad/hub no no

The Scripts column indicates whether the skill includes hook scripts, and Refs shows whether it declares reference files.

With the --verbose flag, extra columns are included:

Name Version Tap Scripts Refs Path Agents
code-review 1.2.0 brokad/hub yes yes ~/.skillshub/skills/code-review claude, cursor
commit-message 0.9.1 brokad/hub no yes ~/.skillshub/skills/commit-message claude
refactor-assist 2.0.0 acme/skills yes no ~/.skillshub/skills/refactor-assist codex
test-generator 1.1.3 brokad/hub no no ~/.skillshub/skills/test-generator (none)

List installed skills as JSON:

Terminal window
skillshub list --json
[
{
"name": "code-review",
"version": "1.2.0",
"tap": "brokad/hub"
},
{
"name": "commit-message",
"version": "0.9.1",
"tap": "brokad/hub"
}
]