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

treeship

v0.10.4

Published

Portable trust receipts for agent workflows

Downloads

1,882

Readme

treeship

Portable, cryptographically signed receipts for AI agent sessions.

Treeship turns every AI agent session into a portable, signed receipt. Local-first. Cryptographically verifiable. Works offline. The receipt is yours, not ours.

Install

npm install -g treeship

This package downloads the prebuilt Treeship CLI binary for your platform. No Rust required.

Platform support:

| Platform | Status | | --- | --- | | macOS arm64 / x64 | Supported | | Linux x86_64 (any distro, glibc or musl) | Supported as of v0.10.1. Single static binary covers Ubuntu, Debian, Fedora, RHEL/Rocky, Amazon Linux, Alpine. | | Linux ARM64 | Not yet shipped. | | Windows | Not supported natively. Use WSL. |

The preinstall script exits with a clear message on Windows rather than yielding a broken install. The Linux build is statically linked against musl (verified at release time), so there is no GLIBC requirement; if you see GLIBC_2.39 not found, you have a pre-0.10.1 install — npm install -g treeship@latest to upgrade.

Quick start

treeship init                       # one-time, per machine
treeship session start              # opens a recording session
treeship wrap -- npm test           # captures the command + exit code + file writes
treeship session close              # seals the receipt
treeship session report             # uploads + prints a shareable URL
treeship verify <url>               # anyone can verify, offline, no account

Claude Code users

If you're using Claude Code, install the plugin instead — it auto-records every session via SessionStart / PostToolUse / SessionEnd hooks, no manual session start to remember:

claude plugin marketplace add zerkerlabs/treeship
claude plugin install treeship@treeship

What gets captured

@treeship/mcp and the Claude Code plugin capture:

  • Tool name (e.g. read_file, bash)
  • SHA-256 digest of arguments — not the raw arguments
  • SHA-256 digest of output content — not the raw content
  • Exit code, duration, error message text on failures
  • Actor URI (e.g. agent://claude-code)

What's not captured: raw argument values, raw output content, file contents, environment variable values, secrets. Full inventory at https://github.com/zerkerlabs/treeship/blob/main/TREESHIP.md.

Where data lives

  • Receipts stay in .treeship/sessions/<id>.treeship on your machine
  • They leave only on explicit treeship session report, treeship hub push, or with auto_push: true configured
  • Verification (treeship package verify) is pure WASM, runs entirely offline, doesn't phone home

Documentation

License

Apache-2.0