| name | manage-skills |
| description | Manage the user's agent-skill library via the local skills-manager-cli — install, update, remove, enable/disable, sync, search, adopt, and tag skills in a central library that's shared across every installed agent (Claude Code, Cursor, Codex, Gemini CLI, Windsurf, etc.). Use this whenever the user wants to install or find or update or remove or list a skill, see what skills they have, sync skills across agents, adopt skills already installed elsewhere, or generally manage their skill library. Prefer this over find-skills when `skills-manager-cli` is on PATH, because routing installs through the central library is the only way subsequent `update` and `sync` work — direct `npx skills add` installs cannot be updated or shared across agents. Triggers include "install/add a skill", "find a skill for X", "is there a skill that does Y", "update my skills", "remove/uninstall this skill", "list/show my skills", "what skills do I have", "sync skills", "manage skills", "skill library". |
Before doing anything
- Confirm the CLI is available:
command -v skills-manager-cli. If it's not on PATH, this skill doesn't apply — fall back to find-skills (or tell the user to install skills-manager).
- Always pass
--json when you parse output yourself. Pretty-printed output is for the user; JSON is for you. Errors come back as {"ok": false, "error": "..."} on stderr with a non-zero exit code.
skills-manager-cli --json skills list
Mental model
There's one central library at ~/.skills-manager/skills/ that all agents share. Each skill in the library has metadata in a SQLite DB (source URL, preset membership, tags, enabled flag). A preset is a named group of skills. The active preset gets synced out to every enabled agent's skill directory (~/.claude/skills/, ~/.cursor/skills/, etc.) by symlink or copy.
So the lifecycle is: install → (in library) → add to preset → sync → (visible to agent). install --sync is the shortcut that does all three.
Internally, presets are still stored as scenarios for backward-compatible Git Backup. The CLI and UI call them presets.
Install
skills-manager-cli skills install vercel-labs/agent-skills@react-best-practices
skills-manager-cli skills install https://github.com/anthropics/skills.git
skills-manager-cli skills install https://github.com/foo/bar/tree/main/skills/baz
skills-manager-cli skills install ./my-skill
skills-manager-cli skills install foo/bar --skillssh
skills-manager-cli skills install ./looks-like/owner-repo --local
Default is library-only — the skill enters the DB but doesn't appear in any agent yet. To make it visible:
--sync → add to the current active preset + sync to every enabled agent (most common, do this unless the user signals otherwise)
--sync-preset <name> → add to a specific preset + sync
- Or later:
presets add-skill <preset> <skill> followed by skills sync
Ref resolution is deterministic, no path-existence guessing:
- Starts with
./, ../, /, or ~/ → local path
- Contains
://, ends in .git, or starts with git@ → git URL
- Matches
owner/repo, owner/repo/skill, or owner/repo@skill → skillssh
- Otherwise → error; pass
--local / --git / --skillssh to disambiguate
Always verify after install with skills list or skills show <name> so you can confirm the skill landed and report the preset / sync state back to the user.
Search
skills-manager-cli --json skills search "react performance" --limit 5
Each result has install_ref (paste straight into skills install), installs (popularity proxy), and skills_sh_url. Show the top 1–3 with install counts before installing — anything with 10K+ installs is battle-tested; anything under 100 needs a careful look at the source repo.
Update / Check
skills-manager-cli skills update <skill-name-or-id>
skills-manager-cli skills update --all
skills-manager-cli skills check --all
check is the dry-run partner of update. Local-only skills (no git source) are reported as skipped: true.
Remove
skills-manager-cli skills remove <skill> --dry-run
skills-manager-cli skills remove <skill> --yes
Remove deletes the central-library copy, all synced targets across agents, and the DB row. It's not reversible without re-installing.
Enable / Disable
skills-manager-cli skills disable <skill>
skills-manager-cli skills enable <skill>
Disable is a "soft remove" — it stops the skill from being written into agent directories on future syncs, but does not purge already-synced copies. If the user wants the skill gone from agents now, follow up with skills remove or re-sync (the disabled skill will be cleaned up on the next sync of its preset).
Sync
skills-manager-cli skills sync
skills-manager-cli skills sync --dry-run
skills-manager-cli skills sync --preset "Web Dev"
skills-manager-cli skills sync --tool claude_code
Adopt skills installed elsewhere
When skills already live in an agent's directory (e.g. installed via npx skills add or manual git clone) but aren't in the central library, pull them in:
skills-manager-cli skills adopt ~/.claude/skills --dry-run
skills-manager-cli skills adopt ~/.claude/skills
skills-manager-cli skills adopt ~/.claude/skills/react-best-practices \
--git-url https://github.com/vercel-labs/agent-skills/tree/main/react-best-practices
skills-manager-cli skills adopt ~/.claude/skills/react-best-practices \
--git-url https://github.com/vercel-labs/agent-skills \
--git-subpath react-best-practices
skills-manager-cli skills adopt ~/.claude/skills/my-skill \
--git-url https://github.com/me/my-skill --git-subpath ""
adopt auto-excludes anything already in the DB or already a sync target, so it's safe to re-run. --git-url requires either a URL with a subpath (/tree/branch/path) or an explicit --git-subpath — without that, future update would re-clone the wrong directory, so the CLI refuses to guess.
Tag
skills-manager-cli skills tag add <skill> web frontend
skills-manager-cli skills tag remove <skill> frontend
skills-manager-cli skills tag list <skill>
skills-manager-cli skills tag list
Presets
skills-manager-cli presets list
skills-manager-cli presets current
skills-manager-cli presets add-skill <preset> <skill>...
skills-manager-cli presets remove-skill <preset> <skill>...
skills-manager-cli presets apply <preset>
Use presets add-skill when you want to put an already-installed skill into a different preset without re-installing it, or to share a skill across multiple presets.
Health check
When sync misbehaves or a command errors in a confusing way:
skills-manager-cli --json repo status
skills-manager-cli --json tools list
These two are read-only and great for diagnosing "why isn't this skill showing up in Cursor" type questions.
Typical workflows
"Find me a skill for X" / "Install a skill that does X"
skills search "X" --limit 5 — show the top 1–3 hits with install counts and source.
- If a clear winner:
skills install <install_ref> --sync.
- If ambiguous: ask the user to pick.
skills list (or skills show <name>) to confirm it landed in the active preset and synced.
"What skills do I have?"
skills-manager-cli --json skills list
The enabled, presets, and source_type fields are usually the most informative to summarize back.
"Pull in the skills already installed in my agent directories"
skills adopt ~/.claude/skills --dry-run (and any other agent dirs the user mentions) — show the candidate list.
- After user confirms:
skills adopt ~/.claude/skills.
- For any adopted skill where the user knows the original repo, follow up with
skills adopt ... --git-url ... --git-subpath ... to restore the update link.
"Update everything"
skills-manager-cli skills check --all
skills-manager-cli skills update --all
Report which skills actually refreshed (refreshed: true in the JSON) vs which were already up-to-date.
Pitfalls
- No active preset →
skills sync (without --preset) fails. Show the user presets list and pick one with them, or use sync --preset <name>.
- Install succeeded but skill doesn't appear in the agent → install defaults to library-only. Re-run with
--sync, or add it to the active preset and sync.
- Adopted skills can't be
updated from git → npx skills add and manual git clone don't leave source metadata, so adopt has to treat them as local. Fix per-skill with adopt ... --git-url ... --git-subpath ..., or just skills remove + skills install <git-ref> to start clean with a real source.
--dry-run only exists on remove, sync, adopt. For install / update / check, the preview is a different command (search before install, check before update).