DUSK has two implemented evaluation paths: an offline root package and a self-contained HTTP gate example. Both consume the same canonical agent-action shape and apply per-agent behavioural analysis, but they have deliberately different deployment boundaries.
The diagram represents the runnable examples/agent-action-monitor stack. It
does not imply a vector database, policy repository, SIEM, cloud platform, or
human-review service.
- Actions (
dusk.actions) normalise Azure, Bedrock, and generic records into a canonicalAgentAction, learn a trusted per-agent baseline, calculate an anomaly score, and renderALLOW,WOULD-BLOCK, orBLOCK. - Sensors (
dusk.sensor) normalise pcap, live-capture, and Zeek inputs for the packet-detection path. - Detections (
dusk.detections) evaluate network sweep, boundary, lateral, and telemetry signals. - Responders (
dusk.respond) turn findings into alerts or isolation actions. - The root
dusk gatecommand evaluates action files offline. It does not host/v1/gate.
examples/agent-action-monitor owns the Flask /v1/gate service, Docker
Compose stack, trusted sample baseline, prior-refusal memory, bounded in-process
decision history, outbound webhooks, agent harness, and mock downstream target.
Superlinked SIE is a separate inference service. score and extract add
semantic novelty and privileged-entity signals to behavioural analysis;
encode and score power similar-decision lookup. All model-derived signals
fail soft, leaving the deterministic result available.
- A client submits a structured
AgentAction. - DUSK validates it and compares it with that agent's trusted baseline.
- Optional SIE signals and prior-refusal memory add evidence.
- The configured threshold produces an explainable verdict.
- Watch mode returns
WOULD-BLOCKbut forwards the action. Enforce mode returnsBLOCKand prevents the client from calling the target. - Decision and report webhooks fire for every verdict; alerts fire only for refused verdicts.
The trusted baseline is never updated from live requests, which prevents an attacker from slowly teaching malicious behavior as normal.