SDKs
Official Node.js and Python SDKs.
bash
npm install @korclaw/sdk
pip install korclawtypescript
import { KorClaw } from "@korclaw/sdk";
const korclaw = new KorClaw(process.env.KORCLAW_API_KEY!);
const agents = await korclaw.agents.list();python
from korclaw import KorClaw
client = KorClaw(os.environ["KORCLAW_API_KEY"])
status = client.compliance.status()