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

v0.1.0-alpha.0

Published

Drop-in cryptographic audit trail for Cloudflare Project Think agents. Every lifecycle hook becomes a tamper-evident, hash-chained receipt anchored to a public ledger no operator controls. Selective disclosure via scoped viewing keys.

Readme

provable-think

Drop-in cryptographic audit trail for Cloudflare Project Think agents.

Every lifecycle hook becomes a tamper-evident, hash-chained receipt anchored to a public cryptographic timestamp ledger no operator controls. The plaintext stays encrypted off-ledger under per-event keys. Auditors with the right viewing key get the cleartext. Wrong key gets AEAD silence.

Why

Logs you control are not audit trails. They are testimony. An audit trail is a record an outside party can verify without trusting the operator. provable-think puts the integrity anchor outside the operator's reach, so the answer to "did the operator change the log?" stops requiring trust.

Install

npm install provable-think

Use

import { Think } from "@cloudflare/think";
import { withProvenance, HIPAA_PRESET } from "provable-think";

export class TriageAgent extends withProvenance(Think<Env>, {
  ...HIPAA_PRESET,
  identity: { envBinding: "AGENT_PRIVATE_KEY_HEX" },
  storage:  { primary: "r2", r2: { binding: "PHI_ENVELOPES" } },
  anchor:   { network: "mainnet" },
}) {}

Every turn, every tool call, every model invocation, every chat response, every recovered fiber fires a cryptographically signed receipt to the public ledger in 10 to 30 seconds.

Live demo

acme-health.pages.dev — a three-pane theater showing receipts landing in real time, a persona-toggled selective-disclosure surface, an 11-step verifier, and a tamper button that flips the verifier red on AEAD failure.

Verifier CLI

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

11 steps. Signed report. Seconds. See provable-think-verify for the full pipeline.

Cost

Less than a thousandth of a cent per audited decision. Encrypted envelope storage on Cloudflare R2 at standard rates. License: $0 — MIT, free forever.

Status

0.1.0-alpha.0 — the surface documented above ships today. Ongoing roadmap items (additional lifecycle hook coverage, two-Worker key separation, build provenance) are tracked in the GitHub repo.

License

MIT. Copyright (c) 2026 John Calhoun.