Developers

OSS, local-first, OTel-compatible.

Wire your agent to a Living Cert in five minutes. The whole stack is Apache-2.0 and runs on your laptop or in your VPC.

Three lines, one Living Cert.

quickstart.ts
// 1. install
npm i @vouch/sdk

// 2. wrap your model client
import { instrumentOpenAI, scan } from "@vouch/sdk";
import OpenAI from "openai";

const openai = instrumentOpenAI(new OpenAI(), {
  agentId: "refund-agent",
  baseUrl: process.env.VOUCH_BASE_URL,
});

// 3. ship — every call is now traced, scanned, certified
const reply = await openai.chat.completions.create({ ... });

Everything is hackable.