Quick Start
Protect your first AI agent in under five minutes.
1. Get API credentials
Join Early Access and create an API key in the KorClaw dashboard under Settings → API Keys.
2. Install the SDK
bash
npm install @korclaw/sdk3. Send an audit event
javascript
import { KorClaw } from "@korclaw/sdk";
const korclaw = new KorClaw(process.env.KORCLAW_API_KEY!);
await korclaw.audit.log({
agent: "research-agent",
action: "document.summarize",
resource: "report/2026-08",
severity: "medium",
result: "allowed",
});✓ Audit event accepted — the event is now available in the immutable audit stream.