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

@agent-pattern-labs/iso-receipts

v0.1.1

Published

Portable signed-work receipt artifacts for AI-agent workflows: capture, pack, verify, inspect, and redact local evidence bundles.

Readme

@agent-pattern-labs/iso-receipts

Portable evidence receipts for AI-agent work.

iso-receipts creates local, dependency-free receipt bundles that can be verified, redacted, inspected, and replayed by other tools. It is the thin artifact layer between runtime traces, Geometra browser evidence, signed proof systems, and vertical workflows such as JobForge.

A receipt archive is a ZIP file, usually named receipt.agent.zip, with:

  • manifest.json - schema, hashes, command metadata, redaction status.
  • events.jsonl - normalized receipt events.
  • artifacts/ - stdout, generated files, screenshots, TSVs, markdown, logs.
  • geometra-replay/ - optional Geometra page models or replay evidence.
  • proof.json - optional external signature/proof payload.
  • verdict.json - optional policy/eval result.

Everything is local-only and model-free.

Install

npm install -D @agent-pattern-labs/iso-receipts

CLI

iso-receipts capture --out receipt.agent.zip -- npm test
iso-receipts verify receipt.agent.zip
iso-receipts inspect receipt.agent.zip
iso-receipts unpack receipt.agent.zip --out receipt.agent
iso-receipts redact receipt.agent.zip --out receipt.redacted.agent.zip

capture records the wrapped command, exit code, stdout/stderr artifacts, and basic platform metadata. It does not upload anything and does not capture the process environment by default.

Directory outputs are replaced only when the destination is empty or already contains an iso-receipts manifest. Non-receipt directories are refused so unrelated files cannot be deleted accidentally.

Receipt IDs are content-derived from the complete manifest. Verification fails for changed metadata, missing or extra payloads, and directory symlinks; receipt directories therefore cannot silently import files from outside the bundle.

Library API

import { createReceipt, packReceipt, verifyReceipt } from "@agent-pattern-labs/iso-receipts";

const receipt = createReceipt({
  subject: "jobforge:application",
  events: [
    { type: "application.submitted", data: { company: "Example", status: "applied" } },
  ],
  artifacts: [
    { path: "artifacts/tracker.tsv", content: "company\tstatus\nExample\tapplied\n" },
  ],
  geometraReplay: [
    { path: "geometra-replay/page-model.json", content: "{}" },
  ],
  verdict: { ok: true },
});

packReceipt(receipt, "receipt.agent.zip");
const result = verifyReceipt("receipt.agent.zip");

Fit With The iso Stack

  • iso-trace observes agent transcripts.
  • iso-redact scrubs sensitive receipt payloads before sharing.
  • iso-ledger records durable workflow truth.
  • agent-proof can sign or challenge the receipt hash.
  • geometra can provide browser page models, screenshots, and replay evidence.

The package lives in iso because receipts are a cross-runtime control artifact, not a browser automation feature or a workflow-specific output format.