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

trustbundle

v0.1.0

Published

Pack AI agent execution traces into signed, verifiable bundles for audit and compliance.

Downloads

93

Readme

trustbundle

Pack AI agent execution traces into verifiable bundles for audit, compliance, and incident investigation.

Why

AI agents make autonomous decisions, but when something goes wrong, you need to explain what happened — not just observe or control it.

trustbundle takes agent execution traces from any source and seals them into a single, integrity-protected bundle that you can hand to auditors, attach to incident reports, or archive for compliance.

Quick Start

npm install -g trustbundle

# Initialize a project
trustbundle init

# Build a bundle from trace files
trustbundle build traces.jsonl

# Verify bundle integrity
trustbundle verify .trustbundle/bundles/<bundle_id>.json

# Show bundle summary
trustbundle show .trustbundle/bundles/<bundle_id>.json

Design Principles

  1. Independence — Works standalone without agentbond or agent-trust-telemetry. Accepts any JSONL as input.
  2. Single Responsibility — Build, verify, and show bundles. Nothing else.
  3. Machine Verifiability — A bundle is a single self-contained file, verifiable by program. Human-readable output is the show command's job.
  4. Progressive Trust — MVP uses digest (tamper detection) only. Signatures come in the next phase.
  5. Adapter Design — Input sources are abstracted via adapters, so adding new sources never touches core logic.

Commands

| Command | Description | |---|---| | trustbundle init | Initialize configuration in the current directory | | trustbundle build <file...> | Build a TrustBundle from input files | | trustbundle verify <bundle.json> | Verify bundle integrity via digest re-computation | | trustbundle show <bundle.json> | Display a human-readable bundle summary |

Adapters

| Adapter | Input Format | Status | |---|---|---| | jsonl | Generic JSONL (one JSON object per line) | MVP | | agentbond | agentbond AuditRecord[] (JSON array) | MVP | | otel | OpenTelemetry spans | Planned |

Related Projects

| Project | Role | |---|---| | agentbond | Authorization & audit layer — bundle event source | | agent-trust-telemetry | Runtime contamination detection — bundle event source |

Together these form the agent trust stack: before (authorization) → during (telemetry) → after (trustbundle).

Status

v0.1.0 — MVP (digest-only integrity verification)

  • Signature support planned for v0.2
  • KMS integration planned for v1.0

Contributing

See CONTRIBUTING.md for guidelines.

License

MIT