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

@minion-stack/cli

v0.1.1

Published

The `minion` CLI — orchestrates subprojects via minion.json registry and @minion-stack/env.

Readme

@minion-stack/cli

The minion command — orchestrates subprojects via minion.json, wraps each invocation with 6-layer env resolution via @minion-stack/env.

Install

npm install -g @minion-stack/cli
# or via pnpm:
pnpm add -g @minion-stack/cli

Commands

| Command | Description | | --------------------------- | ----------------------------------------------------------------------------------------- | | minion dev <id> | Run subproject's dev command with resolved env | | minion build <id> | Run subproject's build command | | minion test <id> | Run subproject's test command | | minion check <id> | Run subproject's check command | | minion run <id> <cmd...> | Arbitrary passthrough with env resolved | | minion <id> <cmd...> | Shorthand alias for run | | minion dev --all | Parallel fanout via concurrently across every subproject that declares dev | | minion build/test/check --all | Same fanout for other commands | | minion status | Git status across all subprojects (tabular: branch, dirty, ahead, behind) | | minion doctor | Env validation + Infisical auth + binary availability + @minion-stack/* link-drift | | minion sync-env <id> | Write merged env to <subproject>/.env.local (mode 0600) | | minion rotate-env <id> | Delete .env.local and re-sync | | minion infisical <id> | Print (and try to open) the Infisical dashboard URL for that subproject's project | | minion link <id> | pm link --global every @minion-stack/* into subproject (dev override) | | minion unlink <id> | Revert link state | | minion list | Print registry as a table | | minion branch <id> | Print current short branch (for shell prompts) |

--json flag available on status, doctor, list.

Exit codes

Per Phase 2 context decision D9:

| Code | Meaning | | ---- | ------------------------------------------- | | 0 | Success | | 1 | Generic failure (including link-drift) | | 2 | Config missing or invalid | | 3 | Infisical auth failure | | 4 | Subproject not found in registry |

Prerequisites

  • Node 22+
  • infisical CLI (v0.x+) installed and in PATH
  • INFISICAL_UNIVERSAL_AUTH_CLIENT_ID + INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET set in the shell env (or ~/.config/minion/infisical-auth.json)
  • Subproject package managers on PATH as declared in minion.json (pnpm, bun, npm — whichever the target subproject uses)

Link-drift detection (doctor)

minion doctor scans each subproject's node_modules/@minion-stack/* and classifies each installation:

| State | Meaning | | ----------------- | ------------------------------------------------------------------------------ | | not-installed | Package not present in subproject's node_modules | | symlink-ws | Symlinked to this meta-repo's packages/<pkg> (ok — active dev workflow) | | symlink-ext | Symlinked elsewhere (drift — likely stale pnpm link --global) | | @vX.Y.Z | Regular install, version matches workspace (ok) | | @vX≠ws@vY | Regular install, version does NOT match workspace (drift — stale install) |

If any subproject is in a drift state, doctor exits with code 1.

License

MIT