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

@haani090/latticeauth

v0.1.0

Published

See an AI agent's blast radius and verify your audit log offline — agent identity you can prove, not trust.

Readme

@haani090/latticeauth

Agent identity you can prove, not trust.

Two things you can run right now — no signup, no backend, fully offline:

# What's the worst this agent can do if it's fully prompt-injected?
npx @haani090/latticeauth policy blast-radius ./policy.yaml

# Prove an exported audit log wasn't edited after the fact.
npx @haani090/latticeauth audit verify ./audit-export.json

blast-radius collapses your policy's allow − deny into the concrete worst case: reachable scopes, max token lifetime, per-day cap, and which output channels are exfiltration paths — severity-rated, so it fails CI on an over-broad policy before it ships.

audit verify independently recomputes a SHA-256 hash chain over the export and reports ✓ VERIFIED or ✗ TAMPERING DETECTED at the exact offending event. Zero runtime dependencies, no network, no secrets — the audit trail's trustworthiness does not depend on trusting Lattice.

Install

npx @haani090/latticeauth --help        # no install
npm i -g @haani090/latticeauth          # or global: `lattice --help`

Requires Node ≥ 20. Self-contained single binary (everything bundled).

Commands

| Command | What it does | |---|---| | lattice policy blast-radius <policy.yaml> | Worst-case capability set under prompt injection | | lattice audit verify <bundle.json> | Offline tamper-evidence check of an audit export | | lattice mcp wrap <target> | Wrap an MCP server with Lattice OBO identity | | lattice audit tail [agentId] | Stream audit events | | lattice login / status | Control-plane auth + health |

Apache-2.0.