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

provable-think-verify

v0.1.0-alpha.1

Published

Standalone CLI for verifying provable-think audit-trail receipts. Runs an 11-step verification pipeline against a public-ledger anchor and an auditor's scoped viewing key.

Downloads

291

Readme

provable-think-verify

Standalone CLI for verifying provable-think audit-trail receipts.

Run

npx provable-think-verify --txid <id> --capability <key.json>

11 steps. Signed report. Seconds.

What it does

Runs an 11-step verification pipeline:

  1. Fetch the receipt transaction from the public ledger.
  2. Parse the PRT1 receipt header for the commitment hash, sequence number, hook kind, and agent identity public key.
  3. Hit the operator's /commit-info endpoint for the matching envelope manifest.
  4. Fetch the encrypted envelope from the operator's storage.
  5. Derive the per-event symmetric key via ECDH key exchange between the auditor's private key and the agent's public key.
  6. Decrypt the AEAD payload.
  7. Re-hash the recovered plaintext.
  8. Compare against the on-ledger commitment.
  9. Walk the previous-hash sequence to detect sequence gaps.
  10. Validate the public-ledger timestamp against the envelope's claimed timestamp.
  11. Sign the resulting report with the auditor's verifier key.

Three failure modes, all distinguishable

  • Wrong key — AEAD silence; the verifier reports "out of scope or wrong capability."
  • Tampered envelope — SHA-256 mismatch; ciphertext decrypts but the plaintext hash does not bind to the ledger commitment.
  • Out-of-scope event — missing recipient row; no decryption is attempted.

The auditor cannot confuse "I am not authorized" with "the operator tampered."

Live demo

acme-health.pages.dev shows the verifier running in-browser against a real Cloudflare Workers AI agent emitting real receipts to a real public ledger. Click the red TAMPER button — watch step 10 flip red on AEAD failure.

License

MIT. Copyright (c) 2026 John Calhoun.