Overview
QWED Agent Verification provides:- Pre-execution checks before agents act
- Budget enforcement to limit costs
- Risk assessment for each action
- Activity logging for audit trails
Registering an agent
Verifying actions
Before an agent executes an action, you must provide anActionContext with a conversation_id and a monotonically increasing step_number. These fields are required — requests without them are rejected.
Conversation controls
QWED enforces runtime guardrails that prevent agents from replaying actions, running in infinite loops, or exceeding conversation length limits. These checks run automatically on everyverify_action call.
How it works
Each call toverify_action must include a conversation_id (identifying the current session) and a step_number (a positive integer that increases with each action in that session). QWED uses these fields to enforce four controls:
Incrementing steps correctly
Thestep_number must be strictly greater than any previously committed step within the same conversation. If an action is denied (for example, due to a loop), that step number is not consumed — you can retry the same step with a different action.
Progress-aware doom loop detection (LOOP-004)
New in v5.1.0
pre_action_state_hash and state_source in the action context:
QWED-AGENT-LOOP-004.
Accepted state_source values:
Validation rules:
pre_action_state_hashmust be a 64-character lowercase hex SHA-256 digest- Both
pre_action_state_hashandstate_sourcemust be provided together — supplying only one is rejected - During gradual rollout, both fields are optional. When the server enables
DOOM_LOOP_GUARD_REQUIRED, they become mandatory
LOOP-004 fingerprints are only committed to the sliding window when the action decision is
APPROVED. Denied and pending actions do not affect the history, preventing false positives from rejected retries.Trust levels
Tool approval policy
Changed in v5.0.2
ToolApprovalSystem classifies every tool call into one of three categories before execution:
Unknown tools are denied by default, regardless of their heuristic risk score. Previously, unknown tools with a low risk score (below 0.3) were auto-approved. This fail-closed behavior ensures that new or unexpected tools cannot execute without being explicitly added to the allowlist.
When an unknown tool is blocked, the response includes the tool name and the computed risk score for debugging:
ToolApprovalSystem configuration.
Risk assessment
Actions are assessed for risk:Decision matrix
Tool approval policy
Changed in v5.0.2
Unknown tools are always denied, regardless of their computed risk score. The blocked response includes the tool name and risk score for debugging:
Adding tools to the allowlist
Register custom tools as safe operations when configuring your agent’s permissions:Budget enforcement
Activity logging
Runtime hardening
New in v5.0.0
Action context enforcement
Everyverify_action call requires an ActionContext with:
The step number must increase with each action in a conversation. Attempts to reuse or decrement step numbers are rejected.
Registered action enforcement
New in v5.1.1
verify_action call must reference an action_type that QWED has registered semantics for. Action types must be either bound to a verification engine or registered as a governed tool with a known risk level. Engine examples: verify_math → math, execute_sql → sql. Tool examples: read_database, send_email. Action types outside those two registries are denied with QWED-AGENT-ACTION-001 before any risk assessment runs.
ACTION_ENGINES or add it to your tool registry with an explicit risk level. Tools registered this way are reported with engine: "tool_control" in the verification response.
Replay and loop detection
The agent service detects and blocks four types of problematic patterns:
Actions are fingerprinted deterministically using
action_type, query, code, target, and parameters. When pre_action_state_hash is provided, the fingerprint also incorporates the world state hash. If a loop is detected, the conversation state is not advanced — the agent can recover by submitting a different action at the same step number.
Fail-closed for unknown action types
QWED denies anyverify_action call whose action_type has no registered engine binding or tool risk level. Action verification is deterministic — actions without explicit semantics cannot be risk-assessed or routed to a verification engine, so the kernel returns a denial instead of falling back to a permissive default.
QWED-AGENT-ACTION-001 releases the in-flight step reservation, so the agent may retry the same step number with a registered action type. Registered action types include the entries in ACTION_ENGINES (such as calculate, verify, prove) and tools listed in TOOL_RISK_LEVELS.
In-flight reservation system
While QWED processes averify_action call, it reserves the step number so concurrent requests cannot claim the same step. QWED releases the reservation if the action is denied, allowing the agent to retry with a different action at the same step.
Budget denial behavior
When a budget check fails, the conversation step is not consumed. This means the agent can retry the same step number after the budget resets without triggering a replay detection error.Fail-closed rate limiting
The Redis-backed sliding window rate limiter fails closed when Redis is unavailable. If the Redis backend encounters an error, all requests are denied rather than allowed, preventing uncontrolled access during infrastructure failures. When Redis is entirely absent at startup, a local in-memory fallback limiter is used instead.Environment integrity verification
On API server startup, QWED runs an environment integrity check (viaStartupHookGuard) before initializing the database. If the environment is compromised, the server refuses to start. This prevents operation in tampered runtime environments.
Timing-safe token verification
Agent token verification useshmac.compare_digest for constant-time comparison, preventing timing side-channel attacks against agent authentication.
Fail-closed on unknown actions
QWED only verifies actions whoseaction_type has explicit, registered semantics. If you submit an action_type that is not bound to a verification engine or a known tool, the request is denied with QWED-AGENT-ACTION-001 before risk assessment runs.
Registered actions fall into two categories:
Anything else — including custom action names, typos, and forward-compatible names that the runtime does not yet recognize — is denied:
- No
verificationblock is returned. Unknown actions never receive an engine label or aVERIFIEDstatus — there is no generic"security"fallback. - The step reservation is released. Because the action was denied, the same
step_numbercan be retried with a registered action (noQWED-AGENT-LOOP-002replay error). - Map custom intents to registered actions. If your agent needs to perform a domain-specific operation, route it through one of the registered verification engines or tool calls rather than inventing a new
action_typestring.