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

@jayofemi/toolbox

v1.5.0

Published

An open library of reusable Claude Code skills, commands, and scripts, with a one-command installer.

Readme

Toolbox

Small, portable tools for Claude Code: skills, commands, and scripts pulled from real daily use, packaged so you can install one in seconds and own it.

Each entry is small and does one thing. They install by copying into your Claude Code config, carry no lock-in, and work with whatever model you run. Read them, change them, keep what is useful.

Quickstart

npx @jayofemi/toolbox

That lists everything and installs the ones you pick into ~/.claude/. To grab one directly:

npx @jayofemi/toolbox add screenshot

Run npx @jayofemi/toolbox list to see the catalog without installing.

What is inside

Two kinds of entry, split by who invokes them:

  • Commands are slash commands you invoke by name, like /screenshot. They install to ~/.claude/commands/.
  • Skills are ones Claude reaches for on its own when a task matches their description, and you can invoke them by name too. They install to ~/.claude/skills/.

Commands

  • screenshot: save a slice of the conversation. A good exchange is easy to lose once a session moves on or compacts, so /screenshot writes the last N prompt-and-reply pairs, with the model that produced them, to a timestamped file in captures/. The useful parts are kept verbatim.
  • startup: open a session cleanly. Stamps today's date so the agent stops guessing it, then reads the project's context files and confirms where things stand.
  • ask-model: ask a chosen model a question. /ask-model haiku What changed in this file? delegates to a subagent on that model and returns its answer, leaving your own session on its model.

Skills

  • wording: lint user-visible text before it ships. Catches em and en dashes, AI-tell constructions, "copy" misused for site text, and jargon on non-technical surfaces, pairing a zero-dependency detector with judgment for the calls a regex cannot make.
  • gatekeeper: scan a repo for secrets and private info before you make it public. Catches keys, tokens, private keys, leaked local paths, and configurable deny terms, with a zero-dependency detector.
  • reroute-task: run a task on a chosen model. /reroute-task haiku <task> hands the work to a subagent on that model and reports back, so your main session keeps its model and only the delegated work runs on the cheaper one.

Manual install

Prefer to copy by hand? A command is commands/<name>.md into ~/.claude/commands/; a skill is the skills/<name>/ folder into ~/.claude/skills/.

Contributing

Small, self-contained, portable contributions are welcome. See CONTRIBUTING.md.

License

MIT. See LICENSE.