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

actradeck

v0.5.2

Published

ActraDeck bootstrap CLI — verify-and-fetch a signed release, diagnose your machine, and hand off to quickstart. A thin, dependency-free wrapper; the full product ships as a signed GitHub Release + GHCR image.

Readme

actradeck

Bootstrap CLI for ActraDeck — a local-first control plane for coding agents (Claude Code, Codex, …): observe them, redact secrets before they're stored, gate high-risk actions behind approvals, and keep a tamper-evident audit trail.

This package is a thin, dependency-free bootstrapper. It does not contain the product — the full four-tier stack ships as a signed GitHub Release and a signed GHCR image. The CLI helps you get to a running cockpit and verify what you download.

  • Zero runtime dependencies (Node 20+ built-ins only).
  • No install hooks. npm install/npx never changes your machine. Only the explicit actradeck install fetches anything, and only after verifying it.
  • Fail-closed verification. install checks the release's sha256 checksum and its SLSA build provenance before extracting a single file.

Usage

npx actradeck@latest doctor        # diagnose: platform / Node / pnpm / git / Docker (offline-safe)
npx actradeck@latest install       # verify + fetch the latest signed release, then quickstart
npx actradeck@latest up            # print the Docker cockpit command (prints only; runs nothing)
npx actradeck@latest version       # your CLI version + whether a newer stable release exists

Not published yet. The first npm publish is planned for v0.5 (see the project's ADR 0013). Until then the commands above describe the intended flow; the canonical, already-signed way to get ActraDeck is the GitHub Release / GHCR image or scripts/install.sh from the repo.

install

Resolves the latest stable GitHub Release (or --version vX.Y.Z), downloads the source tarball + checksums.txt, verifies the sha256 digest (Node crypto) and the build provenance (gh attestation verify), then extracts and hands off to the repo's own scripts/quickstart.

npx actradeck@latest install --version v0.4.0     # a specific tag
npx actradeck@latest install --dry-run            # resolve + verify only; change nothing
npx actradeck@latest install --skip-provenance    # explicit opt-out (checksum still enforced)

Verification is fail-closed and never silently skipped: the checksum is always enforced, and provenance is verified unless you pass --skip-provenance (which requires you to accept the reduced guarantee). --skip-provenance exists only for machines that cannot install the GitHub CLI.

Environment

| Variable | Default | Meaning | | ----------------------- | -------------------- | --------------------------------------------------- | | ACTRADECK_REPO | actradeck/actradeck| owner/name (or git URL) to resolve releases from | | ACTRADECK_INSTALL_DIR | ~/actradeck | where install extracts the verified source |

License

Apache-2.0.