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

@sentropic/cli

v0.2.0

Published

The Sentropic umbrella CLI: binary `stp` (alias `sentropic`) that federates the ecosystem as subcommands (`stp app …`, and reserved federation points `stp graphify …` / `stp h2a …` / `stp remote …`). BR-42a1 ships the subcommand-registration seam; `stp ap

Readme

@sentropic/cli

The Sentropic umbrella CLI. Binary stp (alias sentropic) federates the ecosystem as subcommands (stp = « s'il te plaît », so stp h2a reads "please, h2a"). BR-42a1 ships the subcommand-registration seam plus stp app (delivered by @sentropic/build-cli).

Usage

stp <subcommand> [args...]
stp --version | -v        # CLI version + each registered subcommand's version
stp --help | -h           # list registered subcommands

stp app init <name> [...]  # scaffold a runnable @sentropic chat app
stp app doctor             # non-mutating pre-flight checks
stp app --help             # subcommand-specific help

Unknown subcommands fail with a non-zero exit code and list the available subcommands.

Subcommand registration seam

The umbrella core (src/cli.ts + src/registry.ts) is plugin-agnostic: it reads only the typed Subcommand contract via SubcommandRegistry. Each subcommand package implements { name, summary, version, run(argv) => Promise<number> }; the stp bin (the composition root) imports the plugin (@sentropic/build-cli) and registers it. This keeps the core free of any hard dependency on its plugins — @sentropic/build-cli never imports @sentropic/cli, so there is no cycle. A package-name-convention resolver (auto-discovering installed @sentropic/*-cli) can sit on top of this same contract later (not built here).

Reserved federation points (OUT of BR-42a scope)

stp graphify …, stp h2a …, and stp remote … are reserved federation points — each lives in its own repo and self-registers through the seam above in a later branch. They are intentionally NOT shipped by BR-42a1; only stp app is a real subcommand for the MVP.

Publishing

This is a published @sentropic/* workspace package (tsc build to dist/, ESM, OIDC trusted publisher). The first publish requires the one-shot bootstrap (workflow_dispatch with bootstrap_publish_target=cli, uses NPM_TOKEN) followed by attaching the OIDC trusted publisher on npmjs.com. See rules/workflow.md → Package Publication.