skillshub list
skillshub list
Section titled “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.
skillshub listOptions
Section titled “Options”| Option | Description |
|---|---|
--json | Output the list in JSON format for programmatic consumption. |
--verbose | Show additional details including install path and linked agents. |
Example output
Section titled “Example output”Running skillshub list produces a table of installed skills:
Name Version Tapcode-review 1.2.0 brokad/hubcommit-message 0.9.1 brokad/hubrefactor-assist 2.0.0 acme/skillstest-generator 1.1.3 brokad/hubWith the --verbose flag, extra columns are included:
Name Version Tap Path Agentscode-review 1.2.0 brokad/hub ~/.skillshub/skills/code-review claude, cursorcommit-message 0.9.1 brokad/hub ~/.skillshub/skills/commit-message clauderefactor-assist 2.0.0 acme/skills ~/.skillshub/skills/refactor-assist codextest-generator 1.1.3 brokad/hub ~/.skillshub/skills/test-generator (none)Examples
Section titled “Examples”List installed skills as JSON:
skillshub list --json[ { "name": "code-review", "version": "1.2.0", "tap": "brokad/hub" }, { "name": "commit-message", "version": "0.9.1", "tap": "brokad/hub" }]