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

@cjarero183006/claude-skills

v1.3.0

Published

CLI for installing, managing and discovering Claude Code Agent Skills

Readme

      _                 _                 _    _ _ _
  ___| | __ _ _   _  __| | ___   ___| | _(_) | |___
 / __| |/ _` | | | |/ _` |/ _ \ / __| |/ / | | / __|
| (__| | (_| | |_| | (_| |  __/ \__ \   <| | | \__ \
 \___|_|\__,_|\__,_|\__,_|\___| |___/_|\_\_|_|_|___/

I got tired of manually copying skills between projects. So I built this.

TypeScript Node.js

npm version npm downloads License Tests

npm for Claude Code agent skills

Quick Start · Commands · MCP Servers · Create Your Own


Why I Built This

Claude Code skills are powerful but there's no easy way to:

  • Share skills between projects
  • Discover what others have built
  • Install MCP servers without manual config

I wanted npm install but for AI agent capabilities. So I built it.


Demo

┌─────────────────────────────────────┐
│  Claude Skills Manager              │
│  ─────────────────────────────────  │
│                                     │
│  > Install skill                    │
│    Uninstall skill                  │
│    List installed                   │
│    Search skills                    │
│    MCP Servers                      │
│    Check updates                    │
│    Exit                             │
│                                     │
└─────────────────────────────────────┘

Quick Start

# Run directly
npx @cjarero183006/claude-skills

# Or install globally
npm install -g @cjarero183006/claude-skills
claude-skills

That's it. Interactive menu guides you through everything.


Commands

Skills

| Command | What it does | |---------|--------------| | install <name> | Install from registry | | install --repo <url> | Install from GitHub | | uninstall <name> | Remove a skill | | list | Show installed | | search <query> | Find skills | | outdated | Check for updates |

MCP Servers

| Command | What it does | |---------|--------------| | mcp list | Available MCP servers | | mcp install <name> | Install with guided config | | mcp uninstall <name> | Remove MCP server |


Available Skills

| Skill | What it does | |-------|--------------| | gitflow | Git Flow branching automation | | jira-ticket | JIRA ticket template generator | | atomic-commits | Conventional commits with GitFlow | | dev-docs | Professional README generator |

Browse all: claude-skills search


MCP Servers

MCP servers extend Claude's capabilities with external tools.

Available MCPs

| MCP | What it does | Language | |-----|--------------|----------| | repo-monitor | GitHub monitoring: PRs, CI, rollbacks | Go |

Environment Variables

The CLI walks you through configuration:

┌  Configure repo-monitor
│
◇  GITHUB_TOKEN (required)
│  > ********
│
◇  REPO_OWNER (optional)
│  > myorg
│
└  Configuration complete!

Creating Skills

Skills are just directories with a skill.md and manifest.json.

my-skill/
├── skill.md          # What Claude should do
├── manifest.json     # Metadata
└── examples/         # Optional examples

manifest.json

{
  "name": "my-skill",
  "version": "1.0.0",
  "description": "What this skill does",
  "author": "your-name",
  "tags": ["tag1", "tag2"]
}

Validate before publishing

claude-skills validate ./my-skill

Architecture

Clean Architecture with dependency injection:

src/
├── application/      # Use cases
├── domain/           # Interfaces
├── infrastructure/   # CLI, services
└── __tests__/        # 62 tests

| Aspect | Choice | |--------|--------| | Architecture | Clean Architecture | | Testing | Vitest (62 passing) | | Build | tsup (ESM) | | CLI UI | @clack/prompts | | Styling | chalk + gradient-string |


Development

git clone https://github.com/jarero321/claude-skills
cd claude-skills
bun install
bun run dev

| Script | What it does | |--------|--------------| | bun run dev | Development mode | | bun run build | Production build | | bun run test | Watch mode | | bun run test:run | Single run |


License

MIT


Report Bug · Request Feature