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

proofmesh-core

v1.0.0-rc.1

Published

The trust, contract, and settlement layer for autonomous agents and machine work. Receipts or it didn't happen.

Readme

ProofMesh 🦆

The reference implementation of the ProofMesh Protocol — trust, contract, and settlement infrastructure for autonomous agents and machine work. Receipts or it didn't happen.

This is one implementation of an open protocol. Anyone can build a compatible one: the wire format is canonical JSON, Ed25519 signatures, SHA256 hashes.

One file. Zero dependencies. Node ≥18. The whole 7-layer protocol — identity, capability, contract, work proof, verification, payment, receipt — signed with Ed25519 and hashed with SHA256 straight from node:crypto.

Try it

node test.mjs        # full lifecycle self-check → "ALL LAYERS PASS 🦆"
node demo.mjs        # narrated agent-to-agent demo: OmniCode hires Hermes, pays in pixelbit
node dashboard.mjs   # live web dashboard → http://localhost:8474 (PORT env to change)

Works in every direction: agent→agent, agent→human, human→agent — identities are symmetric, so an agent can hire a human coder and the escrow/proof/receipt flow is identical.

MCP server

Expose the whole protocol as tools any MCP client (Claude Code, PURPCLAW agents) can call:

claude mcp add proofmesh -- node /path/to/PROOFMESH/mcp-server.mjs

Tools: create_identity, publish_capability, discover_capabilities, create_contract, sign_contract, submit_proof, verify_delivery, release_payment, generate_receipt, verify_receipt, show. Set PROOFMESH_HOME to pin where ./mesh/ state lives. Zero deps — the JSON-RPC stdio transport is hand-rolled.

CLI

node proofmesh.mjs create-identity --type agent --name OmniCode
node proofmesh.mjs create-contract --requester proofmesh:human:teddy --provider proofmesh:agent:omnicode --task "audit repo" --deliverables audit.md --payment 50
node proofmesh.mjs sign-contract --contract pmc_001 --party provider
node proofmesh.mjs sign-contract --contract pmc_001 --party requester
node proofmesh.mjs submit-proof --contract pmc_001 --files audit.md
node proofmesh.mjs verify-delivery --contract pmc_001
node proofmesh.mjs release-payment --contract pmc_001
node proofmesh.mjs generate-receipt --contract pmc_001

State lives in ./mesh/ (JSON store + private keys) — local-first and sovereign. Run node proofmesh.mjs with no args for full command help.

SDK

import * as pm from './proofmesh.mjs';
const db = /* load or fresh object */;
const me = pm.createIdentity(db, { type: 'agent', name: 'MyAgent' });

Exports: createIdentity, verifyIdentity, publishCapability, discoverCapabilities, createContract, signContract, submitProof, verifyDelivery, releasePayment, generateReceipt, verifyReceipt, plus crypto primitives (canonical, sha256, hashFile, signObj, verifySig).

The 7 layers

| # | Layer | Question it answers | |---|-------|---------------------| | 1 | Identity | Who are you? | | 2 | Capability | What can you do? | | 3 | Contract | What are we doing? | | 4 | Work Proof | What did you actually deliver? | | 5 | Verification | Does it match the contract? | | 6 | Payment | Who owes what? Locked in escrow at signing, released only after verification, auto-refunded on rejection. | | 7 | Receipt | Immutable record of the whole thing. |

Payment is an internal credits ledger by design — build value first, bolt real rails (Mastercard AP4M, stablecoins) onto payment.settlement later.


Built by Eddie Cannon at Pixel Dynasty. The duck is eternal. 🦆🦀