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

slashcmds

v1.1.5

Published

Publish AI agent skills to slashcmd from Codex, Claude, other agents, or the terminal.

Readme

slashcmd

Publish an AI agent skill to slashcmd from Codex, Claude, another provider, or the terminal.

Usage

Publish the current skill repo:

npm i -g slashcmds

The global install also copies the provider-neutral slashcmd skill to Codex and Claude Code:

~/.codex/skills/slashcmd
~/.claude/skills/slashcmd

If CODEX_HOME is set, the installer also writes to $CODEX_HOME/skills/slashcmd.

After install, restart or reload your agent and call the skill:

/slashcmd

If npm scripts were skipped or you need to reinstall the skill manually:

slashcmd setup

Publish the current repo from the terminal:

slashcmd --path "$PWD"

Attach docs/demo URL:

slashcmd \
  --url "https://github.com/you/your-skill#readme" \
  --repo-url "https://github.com/you/your-skill"

Publish from a GitHub skill repo URL:

slashcmd \
  --repo-url "https://github.com/you/your-skill"

Install a marketplace skill into Codex:

npx --yes slashcmds install check-code

Human skill names work too:

npx --yes slashcmds install "Check Code"

You can also pass a skill page URL:

npx --yes slashcmds install "https://slashcmd.dev/p/check-code"

Use a custom slashcmd instance:

slashcmd \
  --path "$PWD" \
  --marketplace-url "https://slashcmd.example.com"

Add explicit fields:

slashcmd \
  --path "$PWD" \
  --demo-url "https://github.com/you/your-skill#readme" \
  --screenshot-url "https://raw.githubusercontent.com/you/your-skill/main/screenshot.png" \
  --codex-skill-url "https://github.com/you/your-skill"

Preview without opening the browser:

slashcmd --path "$PWD" --no-open

From an AI Agent

After this package is installed, users can tell Codex, Claude, or another agent:

Use slashcmd to publish this AI agent skill.

The package opens a prefilled slashcmd submit page. The user still signs in with GitHub and confirms publish, so ownership, limits, and payments stay enforced by the marketplace.

By default, the package opens:

https://slashcmd.dev

Bundled AI Skill

The npm package includes the AI agent skill files under:

skill/

That makes the package both a CLI and a distributable skill payload.