Agent capabilities

Approval gate

Preview the v1 server-side policy gate for outbound agent actions.

Release statusV1 · COMING SOONThis page describes the pinned design, not a callable v0 feature

The approval gate will turn plain-English intent into enforceable policy at the same server seam every outbound tool action already crosses.

Intent becomes policyINPUT

A user describes what the agent may do, what must be reviewed, and what must never run.

compile a reviewable policy
Every action is evaluatedGATE

The server-side sandbox combines deterministic rules, organization memory, and an isolated judge before the tool can run.

persist the decision first
Approve, review, or blockRESOLVE

The decision resolves exactly once. Timeout and expiry fail closed, so no outbound side effect can bypass the gate.

one gate, no alternate execution path

The invariant

Tool names remain clean—there will be no _with_approval variants and no second execution path around the gate. An action cannot run before approval is persisted, each approval resolves exactly once, and timeout or expiry fails closed.

Policy inputs

Policy code can combine:

  • deterministic conditions such as recipients, regexes, and budget windows;
  • durable memory inside the caller's organization boundary;
  • an isolated LLM-as-judge for contextual decisions.

The dashboard may demonstrate this state machine during v0, but production enforcement ships in v1. Do not build v0 integrations that depend on an approval response.