Agent Skill
2/7/2026

skills

This skill should be used when the user asks to "install a skill", "add a skill", "remove a skill", "list skills", "update skills", "find skills", "search for skills", or mentions "npx skills", skill management, or agent skill installation.

V
vdustr
0GitHub Stars
1Views
npx skills add VdustR/vp-claude-code-marketplace

SKILL.md

Nameskills
DescriptionThis skill should be used when the user asks to "install a skill", "add a skill", "remove a skill", "list skills", "update skills", "find skills", "search for skills", or mentions "npx skills", skill management, or agent skill installation.

name: skills description: This skill should be used when the user asks to "install a skill", "add a skill", "remove a skill", "list skills", "update skills", "find skills", "search for skills", or mentions "npx skills", skill management, or agent skill installation.

Agent Skills Management

Manage agent skills using the npx skills CLI from vercel-labs/agent-skills.

Commands Overview

CommandPurpose
npx -y skills add <repo>Install skills from repository
npx -y skills remove [names]Remove installed skills
npx -y skills listList installed skills
npx -y skills find [query]Search for skills interactively
npx -y skills updateUpdate all skills to latest
npx -y skills checkCheck for available updates
npx -y skills init [name]Initialize a new skill

Note: The npx -y flag is for npx itself (auto-install the skills package). The -y flag on skills add/remove commands skips confirmation prompts — omit it in interactive contexts to let the user confirm before changes.

Installation

Install Globally (Recommended for Personal Use)

Install skills to ~/.claude/skills/ for use across all projects:

npx -y skills add vercel-labs/agent-skills -g

Install to Project

Install skills to .claude/skills/ for project-specific use:

npx -y skills add vercel-labs/agent-skills

Install Specific Skills Only

Select specific skills from a repository:

npx -y skills add vercel-labs/agent-skills --skill web-design-guidelines -g

List Available Skills Before Installing

Preview skills in a repository without installing:

npx -y skills add vercel-labs/agent-skills --list

Removal

Remove by Name

npx -y skills remove web-design-guidelines -g

Interactive Removal

npx -y skills remove -g

Listing and Discovery

List Installed Skills

npx -y skills list -g      # Global skills
npx -y skills list         # Project skills

Search for Skills

npx -y skills find typescript    # Search by keyword
npx -y skills find               # Interactive search

Updates

Check for Updates

npx -y skills check

Update All Skills

npx -y skills update

Common Skill Sources

RepositorySkills Available
vercel-labs/agent-skillsvercel-react-best-practices, web-design-guidelines, react-native-guidelines, composition-patterns, vercel-deploy-claimable
vercel-labs/agent-browseragent-browser (browser automation)

CLI Options Reference

Add Options

OptionDescription
-g, --globalInstall globally (~/.claude/skills/)
-s, --skill <names>Install specific skills only
-a, --agent <agents>Target specific agents (claude-code, cursor, etc.)
-l, --listList available skills without installing
-y, --yesSkip confirmation prompts
--allInstall all skills to all agents

Remove Options

OptionDescription
-g, --globalRemove from global scope
-s, --skill <names>Specify skills to remove
-a, --agent <agents>Remove from specific agents
-y, --yesSkip confirmation prompts
--allRemove all skills from all agents

List Options

OptionDescription
-g, --globalList global skills
-a, --agent <agents>Filter by agent

Notes

  • Skills are stored as SKILL.md files with YAML frontmatter
  • Global skills (-g) are available across all projects
  • Project skills are isolated to the current project
  • Run npx -y skills --help for complete documentation
  • Discover more skills at https://skills.sh/
Skills Info
Original Name:skillsAuthor:vdustr