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

@tomflow/proflow-platform-cli

v0.1.36

Published

Thin Platform CLI for Module discovery, documentation, package synchronization and lifecycle orchestration.

Readme

@tomflow/proflow-platform-cli

Thin Workspace-level orchestration CLI for ProFlow package discovery, dependency ordering, command forwarding, result aggregation and package-manager operations.

Standard CLI

The top-level management surface is exactly seven commands:

platform install
platform uninstall
platform status
platform setup
platform docs
platform start
platform stop

Removed Platform routes such as modules, preflight, verify, doctor, restart, plan, apply, upgrade and manifest are not routable. Module-specific commands remain owned by their Module and are not proxied by Platform.

All seven commands accept --workspace <path>; without it, the CLI uses process.cwd().

Ownership

Module owns its behavior, private configuration and operational truth.
Platform owns discovery, dependency ordering, invocation, aggregation and package-manager orchestration.
Package manager owns npm dependency mutation.

Platform does not interpret Module-private configuration or recreate a cross-Module configuration bus.

Install / Uninstall

platform install validates or creates the minimal Workspace metadata, discovers the complete governed package set from the Registry, synchronizes that set, validates the installed descriptors, then invokes Module.install in dependency order. It does not perform human setup work.

platform uninstall invokes Module.uninstall in reverse dependency order before package removal. .proflow is Workspace/user data and is preserved unless an owning Module explicitly removes its own artifacts.

Status

platform status validates and aggregates only Module-owned observations:

setupStatus: READY | ACTION_REQUIRED | BLOCKED | FAILED
runtimeStatus: RUNNING | STOPPED | FAILED | NOT_APPLICABLE

There is no Platform-derived configuration status, missing-input list, overall readiness or verification state.

Setup

platform setup scans all discovered Modules in dependency order. It skips READY Modules, invokes Module.setup for every non-ready Module, continues after ACTION_REQUIRED or FAILED, and returns one complete aggregate.

Targeted platform setup --module <moduleRef> re-observes one Module. Human or AI input is collected by the package-owned setup command shown by platform setup; Platform does not accept raw JSON input.

Docs

platform docs invokes and aggregates Module.docs. DOCS.md and SETUP.md remain Module-owned knowledge.

Start / Stop

platform start first completes the dependency-ordered Module.status setup gate. If any applicable Module has setupStatus != READY, no Module.start call is made. Once every Module is ready, starts run in dependency order and fail fast. A start failure does not trigger automatic rollback.

platform stop invokes Module.stop in reverse dependency order and fails fast.

Boundary

The CLI remains a thin, generic orchestration layer. Adding a conforming Module must not require Module-specific Platform business logic.