Documentation Index
Fetch the complete documentation index at: https://quintsecurity.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Dashboard
The Quint Dashboard is a Next.js application that serves as the operator interface for CISOs and security engineers. It provides real-time visibility into every AI agent action across your fleet, with risk scoring overlays, policy management, and compliance reporting.Dual Mode Architecture
The dashboard runs in two modes, sharing the same codebase but connecting to different backends:| Local Mode | Cloud Mode | |
|---|---|---|
| URL | http://localhost:8080 | https://app.quintai.dev |
| Hosting | Embedded in the Go daemon (quint watch) | Vercel (multi-tenant) |
| Auth | None (localhost only) | Supabase (login/signup/session) |
| Data source | Go proxy REST API on :8080 | quint-platform API on AWS |
| Scope | Single machine | Entire fleet |
| Use case | Developer workstation monitoring | Organization-wide SOC |
Local mode automatically strips
HTTP_PROXY and HTTPS_PROXY environment variables to prevent a proxy loop where the dashboard’s own requests get intercepted by the daemon.Data Flow
The dashboard never communicates directly with daemons running on enrolled machines. All data flows through the API service: In local mode, the diagram simplifies to a single daemon serving both the dashboard static files and the API endpoints onlocalhost:8080.
Key Views
Event Feed
Real-time stream of every agent action intercepted by Quint proxies across the fleet. Each event displays the action classification (domain:scope:verb), risk score (1-100), verdict (allow/flag/block), and originating agent.
Filters include:
- Agent — filter by specific agent identity or word-based name
- Platform — filter by AI platform (Cursor, Claude Code, Copilot, etc.)
- Risk level — critical, high, medium, low
- Time range — last hour, 24 hours, 7 days, or custom range
- Verdict — allow, flag, block
Fleet Overview
Displays all enrolled machines with daemon health status, agent count per machine, and protection tier. Each machine card shows:- Daemon version and uptime
- Active agent count and types
- Last event timestamp
- Protection mode (relay, gateway, or forward proxy)
Agent Graph
Interactive parent-child visualization of agent spawn trees, powered by XYFlow. Each node represents an agent with its confidence score and detection method. Edges show spawn relationships with timestamps. The graph helps operators trace delegation chains, such as when a Cursor agent spawns a sub-agent that calls a different model provider, which in turn invokes MCP tools.Policy Editor
Create, edit, and test enforcement policies with:- Live preview of which historical events would match the policy
- Glob pattern support for action matching (
mcp:*:file.*,http:github.com:api.post) - Risk threshold configuration per policy rule
- Dry-run mode to evaluate a policy before activation
Compliance Reports
Per-framework violation summaries (SOC 2, ISO 27001, NIST, GDPR, PCI DSS) with:- Time-scoped filtering (daily, weekly, monthly)
- Violation counts grouped by framework control
- Trend charts showing compliance posture over time
- Exportable reports (PDF, CSV)
Alerts
High-risk action alerts with an acknowledgment workflow. Alerts fire when an event exceeds the configured risk threshold or matches a critical policy rule. Each alert shows the full event context, risk breakdown, and suggested mitigations. Operators can acknowledge, escalate, or dismiss alerts.Audit Trail
Searchable audit log with Ed25519 signature verification. Every entry is chain-linked to its predecessor, making the trail tamper-evident. Operators can:- Search by agent, action, time range, or verdict
- Verify the integrity of any entry or the entire chain
- Export audit logs for external compliance tools
Tech Stack
| Technology | Purpose |
|---|---|
| Next.js 16 | App Router, Server Components, API routes |
| React 19 | UI rendering |
| shadcn/ui | Component library |
| Tailwind v4 | Styling |
| Recharts | Risk score charts, compliance trends, fleet analytics |
| Framer Motion | Animations and transitions |
| XYFlow | Agent spawn graph visualization |
| cmdk | Command palette (Cmd+K) for quick navigation |
| Supabase | Auth only (cloud mode) — login, signup, session management |
| Sonner | Toast notifications |
Authentication
Cloud Mode
Supabase handles login, signup, and session management. The dashboard middleware refreshes the session cookie on each request. API route handlers extract the JWT and forward it to the platform API on AWS, which validates via the Supabase JWKS endpoint.