Loading...
Loading...
Discover and install third-party agent skills from the open skills ecosystem (skills.sh). This skill should be used when users want to find, install, update, or manage external skills for Claude Code or other AI agents, or when they mention skills.sh, npx skills, or want to extend their agent with community skills.
npx skill4agent add mgiovani/cc-arsenal find-skillsnpx skills# Interactive fuzzy search across skills.sh
npx skills find
# Search by keyword
npx skills find typescript
npx skills find react
npx skills find testing# List skills in a repository without installing
npx skills add owner/repo --list
# Example: list Vercel's official skills
npx skills add vercel-labs/agent-skills --list
# Example: list Anthropic's skills
npx skills add anthropics/skills --list# Interactive installation (choose skills and target agents)
npx skills add owner/repo
# Install a specific skill for Claude Code
npx skills add owner/repo --skill skill-name -a claude-code
# Install globally (available across all projects)
npx skills add owner/repo --skill skill-name -a claude-code -g
# Install all skills from a repo to all detected agents
npx skills add owner/repo --all| Command | Purpose |
|---|---|
| Search skills.sh directory |
| Install skills from a repository |
| View installed skills |
| Check for available updates |
| Update all installed skills |
| Uninstall a skill |
| Create a new skill template |
.claude/skills/-g~/.claude/skills/add# GitHub shorthand (most common)
npx skills add owner/repo
# Full GitHub URL
npx skills add https://github.com/owner/repo
# Direct path to a specific skill
npx skills add https://github.com/owner/repo/tree/main/skills/skill-name
# GitLab URL
npx skills add https://gitlab.com/org/repo
# Local directory (for development)
npx skills add ./my-local-skills| Repository | Description |
|---|---|
| Vercel's official skill collection (React, Next.js, design) |
| Anthropic's example skills |
| This repository (browser, Jira, skill-creator, find-skills) |