Skip to main content
Superseded by Intent-Scoped Security (2026-07-18). This page describes a per-action cloud scoring path (local score → GNN → LLM enrichment) that is no longer the product direction: Quint does not score each action against the conversation, the GNN will not be built as described, and no enforcement decision is made by a model. It also shows tool-argument content (data_fields_accessed, extracted field values, cloud-side reasoning) leaving the machine — the current invariant is that the cloud never sees conversation content, only intent frames (text hash-only by default).

Cloud Scoring Integration

The proxy performs local risk scoring first (pattern matching, keyword detection, behavior tracking), then optionally enriches the score via the cloud scoring API which provides graph-based analysis, GNN inference, compliance matching, and LLM-assisted reasoning.

Scoring Flow

Remote scoring never downgrades the local score. The final score is always max(local, remote). This ensures local safety checks are never bypassed by the cloud API.

Configuration

Remote scoring is non-blocking — if the cloud API times out or errors, the proxy falls back to the local score with zero impact on the tool call.

Enriched Event Payload

The proxy sends the full AgentEventCreate schema to the cloud API:

Automatic Field Extraction

The proxy automatically extracts and classifies data fields from tool call arguments: Sensitivity levels: 0 (public) → 1 (internal) → 2 (PII) → 3 (sensitive PII/financial/health) → 4 (auth credentials).

Target Resource Inference

The proxy infers target.resource_type from the MCP server name:

Session Tracker

The proxy tracks the last 20 actions per session in a 30-minute sliding window, providing behavioral context to the cloud API.
The session tracker also provides local behavioral signals:

Action Classification

Tool calls are classified into canonical domain:scope:verb format: Verbs are inferred from tool name prefixes: In forward proxy (HTTP) mode: http:{domain}:{method}.{path_slug}.

Score Response

The cloud API returns a 4-layer score decomposition:
All enrichment fields (compliance refs, behavioral flags, score decomposition, GNN score, confidence) are persisted to the audit log for dashboard display.

Depth & Burst Penalties

The local scoring engine applies additional penalties for nested agents and burst behavior: