Ecosystem

The AgentCompliant Ecosystem — Beyond governance. The standard.

Seven strategic products that extend the core platform — from free risk tooling and open source SDKs to certification, APIs, and insurer partnerships.

OPEN SOURCE

Start governing your AI agents in 5 minutes — free, open source

Drop-in primitives for teams that need guardrails now and a clean upgrade path to the full AgentCompliant platform later.

★ Star on GitHubMIT License

What you get

  • Basic permission checks before tool calls
  • Structured action logging to your sink
  • Simple hash-chained audit trail helper
  • Anomaly alert hooks (threshold-based)

What it doesn't include (upgrade path)

  • Dynamic rules engine tied to live regulations
  • Regulatory mapping & obligation coverage matrices
  • Compliance reports & executive summaries
  • ACAP™ certification workflows
  • Connector & template marketplace

Installation

npm install @agentcompliant/governance-sdk

Quick start (~10 lines)

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" });

← Ecosystem hub