@the-bot-club/agentguard
v0.11.0
Published
AgentGuard — runtime governance for production AI agents. APRA CPS 230, EU AI Act and ISO 42001 evidence built-in. Native OpenClaw, LangChain, CrewAI, OpenAI Assistants, AutoGen, and MCP integrations.
Downloads
112
Maintainers
Readme
@the-bot-club/agentguard
Runtime governance for production AI agents. Built for APRA CPS 230, EU AI Act and ISO/IEC 42001 — with native OpenClaw, LangChain, CrewAI, OpenAI Assistants, AutoGen and MCP integrations.
AgentGuard sits between your production AI agent and the systems it touches. Every database write, every customer email, every fund transfer — evaluated against your written policy, logged with a tamper-evident hash chain, and rolled up into the evidence pack your auditor and your board accept.
This package is the TypeScript SDK. For the Python SDK install agentguard-tech. For the compliance evidence pack generator see agentguard.tech/compliance.
Install
npm install @the-bot-club/agentguardQuick start
import { AgentGuard } from "@the-bot-club/agentguard";
const guard = new AgentGuard({ apiKey: process.env.AGENTGUARD_API_KEY });
const decision = await guard.evaluate({
tool: "database_query",
params: { query: "DROP TABLE users" },
});
// → { result: "block", reason: "Destructive SQL operation", riskScore: 95 }OpenClaw fleet governance
Drop-in plugin for any OpenClaw agent. The plugin
registers a before_tool_call hook at priority 100 and blocks any call that
violates the agent's attached policy.
// openclaw.config.yaml plugin section
plugins:
- name: agentguard
package: "@the-bot-club/agentguard"
options:
policy: ./policies/cps230.yaml
evidence: ./evidence/
fleet_id: my-fleet
anchor: true # OpenTimestamps Bitcoin anchor for the audit logOther framework integrations: LangChain, CrewAI, OpenAI Assistants, AutoGen, LangGraph, MCP servers, and any Express / FastAPI middleware target.
Documentation
- Website — agentguard.tech
- Docs — docs.agentguard.tech
- OpenClaw integration — agentguard.tech/openclaw
- Compliance evidence pack — agentguard.tech/compliance
- Source — github.com/thebotclub/agentguard-core
Licence
Business Source License 1.1. Source available, commercial use under licence. © 2026 The Bot Club Pty Ltd (ABN 99 695 980 226).
