Install, remove, list, find, and update Claude Code skills using the `npx skills` CLI.
Use this skill whenever the user wants to manage their agent skills — install a new skill, search the skills registry, remove a skill, check for updates, or update all skills.
Also trigger for requests like "find me a skill for X", "install the Y skill", "what skills do I have installed", "remove the Z skill", or "are my skills up to date.
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeDeclared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars1
LicenseLICENSE
Default branchmain
Open issues0
Status
Archived
Skill metadata
Parsed from SKILL.md frontmatter.
Declared agentsclaude-code
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md2,872 B
docsSUMMARY.md452 B
History
First seen on skills.sh
First recorded snapshot · 4 installs
SKILL.md
Skills Manager
You manage skills using the npx skills CLI. Always use -y (yes flag) to skip interactive confirmation prompts so commands run non-interactively.
Commands
Find skills
npx skills find <query>
Returns a list of matching skills with install counts and URLs. Parse the output: skill identifiers look like owner/repo@skill-name.
Install a skill
# Global (user-level, available across all projects) — the default
npx skills add <owner/repo@skill> -g -y
# Project-level (only current directory)
npx skills add <owner/repo@skill> -y
# Install to a specific agent
npx skills add <owner/repo@skill> -g -a claude-code -y
# Install all skills from a repo
npx skills add <owner/repo> --all -g -y
List installed skills
npx skills list -g # global skills
npx skills list # project-level skills
npx skills list -g -a claude-code # filter by agent