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

@czap/cli

v0.10.0

Published

The `czap` command-line tool for LiteShip: JSON-in, JSON-out verbs built for AI agents, with a human-friendly terminal mode.

Readme

@czap/cli

The czap command-line tool: every verb emits one JSON receipt (a structured result line) on stdout and keeps human-readable summaries on stderr, so output pipes cleanly into jq, CI, or an AI agent.

Install this directly when you want the czap verbs in a project or CI. If you're starting a new project, start with liteship instead — it installs this package along with the rest of the stack.

Install

pnpm add -D @czap/cli

30 seconds

npx czap doctor
{"status":"ok","command":"doctor","verdict":"ready","checks":[
  {"id":"node.version","label":"Node.js","status":"ok","detail":"22.22.3"},
  {"id":"pnpm.version","label":"pnpm","status":"ok","detail":"10.32.1"}
]}

You should see one JSON line like the above on stdout (shown wrapped here) and, on a terminal, a colored per-check summary on stderr. Exit code is 0 for an ok receipt, 1 for failed; --ci escalates warnings to 1.

Verbs

| Verb | What it does | | --- | --- | | czap doctor [--fix] [--ci] [--preflight] [--target cloudflare\|astro] | Environment preflight: Node, pnpm, install, build artifacts, git hooks, or focused Cloudflare/Astro host probes. --fix applies cheap remediations. | | czap help · czap version · czap glossary [term] | Help chart, version receipt, vocabulary lookup. | | czap completion <bash\|zsh\|fish> | Tab-completion script — the one verb that writes a raw script, not JSON, to stdout. | | czap describe [--format json\|mcp] | Machine-readable description of every verb and schema. | | czap mcp [--http :3838] | Start the MCP server (requires @czap/mcp-server installed). | | czap astro dev\|status\|stop | Delegate to Astro 7 background dev-server management and emit a JSON receipt. | | czap scene compile\|dev\|render\|verify <path> | Compile, watch, render, or check a scene definition. | | czap asset analyze\|verify | Analyze (beats, onsets, waveform) or check an asset. | | czap capsule list\|inspect\|verify | Work with capsules — self-describing component packages — from the manifest. | | czap audit [--profile <p>] [--consumer] [--findings] | Run the @czap/audit structure/integrity/surface engine; receipt carries the counts (exit 1 on any error finding). --profile <p> audits a custom topology (.json/.js/.mjs/.ts, explicit path, no walk-up); --consumer audits the packages installed under node_modules instead of the repo source; combine them to audit a downstream's OWN topology — the profile becomes the discovery base. --findings adds per-finding detail to the receipt. | | czap check [--ir] | Run the gauntlet gate fold in-process (litelaunchGauntlet) — structured findings + a blocking verdict, no subprocess. --ir selects the IR-enriched fold. | | czap plumb | Plumb-completeness gate: fail on any tests/generated/ placeholder skip or any published package not classified runtime/tooling/deferred. | | czap sbom | Emit the deterministic, content-addressed SBOM (lockfile policy + CycloneDX + completeness) as a reviewable working-tree artifact. | | czap lsp [--ir] | Launch the gauntlet rigor language server over stdio (an editor spawns it) — gauntlet findings as live LSP diagnostics. | | czap gauntlet · czap ship <pkg> · czap verify | Release gate, npm publish, post-publish verification. |

Renders and analyses are cached by a hash of their inputs; pass --force to re-run. Unknown verbs exit 1 with a trailing {"error":"unknown_command"} line on stderr.

Where it sits

@czap/cli is a terminal adapter over @czap/command, the shared command catalog and dispatcher — the MCP server projects the same catalog, and neither imports the other (czap mcp only dynamically loads @czap/mcp-server). Scene and asset verbs execute through @czap/scene and @czap/assets, czap audit wires the @czap/audit engine, and shared types come from @czap/core. See the package surfaces map for the full layout.

If it does nothing

capsule verbs read a capsule manifest, by default reports/capsule-manifest.json under the current directory; outside a repo that has one they fail with a manifest-missing receipt. Set CZAP_CAPSULE_MANIFEST to point at yours.

Docs


Part of LiteShip — powered by the CZAP engine (Content-Zoned Adaptive Projection), distributed as @czap/* packages.