🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

attestify-os

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

attestify-os

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

latest
Source
npmnpm
Version
0.1.6
Version published
Maintainers
1
Created
Source

@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 toolsAttestify
TimingAfter the factBefore consequences land
Budget enforcementAlert onlyHard block
Policy enforcementLog onlyEnforce at execution
ReceiptsNoImmutable, per run
Lane reputationNoDerived from receipt history
x402 nativeNoYes

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"
      }
    }
  }
}
  • 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

Keywords

mcp

FAQs

Package last updated on 15 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts