Docs

Quickstart

Obsigna is the trust layer for autonomous agents. You issue a Passport once, delegate scoped Mandates, and every action produces a verifiable Receipt.

Install

pnpm add @obsigna/sdk-client

Verify an action

import { createClient } from "@obsigna/sdk-client";
 
const client = createClient({ baseUrl: process.env.OBSIGNA_API_BASE });
 
const decision = await client.verify({
  passport: agentPassport,
  action: { type: "payment", amountMinor: 4200, currency: "EUR" },
});
 
if (decision.allowed) {
  // proceed — the receipt is already anchored
}

Next steps

Quickstart — Obsigna Docs