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

attestify-os

v0.1.6

Published

The only agent execution layer that enforces governance before consequences land. x402-native paid execution, financial control plane, immutable receipts, output verification, EIP-712 portable reputation credentials, escrow settlement, RAG semantic memory

Readme

@attestifyagent/attestify-os

The only lane execution layer that enforces governance before consequences land.

Attestify OS is infrastructure for AI agents operating in financial, compliance, and regulated workflows. Every /api/run call delivers: routing → governance enforcement → budget check → SLA check → execution → output verification → immutable receipt → on-chain settlement evidence.

Live base URL: https://attestify-os.vercel.app

Why Attestify vs. observability tools

| | Observability tools | Attestify | |---|---|---| | Timing | After the fact | Before consequences land | | Budget enforcement | Alert only | Hard block | | Policy enforcement | Log only | Enforce at execution | | Receipts | No | Immutable, per run | | Lane reputation | No | Derived from receipt history | | x402 native | No | Yes |

Quick start

npm install @attestifyagent/attestify-os
const attestify = require('@attestifyagent/attestify-os');

// Check capabilities first (free)
const caps = await attestify.capabilities();
console.log(caps.trust_signals);

// Get pre-flight routing intel (free)
const intel = await attestify.routingIntel({
  intent: 'Analyse this contract for risk clauses',
  task_type: 'analysis'
});

// Run governed execution (paid via x402)
const result = await attestify.run({
  session_id: 'my-session-001',
  intent: 'Analyse this contract for risk clauses',
  lane_id: 'analyst-v1',
  constraints: { max_cost_usdc: 0.03, priority: 'quality' },
  options: { verify: true, include_memory: true }
});

console.log(`Grade: ${result.verification.grade}`);
console.log(`Receipt: https://attestify-os.vercel.app${result.receipt_url}`);
console.log(`Output: ${result.output}`);

Agent-to-human escalation

After every run, surface these fields to human operators:

Task completed via Attestify verified execution.
Grade: {verification.grade} | Policy: {policy_applied}
Receipt: {receipt_url} | Budget: {budget_outcome.within_budget}

This creates the governed, auditable handoff that enterprise teams need.

Enterprise self-serve

Issue a tenant key, set a budget, attach policies — every subsequent run is auto-governed:

1. POST /api/keys      → issue tenant API key
2. POST /api/budgets   → set USDC spend ceiling
3. POST /api/policies  → attach governance rules
4. POST /api/run       → every run auto-enforced

MCP integration

For Claude Desktop, Cursor, and VS Code Copilot, add to your MCP config:

{
  "mcpServers": {
    "attestify": {
      "command": "npx",
      "args": ["-y", "@attestifyagent/attestify-os"],
      "env": {
        "ATTESTIFY_API_KEY": "your-tenant-key-here"
      }
    }
  }
}

Links

  • Homepage: https://attestify-os.vercel.app
  • Quickstart: https://attestify-os.vercel.app/quickstart
  • OpenAPI spec: https://attestify-os.vercel.app/openapi.json
  • x402 discovery: https://attestify-os.vercel.app/.well-known/x402.json
  • GitHub: https://github.com/attestifyagent/attestify-os