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

softeneers-tools

v1.1.0

Published

One front door to the Softeneers tools — list, run and wire in 14 zero-dependency AI/dev CLIs through a single command.

Downloads

149

Readme

softeneers-tools

One front door to the Softeneers tools — list, run and wire in 14 zero-dependency AI/dev CLIs through a single command.

npm install softeneers-tools pulls in all 14 tools as dependencies and gives you one binary that discovers, runs and installs them. Each tool is also published standalone under @softeneers/* if you only want one.

Zero runtime dependencies of its own. Node ≥ 18.

Install

# global — gives you the `softeneers-tools` command everywhere
npm i -g softeneers-tools

# or per-project
npm i -D softeneers-tools

# or one-off without installing
npx softeneers-tools list

Usage

softeneers-tools list                                   # all tools + install status
softeneers-tools run <slug> -- <args>                   # run a tool, args after --
softeneers-tools run deterministic-checker -- .          # e.g. score this repo
softeneers-tools run design-language --bin design-lint -- src
softeneers-tools doctor                                  # validate skills in this repo
softeneers-tools init --write                            # wire tools into .claude / .cursor
softeneers-tools help

Everything after -- is passed straight through to the underlying tool.

The tools

| slug | package | what it does | |---|---|---| | deterministic-checker | @softeneers/deterministic-checker | Score a repo on AI-optimization & determinism | | workspace-optimizer | @softeneers/workspace-optimizer | Generate CLAUDE.md / AGENTS.md / .cursor/rules contracts | | feature-structure-creator | @softeneers/feature-structure-creator | Scaffold a feature dossier (md source + html view) | | vercel-deploy | @softeneers/vercel-deploy | Guard-railed Vercel deploys (preview by default) | | railway-deploy | @softeneers/railway-deploy | Dry-run-by-default Railway deploys + secret scan | | github-sync | @softeneers/github-sync | Safe gh branch/PR flow with standard conventions | | design-language | @softeneers/design-language | Interactive design.html (HSL :root) + DESIGN.md: create/get/edit/apply/preview | | oss-track | @softeneers/oss-track | Score a repo against an open-source checklist | | distribution | @softeneers/distribution | Distribute skills to ~/.claude / ~/.cursor or a template | | project-benchmark | @softeneers/project-benchmark | 10-dimension project maturity benchmark | | creator | @softeneers/creator | Scaffold a new cross-tool AI skill | | doctor | @softeneers/doctor | Validate skills against the toolkit standard | | linearizer | @softeneers/linearizer | Flatten a repo's AI-source into one token-budgeted bundle | | handoff | @softeneers/handoff | Write a structured handoff.md before /clear so a fresh agent resumes losslessly |

Run softeneers-tools list to see which are installed () vs not ().

How it works

The wrapper keeps a registry of the 14 tools. For each command it resolves the tool's package from your node_modules, finds the right bin, and dispatches to it with your arguments — so the wrapper itself stays tiny and every tool remains independently versioned and usable on its own. If a tool isn't installed, the wrapper tells you exactly how to add it instead of failing opaquely.

Use them as agent skills

softeneers-tools init writes lightweight skill pointers into a repo so Claude Code and Cursor can invoke any installed tool:

softeneers-tools init            # dry-run: shows what it would write
softeneers-tools init --write    # writes .claude/skills/* and .cursor/rules/*

License

MIT © 2026 Softeneers