Deployment#

CPEX is the enforcement point, but where that point sits is your choice. The same APL policy enforces whether CPEX runs as a gateway in front of a tool server, as an egress sidecar beside an agent, or inside an agent framework. You move the boundary; the policy does not change.

The same policy, any enforcement point#

Take the get_compensation route. It is identical whether CPEX fronts the backend, guards the agent’s egress, or runs inside the agent runtime:

routes:
  - tool: get_compensation
    policy:
      - "require(role.hr)"
      - "delegate(workday-oauth, target: workday-api, audience: workday-api, permissions: [read_compensation])"
      - "taint(secret, session)"
    result:
      ssn: "str | redact(!perm.view_ssn)"

CPEX enforcing the same policy at three settings: as a gateway in front of the tool server, as an egress sidecar beside the agent, and in-framework inside the agent runtime

As a gateway, CPEX sits in front of the tool server and enforces on inbound calls: every request to the backend passes through it. As an egress sidecar, CPEX sits beside the agent and enforces on the agent’s outbound calls: the agent’s tool invocations leave through the sidecar’s proxy. In-framework, CPEX runs inside the agent runtime and enforces operations as the runtime issues them. The enforcement point moves; the route above runs unchanged in all three.

Route forms#

A deployment integration usually expresses routes as a list of - tool: entries, with the policy, args, and result blocks directly under each. This is the same policy you would write in the map-keyed form (see Configuration); the wrapping differs, the rules do not. Pick one form per deployment and keep it consistent.

Placement guidance#

PlacementControlsUse when
Gateway (inbound)every call reaching a backend, from any clientyou own the tool server and want one chokepoint in front of it
Egress sidecar (outbound)every call an agent makes, to any backendyou own the agent and want to guard what it can reach
In-frameworkoperations as the agent runtime issues themyou control the runtime and want enforcement inline

The decision is about which boundary you control and trust, not about policy capability. Identity resolution, PDP calls, delegation, redaction, and tainting all work the same at each.

Inference traffic#

When CPEX guards an agent’s egress, route inference calls directly to the model provider rather than through the policy path, unless you intend to apply policy to them. Otherwise model traffic is evaluated as if it were a tool call. Reserve the enforced path for the operations you actually want mediated.

  • Configuration: the full config structure for a deployment.
  • Patterns: production patterns for rollout and layered enforcement.
  • Identity and Delegation: wiring IdP verification and token exchange in a real stack.