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

agent-skins

v1.0.1

Published

CLI for the agent-skins marketplace — give your AI agent a personality

Readme

agent-skins CLI

The official CLI for skins.sh — give your AI agent a personality.

Install & usage

No install required. Use with npx:

npx agent-skins add jack-sparrow

Or install globally once:

npm install -g agent-skins
skins add jack-sparrow

Commands

skins add <name>

Installs a skin into your project. Auto-detects the right config file based on what's in your directory.

# Auto-detect (finds CLAUDE.md, .cursor/rules, AGENTS.md, etc.)
npx agent-skins add jack-sparrow

# Target a specific agent
npx agent-skins add sherlock-holmes --agent cursor
npx agent-skins add yoda --agent codex
npx agent-skins add tony-stark --agent gemini

# Specify the file directly
npx agent-skins add noir-detective --target path/to/CLAUDE.md

# Install globally (applies to all Claude Code sessions)
npx agent-skins add stoic-philosopher --global

# Preview without making changes
npx agent-skins add mad-scientist --dry-run

Supported --agent values:

| Value | Writes to | |-------|-----------| | claude | CLAUDE.md | | cursor | .cursor/rules | | codex | AGENTS.md | | gemini | GEMINI.md | | windsurf | .windsurf/rules | | raw | skin.md (standalone) |

skins list

Browse all available skins.

npx agent-skins list

# Filter by category
npx agent-skins list --category fictional
npx agent-skins list --category archetype

skins info <name>

Show full details about a skin before installing.

npx agent-skins info wednesday-addams

skins search <query>

Search skins by name, tag, or description.

npx agent-skins search witty
npx agent-skins search detective
npx agent-skins search calm

skins remove <name>

Remove an installed skin from your config file.

npx agent-skins remove jack-sparrow

# Remove from a specific file
npx agent-skins remove jack-sparrow --target CLAUDE.md

How it works

  1. skins add <name> fetches the SKIN.md from the GitHub registry
  2. It auto-detects your agent config file (CLAUDE.md, .cursor/rules, etc.)
  3. It wraps the skin content in HTML comment markers for clean install/remove:
    <!-- skins:start:jack-sparrow -->
    [skin persona prompt]
    <!-- skins:end:jack-sparrow -->
  4. Your agent reads the persona on next session start

Publishing to npm

The CLI lives in the cli/ folder of the agent-skins repo.

cd cli
npm publish

Once published, users can run npx agent-skins add <skin> and it fetches skins live from the GitHub registry — no local install of the skins themselves needed.