npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

skills-installer

v0.2.0

Published

Install agent skills across multiple clients that support agentskills.io

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-installer

Or use directly with npx:

npx skills-installer install @anthropics/skills/frontend-design

What 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 search

Search 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-skill

Install to project directory

skills-installer install anthropics/claude-code/pdf --project
# or
skills-installer install anthropics/claude-code/pdf -p

Project 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-design

List installed skills

skills-installer list

Shows all installed skills with their installation scope (global/project) and paths.

Target specific clients

skills-installer install @anthropics/skills/xlsx --client cursor

Currently supported clients:

  • claude-code (default)
  • amp
  • codex
  • cursor
  • windsurf
  • github
  • vscode
  • gemini
  • goose
  • letta
  • opencode
  • antigravity
  • trae
  • qoder
  • codebuddy

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 repositories
  • owner/repo - Browse skills in a specific repository
  • owner/repo/skill - Install a specific skill
  • https://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 list

License

MIT