The Control Plane for AI Actions
Fail-closed execution. Human approvals for risky actions. Cryptographic evidence for every decision. HELM is the deterministic boundary between your agents and production.
The risk is no longer bad answers. It is uncontrolled execution.
AI moved from chat to action
Agents now deploy code, approve payments, and modify infrastructure. The attack surface is the execution path, not the prompt.
Guardrails watch. They don't govern.
Prompt guardrails and tracing tell you what happened after the fact. Neither can prevent a bad action before it executes.
The gap is the execution boundary
Between 'the model decided' and 'the system did it' there is no deterministic authority. HELM closes that gap.
Three invariants. Zero exceptions.
Every agent action passes through a deterministic authorization gate. No shortcuts, no fallback to permissive defaults.
Fail-closed execution boundary
Guardian + CEL policy engineNo policy means no execution. Every action is evaluated against a deterministic policy before any side effect. Deny is the default.
Human approval before impact
Action Inbox + Zero-Standing PrivilegesRisky actions route to the right human. Agents earn task-scoped permission โ never standing broad access.
Signed evidence for every decision
EvidencePacks + Ed25519 + ProofGraphEvery allow or deny produces a cryptographic EvidencePack. Replay, export, and verify offline โ no running instance needed.
Claims backed by mechanism, not marketing
Governed Pipeline
Every agent action passes through a deterministic boundary before execution.
Agent proposals enter the HELM proxy, pass through the Guardian (CEL policy engine), and reach the Executor only after explicit allow. Denied actions never execute.
Run the Gate demoTrust Boundary
Probabilistic AI and deterministic execution never share a trust domain.
The Trusted Computing Base (TCB) is a hard enclave: Guardian, Executor, and receipt generation live inside. Agent reasoning, model calls, and prompt engineering live outside. No cross-contamination.
View architecture docsEvidence Anatomy
Every decision โ allow or deny โ produces verifiable, tamper-evident evidence.
An EvidencePack contains: the original proposal, the policy context, the verdict, a timestamp, and an Ed25519 signature. Packs chain into a hash-linked ProofGraph โ evidence survives log rotation.
Verify an EvidencePackConformance Ladder
Start open-source. Scale governed. Same execution boundary at every tier.
HELM OSS provides the fail-closed kernel. Studio adds the shared control plane (Action Inbox, approvals, dashboards). Enterprise adds jurisdiction-aware execution and policy federation. The boundary contract is identical at every tier.
One boundary. Three scopes.
Start with the OSS execution kernel. Scale into shared control and enterprise policy federation.
HELM OSS
Fail-closed execution kernel
For developers securing local agents, CI/CD pipelines, MCP tool calls, and individual execution boundaries.
HELM Studio
Shared control for teams
Action Inbox, human approvals, evidence dashboards, and company-wide operational oversight for every governed workflow.
HELM Enterprise
Enterprise execution control
Jurisdiction-aware execution, policy federation, audit-ready evidence export, and control across teams and regions.
Built for teams that ship AI into production
For builders
Move from prototype to governed production. Ship higher-autonomy workflows with tighter execution control.
Install HELM OSS. Point one agent at the proxy. Write policy for your highest-risk action. Deploy.
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:8420/v1",
)
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Deploy to staging"}],
)Platform & security teams
Centralize execution control without rewriting every agent wrapper. See what was proposed, what was blocked, and why.
Deploy Studio. Connect existing agent pipelines. Configure approval routes and ZSP policies company-wide.
Enterprises
Secure heterogeneous agent ecosystems with continuous evidence and federated policy control across business units.
Start with one team on Studio. Federate policies across regions. Export evidence to existing compliance and audit tooling.
We want your hardest workflow
The best first deployment is the workflow you care about most โ not the safest one you could have chosen.
Get a tighter first deployment plan
We want the risky workflow, the policy edge cases, and the operator questions you cannot answer with tracing alone.
Apply with the workflow you care about most
Tell us who you are and what you want to govern first.
Frequently asked questions
Guardrails shape model I/O. Tracing records what happened after the fact. HELM sits on the execution path and decides whether actions can run before they execute โ then signs the decision into an EvidencePack.
Swap one base URL or enable the MCP gateway, write policy for your highest-risk actions, and deploy. Most teams go from zero to governed in under a day.
The action is denied before execution. HELM returns a structured reason code and emits a signed EvidencePack explaining which policy blocked it and why.
Yes. EvidencePacks are self-contained and cryptographically signed. Verify them without network access or a running HELM instance.
No. HELM proxies between your framework and the tools it calls. Works with LangGraph, CrewAI, OpenAI Agents SDK, Vercel AI SDK, AutoGen, and any MCP client.
HELM OSS is the fail-closed execution kernel. Studio adds the shared control plane: Action Inbox, approvals, evidence dashboards, and team-wide operational control.