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

@vorionsys/aurais-verify

v0.5.1

Published

Offline verifier for Aurais proof chains — checks every event's ed25519 signature, hash links, sequence, and key consistency. No network, no API key. The companion to the signed chains emitted by every @vorionsys/aurais-mcp-* bot.

Readme

@vorionsys/aurais-verify

Offline verifier for Aurais proof chains — the signed, hash-chained event logs emitted by every @vorionsys/aurais-mcp-* bot. No network, no API key: it checks the cryptography that's already in the chain.

Use it

# one-off, no install
npx @vorionsys/aurais-verify chain.json

# from stdin / a pipe
npx @vorionsys/aurais-verify < chain.json
some-aurais-bot | npx @vorionsys/aurais-verify

# machine-readable report (exit code still reflects pass/fail)
npx @vorionsys/aurais-verify --json chain.json

Input may be a bare proof-chain array or a full tool result object with a proofChain field — the verifier finds the chain either way. Exit code is 0 when verified, 1 when it fails or the input is malformed (CI-friendly).

What it checks

For every event in the chain:

| Check | Meaning | |-------|---------| | sig | ed25519 signature is valid over the event's canonical JSON, using the public key embedded in the event | | link | prev_hash equals sha256(canonicalJSON(previous event)) — events can't be reordered or inserted | | seq | sequence number matches position — no events dropped from the middle | | key | the same signing key is used across the whole chain — no mid-chain key swap |

It also recomputes the tip hash (commits to the full length, so truncation is detectable) and reuses the exact canonicalJSON + sha256 from @vorionsys/aurais-core that produced the chain, so digests match byte-for-byte.

What it deliberately does not claim

Verification proves integrity — the chain wasn't altered after signing. It does not, on its own, prove identity — that the signer is the canonical Aurais key. Chains signed with a session-scoped key (the BYOK default) carry a key_id beginning ed25519-ephemeral:; the verifier flags these explicitly. To establish identity, confirm the chain's key_id / public key against a key you trust out of band.

Library API

import { verifyProofChain, verifyProofChainJSON } from "@vorionsys/aurais-verify";

const report = verifyProofChain(parsedChainArray);
// report.ok, report.events[], report.tipHash, report.keyId, report.ephemeralKey

Both functions are pure and never throw on bad input — malformations come back as { ok: false, problems: [...] }.

License

Apache-2.0 — © Vorion LLC