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

@jefflee2002/agentskills

v0.1.1

Published

CLI tool to install AI agent skills from the AgentSkills marketplace

Readme

@jefflee2002/agentskills

CLI tool to install AI agent skills from the AgentSkills marketplace

Install skills directly from agentskills.cv to all your AI agents with a single command.

Features

  • 🚀 One command, every agent - Automatically detects and installs to Claude Code, Cursor, Codex, OpenClaw, and more
  • 🔍 Search marketplace - Find skills directly from the CLI
  • 🔄 Convert skills - Convert existing skills to OpenClaw format
  • 📦 Manage installations - List installed skills across all agents

Quick Start

# Install a skill
npx @jefflee2002/agentskills install notebooklm

# Search for skills
npx @jefflee2002/agentskills search "git commit"

# List installed skills
npx @jefflee2002/agentskills list

# Show detected agents
npx @jefflee2002/agentskills agents

Installation

No installation required! Use npx to run the CLI directly:

npx @jefflee2002/agentskills <command>

Or install globally:

npm install -g @jefflee2002/agentskills

Usage

Install a skill

# Install to project (local)
npx @jefflee2002/agentskills install <skill-name>

# Install globally
npx @jefflee2002/agentskills install <skill-name> --global

Search skills

npx @jefflee2002/agentskills search "your query"

Convert skills

Convert existing skill files or GitHub repos to OpenClaw format:

# Convert local file
npx @jefflee2002/agentskills convert ./my-skill.md

# Convert GitHub repo
npx @jefflee2002/agentskills convert https://github.com/user/repo

# Convert and install
npx @jefflee2002/agentskills convert ./my-skill.md --install

List installed skills

# List project skills
npx @jefflee2002/agentskills list

# List global skills
npx @jefflee2002/agentskills list --global

Show detected agents

npx @jefflee2002/agentskills agents

Supported Agents

  • Claude Code - .claude/skills/ (project) or ~/.claude/skills/ (global)
  • Cursor - .cursor/skills/ (project) or ~/.cursor/skills/ (global)
  • Codex CLI - .codex/skills/ (project) or ~/.codex/skills/ (global)
  • OpenClaw - skills/ (project) or ~/.openclaw/skills/ (global)
  • OpenCode - .opencode/skills/ (project) or ~/.opencode/skills/ (global)

Commands

| Command | Description | |---------|-------------| | install <name> | Install a skill to detected agents | | search <query> | Search skills on the marketplace | | convert <source> | Convert file or URL to OpenClaw format | | list | List installed skills | | agents | Show detected AI agents |

Options

| Option | Description | |--------|-------------| | --global, -g | Install to global skills directory (~/) | | --install | With convert: install after converting | | --help, -h | Show help message | | --version, -v | Show version |

Examples

# Install a skill globally
npx @jefflee2002/agentskills install commit-analyzer --global

# Search for git-related skills
npx @jefflee2002/agentskills search "git"

# Convert a GitHub skill to OpenClaw and install
npx @jefflee2002/agentskills convert https://github.com/user/skill-repo --install

# List all globally installed skills
npx @jefflee2002/agentskills list --global

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | AGENTSKILLS_API | API base URL | https://agentskills.cv/api |

License

MIT

Links