Exploring skills
The skillsctl explore command lets you browse and search skills in the registry.
List all skills
Section titled “List all skills”skillsctl exploreOutput is a table showing key metadata for each skill:
SOURCE NAME OWNER TAGS INSTALLS VERSIONinternal code-review alice@corp.dev review,quality 142 1.3.0internal git-commit bob@corp.dev git,workflow 98 2.0.1internal sql-optimizer alice@corp.dev sql,database,performance 67 1.0.2internal openapi-writer carol@corp.dev api,docs,openapi 55 1.1.0internal test-generator bob@corp.dev testing,tdd 41 0.9.0internal pr-description carol@corp.dev git,github,workflow 38 1.2.0internal dockerfile-linter dave@corp.dev docker,devops 22 1.0.0Columns:
- SOURCE - where the skill came from (
internalfor your registry,externalfor federated) - NAME - skill identifier used with
installandexplore show - OWNER - publisher’s identity (OIDC subject or email)
- TAGS - comma-separated labels for filtering
- INSTALLS - total install count across all versions
- VERSION - latest published version
Filter by tag
Section titled “Filter by tag”Use --tag to narrow results to skills with a specific tag. You can repeat the flag to require multiple tags:
skillsctl explore --tag gitSOURCE NAME OWNER TAGS INSTALLS VERSIONinternal git-commit bob@corp.dev git,workflow 98 2.0.1internal pr-description carol@corp.dev git,github,workflow 38 1.2.0skillsctl explore --tag git --tag workflowSOURCE NAME OWNER TAGS INSTALLS VERSIONinternal git-commit bob@corp.dev git,workflow 98 2.0.1internal pr-description carol@corp.dev git,github,workflow 38 1.2.0View skill details
Section titled “View skill details”Use explore show to see full metadata for a skill, including its version history:
skillsctl explore show git-commitName: git-commitDescription: Helps write clear, conventional commit messages following team standardsOwner: bob@corp.devTags: git, workflowVersion: 2.0.1Installs: 98Source: internal
Versions: 2.0.1 2.0.0 1.1.0 1.0.0View skill content
Section titled “View skill content”Add --verbose to include the full skill content in the output:
skillsctl explore show git-commit --verboseName: git-commitDescription: Helps write clear, conventional commit messages following team standardsOwner: bob@corp.devTags: git, workflowVersion: 2.0.1Installs: 98Source: internal
Versions: 2.0.1 2.0.0 1.1.0 1.0.0
--- Content ---You are helping write a git commit message. Follow conventional commits format:
<type>(<scope>): <subject>
Types: feat, fix, docs, style, refactor, test, chore...Next steps
Section titled “Next steps”- Install a skill - add a skill to your Claude Code workspace
- Publish a skill - share your own skills