TrigGuard
TRIGGUARD EXEC_TRACE

Execution trace walkthrough

One path through the system in operational terms: bounded request, evaluation, explicit decision, signed evidence, verification, then execution or withhold. No demo theatrics: labels match TG-01 and runtime integration.

Stages

  1. Request / intent - Caller submits POST /execute with surface, action, context, idempotency_key (see reference spec).
  2. Runtime evaluation - Policy engine evaluates the frame against the active policy version on the hot path (runtime authorization, pre-execution).
  3. Deterministic decision - Outcome is exactly one of PERMIT, DENY, or SILENCE for the same inputs and policy snapshot (deterministic authorization, decision model).
  4. Receipt generation - A signed receipt binds the decision (PERMIT, DENY, or SILENCE) to request context hash and policy/evaluator references (receipts). Enforcement (EXECUTED / BLOCKED) is recorded separately by the runtime.

Proof of operation

What the system outputs, what stays deterministic, and what you can verify offline: one concrete receipt shape (illustrative, not live traffic).

Example decision receipt

{
  "decision": "DENY",
  "decision_code": "TG_RISK_THRESHOLD_EXCEEDED",
  "surface": "spendCommit",
  "policy_hash": "4d2f7a9b1e...",
  "engine_version": "tg-engine@1.3.0",
  "protocol_fingerprint": "TG-01",
  "request_hash": "c38fa1c9ab...",
  "receipt_id": "9f0c1a7e2b...",
  "latency_ms": 42,
  "timestamp": "2026-04-17T15:32:10Z"
}

Every TrigGuard decision produces a deterministic receipt that can be verified independently.

Deterministic output | Signed receipt | Independent verification

  1. Verification - Verifiers check signatures and key material via key discovery; use Verify or verification docs for operational flows.
  2. Execution or withhold - Runtimes record enforcement (EXECUTED / BLOCKED) separately from the receipt decision. Decisions DENY; enforcement is BLOCKED when execution does not proceed. Fail-closed integrations withhold on non-PERMIT.

What to read next

TG-01 reference specification · Decision vs enforcement · Receipt structure · Verify center · Architecture · Pricing

Related concepts

Category pillar

Cluster hub: AI execution governance. Illustrative trace UI (not production data): Trace explorer.