This skill guides the AI to help users discover and install skills
from the skills.sh registry using the
skills CLI.
Use this skill when the user: - Asks to find, search, or browse available skills - Wants to install a skill by name or GitHub path - Asks “what skills are available?” or “is there a skill for X?” - Wants to explore the skills registry
To search the registry, run:
npx skills search <query>
Example:
npx skills search pdf
npx skills search invoice
npx skills search github
This lists matching skills with their names, descriptions, and GitHub paths.
To install a skill globally (available to Desktop Commander):
npx skills add <github-path> --yes --global
Example:
npx skills add desktop-commander/skills/pdf --yes --global
The --yes flag skips confirmation prompts. The
--global flag installs into ~/.agents/skills/
so Desktop Commander picks it up automatically.
npx skills search <query> with relevant
keywordsnpx skills add <github-path> --yes --global~/.agents/skills/ by default
when using --globalnpx skills add on an existing skill will
update it to the latest version