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

@frlabs/axiom-sdk

v0.1.0

Published

Verifiable inference provenance for autonomous AI agents

Readme

AXIOM Protocol SDK

The official TypeScript/React SDK for the AXIOM Protocol — verifiable inference provenance for autonomous AI agents.

npm version License: MIT

AXIOM Protocol provides an immutable, cryptographically verifiable audit trail for consequential AI decisions. If your agent is trading capital, making medical suggestions, or executing enterprise tasks, logs aren't enough. You need verifiable proof.

Why AXIOM?

  • Undeniable Proof — Cryptographic receipts prove exactly what input went to what model at what time.
  • Instant Regulatory Compliance — Meet EU AI Act Article 12 and SEC 17a-4 requirements out of the box with auto-generated compliance reports.
  • Zero Drop-in Friction — Wraps existing OpenAI/Anthropic/Google clients without changing your application code.

Architecture Highlights

[Your LLM Call] ──► [Auto-hash] ──► [Ed25519 Signed] ──► [TEE Attested] ──► [Base Mainnet Anchored]

Install

npm install @axiom-protocol/sdk

5-Minute Integration

Drop-in wrap your existing OpenAI client in exactly 2 lines. Every completion is automatically hashed, signed, and anchored to an EVM blockchain for permanent verifiability.

import OpenAI from 'openai';
import { wrapOpenAI, AxiomClient } from '@axiom-protocol/sdk';

// 1. Initialize AXIOM Client
const axiom = new AxiomClient({ apiKey: process.env.AXIOM_API_KEY });

// 2. Wrap your OpenAI client
const openai = wrapOpenAI(new OpenAI(), axiom, { 
   modelId: 'gpt-4o',
   agentId: 'autonomous-trading-bot-v1' 
});

// 3. Make routine calls as usual!
const response = await openai.chat.completions.create({
  model: 'gpt-4o',
  messages: [{ role: 'user', content: 'Execute trade for 100 ETH' }]
});

// AXIOM intercepts and signs the transaction transparently.
// Access the receipt metadata directly on the response:
const receiptId = (response as any)._axiomReceipt.receipt_id;
console.log(`Verified Inference: https://axiom.sh/receipt/${receiptId}`);

Offline / Machine Verification

axiom verify receipt-uuid-1234
■ AXIOM RECEIPT VERIFICATION
  ID: receipt-uuid-1234
  
  ✓ VALID RECEIPT

  ✓ ECDSA Signature
  ✓ Append-only Hash Chain
  ✓ Model Registry Identity
  ✓ TEE Attestation Hardware Binding
  ✓ L1 EVM Anchored
  ○ ZK Inference Circuit

Compliance Table

| Regulation | Requirement | AXIOM Coverage | | --- | --- | --- | | EU AI Act | Article 12: Auto-logging of consequential systems. | AxiomReceipt captures and hashes exact inference pairs globally. | | SEC 17a-4(f)(2) | Broker-dealer WORM audit trail logging. | EVM Mainnet Anchor provides immutable timestamping. | | NIST AI RMF | Measure 2.5: Identifiability over time mapping. | ModelRegistry mapping ensures model substitution detection. |

Self-Hosting

You can run your own entire Attestation Bridge for fully sovereign zero-trust routing.

git clone https://github.com/axiom-protocol/axiom
cd axiom/infra
docker compose up -d

Documentation

Contributing

The AXIOM Core SDK is currently in early-access alpha. We are taking active PRs for missing LLM provider middleware and offline verification adapters for additional smart contract networks.

License

MIT