Ecosystem
Seven strategic products that extend the core platform — from free risk tooling and open source SDKs to certification, APIs, and insurer partnerships.
Drop-in primitives for teams that need guardrails now and a clean upgrade path to the full AgentCompliant platform later.
npm install @agentcompliant/governance-sdk
Illustrative API — package name and methods align with our published SDK when released.
import { govern } from "@agentcompliant/governance-sdk";
const client = govern({ apiKey: process.env.AC_SDK_KEY });
await client.beforeToolCall({
agentId: "support-1",
tool: "crm.update",
args: { recordId: "r_9f2" },
});
// ... run your agent ...
await client.afterToolCall({ ok: true, summary: "Updated ticket" });