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

skillmarkdown

v0.16.11

Published

Registry and workspace CLI for authoring, publishing, and installing SKILL.md-based AI skills

Readme

skillmarkdown

npm version License: MIT

npm-like lifecycle for agent skills: create, publish, install, tag, deprecate, and unpublish.

Why skillmd

  • Publish and manage versioned agent skills.
  • Install directly or from a workspace skills.json.
  • Support built-in agent targets plus custom:<slug>.

Install

npm i -g skillmarkdown

Or run one-off commands with:

npx skillmarkdown <command>

Quickstart (60 seconds)

# 1) Author a new skill
mkdir my-skill && cd my-skill
skillmd init --template minimal
skillmd validate --strict

# 2) Authenticate and publish
skillmd login
skillmd publish --version 1.0.0 --tag latest --access public

# 3) Discover and inspect
skillmd search
skillmd view @username/my-skill
skillmd history @username/my-skill

# 4) Consume and maintain installs
skillmd use @username/my-skill
skillmd use -g @your-org/internal-skill
skillmd list
skillmd remove @username/my-skill
skillmd update --all

Workspace install (skills.json)

Use skillmd install for declarative, workspace-level installs.

{
  "version": 1,
  "defaults": {
    "agentTarget": "skillmd"
  },
  "dependencies": {
    "@username/research-skill": {
      "spec": "latest",
      "agentTarget": "claude"
    },
    "@username/ops-skill": {
      "spec": "^1.2.0"
    }
  }
}
# Install all declared dependencies
skillmd install

# Remove undeclared lock/install entries
skillmd install --prune

Notes:

  • skills.json is the declared intent.
  • skills-lock.json is CLI-owned resolved state, rewritten after successful installs/updates.
  • skillmd use remains available for one-off installs outside manifest flow.
  • Use skillmd use -g <skill-id> for global installs, which is useful for internal/shared skills outside a single workspace.
  • For the default skillmd target, global installs go under ~/.agent/skills/<skill>.
  • The CLI still keeps auth/session/config and the global lockfile under ~/.skillmd/...; that is metadata, not the installed skill location.

Authentication

skillmd login uses interactive email + password sign-in against Firebase and then validates the registry-backed account profile.

For API-calling commands, auth precedence is:

| Priority | Source | Example | | -------- | ------------------- | ------------------------------------------------------ | | 1 | CLI flag | skillmd --auth-token <token> publish --version 1.2.3 | | 2 | Environment | export SKILLMD_AUTH_TOKEN=<token> | | 3 | Interactive session | skillmd login |

Token scope model:

  • read: read endpoints
  • publish: read + publish/tag writes
  • admin: publish + lifecycle + token management

Organization automation:

  • organization access tokens are created from the web organization management page
  • use them for org-owned automation with an explicit owner target, for example:
SKILLMD_AUTH_TOKEN=skmd_dev_tok_... skillmd publish --owner facebook --version 1.2.3

Commands

  • Authoring: init, validate, publish
  • Discovery: search, view, history
  • Consumption: use, install, list, remove, update
  • Release: tag, deprecate, unpublish
  • Auth and org: login, logout, whoami, token, org

Support

License

MIT