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

aispm

v1.1.2

Published

AI Skills Package Manager – install AI skills from the terminal

Readme

aispm

AI Skills Package Manager — install AI skill packages from the terminal.

Like npm, but for AI skills. One command to install verified, community-built skills for Claude, GitHub Copilot, Amazon Q, Kiro, and more.

Quick Start

npx aispm add readme-writer

That's it. The skill is fetched from the registry and placed in the correct folder for its AI model.

Install globally

npm install -g aispm

Commands

| Command | Description | | --- | --- | | aispm add <name> | Install a skill | | aispm remove <name> | Remove a skill | | aispm list | List installed skills | | aispm search [query] | Search the registry | | aispm info <name> | Show skill details | | aispm update [name] | Update installed skill(s) |

Examples

# Install a Claude skill
aispm add code-reviewer

# Search for testing skills
aispm search testing

# Search for Claude-specific skills
aispm search --model claude

# Show details
aispm info readme-writer

# Update all installed skills
aispm update

# Remove a skill
aispm remove code-reviewer

Where skills go

Skills are installed to the correct directory based on which AI model they target:

| Model | Install path | | --- | --- | | Claude | .claude/commands/<name>.md | | GitHub Copilot | .github/instructions/<name>.instructions.md | | Amazon Q | .amazonq/rules/<name>.md | | Kiro | .kiro/rules/<name>.md | | Others | .aispm/skills/<name>.md |

Manifest

Installed skills are tracked in aispm.json at your project root:

{
  "skills": {
    "readme-writer": {
      "version": "1.0.0",
      "model": "claude",
      "path": ".claude/commands/readme-writer.md",
      "installedAt": "2026-04-05T12:00:00.000Z"
    }
  }
}

Custom registry

Point to a different registry with the AISPM_REGISTRY environment variable:

AISPM_REGISTRY=http://localhost:3001 aispm search

License

MIT