Skip to main content

The accountability engine for AI Agents

AI agents are shipping to production with zero security telemetry. They execute processes, read and write files, make network calls — and nobody is watching. Quint changes that. Quint is an endpoint agent that monitors AI coding assistants and autonomous agents on developer machines. It captures every process execution, file access, and tool invocation as structured events, tracks sessions across agent interactions, and surfaces risk through a centralized dashboard. Think of it as endpoint detection and response (EDR), purpose-built for AI agents instead of humans.

How It Works

End-to-end flow in one page — follow a single tool call from agent → interception → cloud scoring → dashboard.

Architecture

Three-tier design: endpoint agent (truth) + cloud API (aggregation) + dashboard (visibility).

Explore the Platform

Endpoint Security (ES)

Kernel-level ground truth on macOS: process spawns, file I/O, code-signing verification.

Network Extension (NE)

Transparent interception of LLM API traffic on macOS — no env vars, no CA trust dance.

Event Ingestion

How the daemon delivers events to the cloud — batching, overflow, SNS/SQS fan-out.

Edge Daemon

Unifies proxy + ES into one session model, forwards to cloud, holds the signed audit log.

Cloud Learning

Cross-session divergence detection and the fleet learning loop. The cloud sees only intent frames, never conversation content.

Dashboard

Session-centric visibility across every agent, machine, and alert in your org.

How It Works

Quint operates as a system daemon that monitors AI agent activity at the OS level: The daemon detects AI agents through code signing identification — no proxy configuration, no code changes, no agent cooperation required. When an agent like Claude Code spawns a process or accesses a file, Quint captures it as a structured event with full context.

Three-Tier Architecture

Quint’s architecture separates concerns into three layers:
  1. Endpoint Agent (Truth) — The daemon running on each machine. Captures ground-truth system events via Endpoint Security on macOS (Linux via eBPF is on the roadmap — see Platform Coverage). This is the source of truth for what actually happened.
  2. Cloud API (Aggregation) — Go service at api.quintai.dev. Receives events and session lifecycle data, stores in PostgreSQL with row-level security, and serves the REST API for querying.
  3. Dashboard (Visibility) — Next.js app at cloud.quintai.dev. Session-centric UX with drill-down from fleet overview to individual events.
Divergence between what an agent claims to do and what the OS observes is the key security signal.

Production Deployment Flow

Event Model

Every captured action is stored as an event with structured fields:

Tech Stack

Risk Score Bands

The risk score is a shadow-mode corroborating signal, not the enforcement mechanism. Enforcement is deterministic scope evaluation — only an out-of-scope action against a sensitive resource is block-capable. See Intent vs Truth.