Discovering Skills

Search, browse, and inspect AI agent skills in the SkillReg registry. Filter by agent compatibility, tags, and popularity.

Search Skills

Use skillreg search to perform a full-text search across all public skills in the registry. The query matches against skill names, descriptions, and tags.

skillreg search<query>

Search public skills by name, description, or tags.

Terminal
$ skillreg search "deployment"

  @acme/deploy-k8s          v2.1.0   Kubernetes deployment automation
    tags: deployment, kubernetes, devops

  @acme/deploy-vercel       v1.3.2   Deploy to Vercel with zero config
    tags: deployment, vercel, serverless

  @ops-team/rollback-mgr    v0.9.1   Safe rollback manager for deployments
    tags: deployment, rollback, safety

3 skills found

Skill Details

Get detailed information about a specific skill with skillreg info. This shows metadata, version history, download stats, and the install command.

skillreg info<skill>

Display detailed information about a skill. Use the @org/name format.

Terminal
$ skillreg info @acme/deploy-k8s

  Name:         @acme/deploy-k8s
  Version:      2.1.0
  Visibility:   public
  Downloads:    1,247
  Created:      2025-09-14
  Updated:      2026-01-22
  SHA256:       a3f8c1...d92e4b
  Tags:         deployment, kubernetes, devops

  Install:
    skillreg pull @acme/deploy-k8s

List Organization Skills

List all skills published under a specific organization. By default, this uses the organization from your current .skillregrc config.

skillreg list

List all skills in the current or specified organization.

FlagDescriptionDefault
--org <slug>Target organization slug
Terminal
$ skillreg list --org acme

  NAME                  VERSION    DOWNLOADS    UPDATED
  deploy-k8s            2.1.0      1,247        2026-01-22
  deploy-vercel         1.3.2      892          2026-02-01
  lint-config           3.0.0      2,510        2025-12-18
  code-review           1.1.0      634          2026-02-10

List Local Skills

See all skills currently installed on your machine across all supported agents. This helps you track what is installed and where.

skillreg local

Show locally installed skills across all agents.

FlagDescriptionDefault
--agent <agent>Filter by agent (claude, codex, cursor)
--scope <scope>Filter by scope (project, user)
--pathShow full file paths for each skill
Terminal
$ skillreg local

  Claude (user scope)
    @acme/deploy-k8s          v2.1.0
    @acme/code-review         v1.1.0

  Claude (project scope)
    @acme/lint-config          v3.0.0

  Cursor (user scope)
    @acme/deploy-vercel        v1.3.2

Show install locations

Use --path to see the exact file path where each skill is installed. Useful for debugging or manual edits.