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
code-review 1.2.0 brokad/hub
commit-message 0.9.1 brokad/hub
refactor-assist 2.0.0 acme/skills
test-generator 1.1.3 brokad/hub

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

Name Version Tap Path Agents
code-review 1.2.0 brokad/hub ~/.skillshub/skills/code-review claude, cursor
commit-message 0.9.1 brokad/hub ~/.skillshub/skills/commit-message claude
refactor-assist 2.0.0 acme/skills ~/.skillshub/skills/refactor-assist codex
test-generator 1.1.3 brokad/hub ~/.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"
}
]