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.1.2

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

  • 🚀 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

Install a skill globally

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

Skills installed globally are available across all projects using the selected client.

Install a skill locally

skills-installer install @anthropics/skills/pdf --local

Local 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/skills/frontend-design

List installed skills

skills-installer list

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

Target specific clients

skills-installer install @anthropics/skills/xlsx --client claude-code

Currently supported clients:

  • claude-code (default)
  • codex
  • cursor
  • github
  • letta
  • vscode
  • amp
  • goose
  • opencode

Commands

| Command | Description | |---------|-------------| | install <skill> | Install or update an agent skill | | list | List all installed skills | | help | Show help message |

Options

| Option | Alias | Description | |--------|-------|-------------| | --client <name> | | Target AI coding client (default: claude-code) | | --local | -l | Install to current directory instead of globally |

Skill Identifier Format

Skills are identified using the format: @owner/repo/skill-name

Examples:

  • @anthropics/skills/frontend-design
  • @anthropics/skills/pdf
  • @anthropics/skills/xlsx

Where are skills installed?

Global installation (claude-code):

  • ~/.claude/skills/

Local installation:

  • ./.claude/skills/ (in your current directory)

Examples

# Install the frontend-design skill globally
skills-installer install @anthropics/claude-code/frontend-design

# Install a skill locally for current project
skills-installer install @anthropics/claude-code/frontend-design --local

# List all installed skills
skills-installer list

# Update an existing skill to latest version
skills-installer install @anthropics/claude-code/frontend-design

# Install skill for a specific client
skills-installer install @anthropics/claude-code/frontend-design --client vscode

License

MIT