@mindburn/helm-autogen
v1.0.2
Published
HELM governance adapter for AutoGen
Maintainers
Readme
helm-autogen
HELM governance adapter for AutoGen.
What it does
Wraps AutoGen agent tool functions with HELM governance:
- Every tool call is evaluated against HELM policy before execution
- Denied calls throw
HelmToolDenyError(fail-closed by default) - Receipts with SHA-256 hashes are collected for every approved execution
- Cross-platform: works in Node.js, Deno, and Bun
Quick start
import { HelmAutoGenGovernor } from "@mindburn/helm-autogen";
const governor = new HelmAutoGenGovernor({ helmUrl: "http://localhost:8080" });
const governed = governor.governTools([
{ name: "search", fn: searchWeb },
{ name: "calculate", fn: doMath },
]);License
Apache-2.0
