AxioRank Docs

Response engine

Act automatically on risk by quarantining an agent, revoking a key, or raising an alert when a rule fires.

Policies decide one call at a time. The response engine reacts to what an agent is doing over time: when a rule's conditions are met, it takes an action (quarantine the agent, revoke its keys, or raise an alert) without a human in the loop. Rules are managed in the dashboard (Detect → Response) or the admin API.

Anatomy of a rule

A rule is conditions → action, with a posture and rate limit:

FieldNotes
toolPatternGlob over the tool name; default *.
riskThresholdFire at or above this risk (0–100).
signalCategorysecret · pii · destructive · injection · egress · bot_spoof · rate_abuse · supply_chain.
detectorA custom content detector id.
requireCriticalOnly when a live secret/key was detected.
windowSeconds + minEventsSustained: N matching events within a window.
actionquarantine_agent · revoke_key · open_alert · notify.
severitylow · medium · high · critical (default high).
modemonitor (simulate) or active (enforce). Default monitor.
cooldownSecondsWon't re-fire on the same agent within this window (default 3600).
priority · enabledLower priority first; rules are toggleable.

A rule needs at least one condition. Most rules watch the tool-call / card path, but two predicates move a rule onto a different path:

  • onKillChain: true: fires only when a multi-step kill chain is detected (read a secret → exfiltrate it), not on single calls.
  • mlThreatClass / mlRiskThreshold: fires only after the ML assessment of a call completes.

Actions

ActionEffectReversible
quarantine_agentLock the agent in the kill switch: every call is denied.Yes, via POST /api/response-actions/{id}/undo.
revoke_keyRevoke all of the agent's API keys immediately.No.
open_alertRaise an auto_response alert to the dashboard and webhooks.-
notifySend a notification over a configured channel.-

Roll out in monitor first

A rule is born in monitor: it records what it would have done, with no effect. Watch it against live traffic, then arm it by setting mode: "active" (PATCH /api/response-rules/{id}).

Cross-tenant threat intel

Verifying an external agent's card is stronger with signal from the whole network. When you opt in (workspace setting threat_intel_enabled), a card you flag as risky contributes an anonymous signal; once three or more distinct workspaces have independently flagged the same identity, it surfaces as enrichment in every verify-card decision and on the public trust registry.

A k-anonymity floor means no single workspace's activity is ever visible. Your flags are never attributable to you, and the lookup that enriches your decisions excludes your own workspace.

Webhooks

The engine emits developer webhook events you can subscribe to:

  • kill_chain.detected: a multi-step attack sequence was recognized.
  • agent.quarantined: an agent was locked (includes source: "auto_response").

Next steps

On this page