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

skf-cli

v0.1.1

Published

Fuzzy-find AI-agent skills (Claude Code, Codex, OpenCode, Pi) by name or description.

Readme

skf — fuzzy skill finder

Find that AI-agent skill you know exists but can't remember the name of.

Most skills are manually invoked (disable-model-invocation: true), and the built-in slash menus only fuzzy-match skill names — not their descriptions. So if you remember what a skill does but not its exact name, you're stuck.

skf fuzzy-searches across name + description of every SKILL.md it can find, previews the match, and prints (and copies) the invocation token so you can paste it straight into your agent.

It is read-only — it never touches a SKILL.md, so manual invocation keeps working exactly as before.

Agent-agnostic

SKILL.md is a shared convention. skf scans the skill directories of multiple agents and dedups by name (newest version wins):

| Agent | Scanned roots | |-------------|-------------------------------------------------| | Claude Code | ~/.claude (incl. plugins/cache) | | Codex | ~/.codex | | OpenCode | ~/.config/opencode, ~/.opencode | | Pi | ~/.pi, ~/.config/pi | | Project | <git-root>/{.claude,.codex,.opencode,.pi,.skills} | | Custom | anything in $SKF_PATHS |

Roots are scanned in priority order: custom → project → global.

Install

npm i -g skf-cli       # installs the `skf` command

From source (development):

git clone https://github.com/jmonloop/skf.git
cd skf
npm link               # symlinks the `skf` command to this checkout

Requires Node ≥ 16 and fzf (interactive mode only). Clipboard copy is optional and auto-detected: pbcopy / xclip / xsel / wl-copy / clip.exe.

Usage

skf                 # interactive picker: type to filter name+description
skf opsctrl         # picker pre-seeded with a query
skf -p "local test" # print mode (no UI): list "/name — desc" matches
skf -p              # print mode: list every skill
skf -h              # help
  • Interactive: ENTER prints /<name> and copies it to the clipboard. Paste it into your agent.
  • Print mode needs no TTY, so inside a Claude Code / agent TUI you can run ! skf -p auth and the matches land right in the conversation.

Config

| Env var | Default | Purpose | |--------------|---------|----------------------------------------------------| | SKF_PATHS | — | Colon-separated extra roots to scan (highest priority). | | SKF_PREFIX | / | Invocation prefix printed/copied (set "" for none, or e.g. @). |

SKF_PATHS="$HOME/work/.claude:/opt/shared/skills" skf
SKF_PREFIX="" skf -p deploy        # print bare skill names

How it works

  1. Collect every SKILL.md under the configured roots (pruning node_modules and .git), newest version first.
  2. Parse YAML frontmatter name + description (handles folded/literal block scalars), dedup by name.
  3. Interactive mode fuzzy-searches name+description with fzf (with file preview); print mode (-p) ranks precise substring matches, name hits first. Either way, emit the token and copy it to the clipboard.

License

MIT