Skill Installation Support
Goal
Help users install, list, update, remove, and troubleshoot Agent Skills with clear commands and safe distinctions between local, global, and agent-specific installation.
When to use
- The user asks how to install a skills repo or one skill.
npx skills@latest add fails or does not discover expected skills.
- The user asks about Codex, Claude Code, Cursor, or all-agent installation targets.
When not to use
- The user wants to create or review a skill; use
skill-authoring-review.
- The user wants to maintain this repository's catalog or release state; use
skill-repo-curator.
- The source skill has unclear provenance or license and should not be installed yet.
Inputs
- Repository path or GitHub owner/repo.
- Desired skill name, target agent, and global or project install preference.
- Error output from
npx skills@latest.
- Local
skills/ tree and SKILL.md frontmatter when troubleshooting discovery.
Inputs to inspect
- Inspect the source path or repository, requested skill name, target agent, global/project scope, and CLI error output.
- Check
SKILL.md names and descriptions when discovery fails.
Process
- Identify source: local folder, GitHub repo, full Git URL, or specific skill.
- List skills before installing when the source is unfamiliar.
- Choose global or project install based on the user's scope.
- Choose target agent flag based on the user's runtime.
- Troubleshoot discovery by checking folder structure,
SKILL.md, name matching, and CLI output.
- Avoid global installation or overwrites without user approval.
Workflow
Follow the process above, then return a copy-pasteable command plus a verification command before suggesting any global install.
Decision points
- Use
--list before installation for unfamiliar repos.
- Use
--skill <name> when installing one skill from a multi-skill repo.
- Use
--all only when the user wants all supported agents.
- Prefer local folder install for testing unpublished repos.
Safety rules
- Tell users to review public skills before installing them.
- Do not install globally unless the user requested or approved it.
- Do not run commands that overwrite existing local skills without approval.
References
Read references/vercel-skills-cli.md when the user needs command examples or troubleshooting steps.
Scripts
No bundled scripts.
Output format
Return:
- Recommended command
- What it installs
- Scope and target agent
- Verification command
- Troubleshooting notes
Failure modes
- If the CLI is unavailable, give the install prerequisite and a no-op discovery check.
- If the skill name is not found, list available skills from the source.
- If global installation is risky, recommend project-local installation first.
Completion criteria
- The user has an exact command for their source and target agent.
- Safety and scope are explicit.
- Discovery or installation failure has a concrete next diagnostic step.
1---2name: skill-installation-support3description: Help install, list, update, remove, or troubleshoot Agent Skills using the Vercel skills CLI. Use when the user asks about npx skills add, installing a whole repo, installing one skill, global vs project installs, symlink vs copy, or Codex/Claude/Cursor agent targets.4license: Apache-2.05---67# Skill Installation Support89## Goal1011Help users install, list, update, remove, and troubleshoot Agent Skills with clear commands and safe distinctions between local, global, and agent-specific installation.1213## When to use1415- The user asks how to install a skills repo or one skill.16- `npx skills@latest add` fails or does not discover expected skills.17- The user asks about Codex, Claude Code, Cursor, or all-agent installation targets.1819## When not to use2021- The user wants to create or review a skill; use `skill-authoring-review`.22- The user wants to maintain this repository's catalog or release state; use `skill-repo-curator`.23- The source skill has unclear provenance or license and should not be installed yet.2425## Inputs2627- Repository path or GitHub owner/repo.28- Desired skill name, target agent, and global or project install preference.29- Error output from `npx skills@latest`.30- Local `skills/` tree and `SKILL.md` frontmatter when troubleshooting discovery.3132## Inputs to inspect3334- Inspect the source path or repository, requested skill name, target agent, global/project scope, and CLI error output.35- Check `SKILL.md` names and descriptions when discovery fails.3637## Process38391. Identify source: local folder, GitHub repo, full Git URL, or specific skill.402. List skills before installing when the source is unfamiliar.413. Choose global or project install based on the user's scope.424. Choose target agent flag based on the user's runtime.435. Troubleshoot discovery by checking folder structure, `SKILL.md`, name matching, and CLI output.446. Avoid global installation or overwrites without user approval.4546## Workflow4748Follow the process above, then return a copy-pasteable command plus a verification command before suggesting any global install.4950## Decision points5152- Use `--list` before installation for unfamiliar repos.53- Use `--skill <name>` when installing one skill from a multi-skill repo.54- Use `--all` only when the user wants all supported agents.55- Prefer local folder install for testing unpublished repos.5657## Safety rules5859- Tell users to review public skills before installing them.60- Do not install globally unless the user requested or approved it.61- Do not run commands that overwrite existing local skills without approval.6263## References6465Read `references/vercel-skills-cli.md` when the user needs command examples or troubleshooting steps.6667## Scripts6869No bundled scripts.7071## Output format7273Return:74751. Recommended command762. What it installs773. Scope and target agent784. Verification command795. Troubleshooting notes8081## Failure modes8283- If the CLI is unavailable, give the install prerequisite and a no-op discovery check.84- If the skill name is not found, list available skills from the source.85- If global installation is risky, recommend project-local installation first.8687## Completion criteria8889- The user has an exact command for their source and target agent.90- Safety and scope are explicit.91- Discovery or installation failure has a concrete next diagnostic step.