Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (skills-installer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
skills-installer
A CLI tool to install and manage agent skills that comply with the agentskills spec across multiple AI coding clients. Browse and discover available skills at claude-plugins.dev/skills.
Features
- 🔍 Interactive Search - Discover and install skills interactively
- 🚀 Simple CLI - Clean, intuitive command-line interface
- 📦 Universal Registry - Access skills all public agent skills
- 🌍 Global & Local - Install skills globally or per-project
- 🎯 Multi-Client Support - Install skills for different coding clients
Installation
npm install -g skills-installerOr use directly with npx:
npx skills-installer install @anthropics/skills/frontend-designWhat are Agent Skills?
Agent Skills are specialized capabilities that extend AI coding assistants like Claude Code. Each skill follows the agentskills specification - a standard format for defining AI agent capabilities through markdown files with structured instructions.
Usage
Search for skills
Search across all public skills on GitHub:
skills-installer searchSearch with a specific query:
skills-installer search "frontend design"The search command provides an interactive interface where you can:
- Browse and sort skills ranked by relevance, installs, and GitHub stars
- Select a skill to install directly
- Choose installation scope and target client
Install skills
The install command supports multiple formats:
# Browse all skills from an owner
skills-installer install anthropics
# Browse skills in a specific repo
skills-installer install anthropics/claude-code
# Install a specific skill
skills-installer install anthropics/claude-code/frontend-design
# Install from any GitHub URL
skills-installer install https://github.com/owner/repo/tree/main/skills/my-skillInstall to project directory
skills-installer install anthropics/claude-code/pdf --project
# or
skills-installer install anthropics/claude-code/pdf -pProject skills are only available in the current project directory.
Update an existing skill
Simply run the install command again - it will automatically update:
skills-installer install anthropics/claude-code/frontend-designList installed skills
skills-installer listShows all installed skills with their installation scope (global/project) and paths.
Target specific clients
skills-installer install @anthropics/skills/xlsx --client cursorCurrently supported clients:
claude-code(default)ampcodexcursorwindsurfgithubvscodegeminigooselettaopencodeantigravitytraeqodercodebuddy
Commands
| Command | Description |
|---|---|
search [query] |
Search across all public skills on GitHub |
install owner |
Browse all skills from owner's repos |
install owner/repo |
Browse skills in a specific repo |
install owner/repo/skill |
Install a specific skill |
install <git-url> |
Install from HTTPS, SSH, or direct path |
list |
List all installed skills |
Options
| Option | Alias | Description |
|---|---|---|
--client <name> |
Target AI coding client (default: claude-code) | |
--project |
-p |
Install to current project directory |
Skill Identifier Format
Skills can be identified using multiple formats:
owner- Browse all skills from owner's repositoriesowner/repo- Browse skills in a specific repositoryowner/repo/skill- Install a specific skillhttps://github.com/owner/repo/tree/main/skills/skill-name- Direct GitHub URL
Where are skills installed?
Global installation (claude-code):
~/.claude/skills/
Project installation:
./.claude/skills/(in your current directory)
Examples
# Search for skills interactively
skills-installer search
# Search with a specific query
skills-installer search "frontend design"
# Browse all skills from an owner
skills-installer install anthropics
# Browse skills in a specific repo
skills-installer install anthropics/claude-code
# Install a specific skill globally
skills-installer install anthropics/claude-code/frontend-design
# Install a skill to current project
skills-installer install anthropics/claude-code/frontend-design --project
# Install from a GitHub URL
skills-installer install https://github.com/owner/repo/tree/main/skills/my-skill
# Install skill for a specific client
skills-installer install anthropics/claude-code/frontend-design --client cursor
# List all installed skills
skills-installer listLicense
MIT