Skip to content

Dashboard

The Intutic dashboard is a Vite + React 19 SPA that provides real-time visibility into your AI agent governance.

Overview

The dashboard runs on port 5174 in local development and connects to the control plane API at /api/v1/.

Widgets

Usage Summary

Shows aggregated usage metrics for your workspace:

  • Total tokens consumed across all models
  • Total cost in USD
  • Period selection — daily, weekly, or monthly aggregation
  • Date range picker — custom start/end dates

Data comes from GET /api/v1/usage/summary with period, start, and end query parameters.

Model Breakdown

A per-model cost breakdown showing which LLMs are consuming your budget:

  • Model name and provider
  • Token count and cost per model
  • Percentage of total spend

Data comes from GET /api/v1/usage/models with a period parameter (daily or monthly).

Enforcement Actions

Real-time view of PCAS enforcement decisions:

  • BYPASS count — requests that passed through cleanly
  • ENHANCE count — requests that were enriched
  • HIJACK count — requests rerouted to different models
  • KILL count — requests that were blocked

Trace Timeline

A paginated list of execution traces showing:

  • Trace ID
  • Timestamp
  • Model used
  • Input/output token counts
  • Cost in USD
  • Enforcement action applied
  • Token utility classification (USEFUL / WASTED)

Data comes from GET /api/v1/usage/events with page, limit, and optional session_id parameters.

SOP Registry

Lists all SOPs in your workspace with:

  • Title and current lifecycle state
  • Risk tier (LOW / MEDIUM / HIGH / CRITICAL)
  • Complexity tier
  • Version history
  • Dependency graph

Filterable by lifecycle state, risk tier, and complexity tier via GET /api/v1/sops.

Anomaly Feed

Real-time anomaly alerts from the Autonomous Reasoning Engine (ARE):

  • Anomaly type (12 categories)
  • Severity level
  • Affected session and trace
  • Recommended action

Incident Tracker

Governance incidents with lifecycle management:

  • Status: OPENACKNOWLEDGEDRESOLVED or FALSE_POSITIVE
  • Linked traces and anomalies
  • Resolution notes

Trust Scores

Per-session trust scores showing agent reliability over time.

Keyboard Shortcuts

KeyAction
/Focus search
rRefresh current view
tJump to traces
sJump to SOPs

Accessing the Dashboard

Local Development

bash
cd apps/dashboard
npm run dev
# → http://localhost:5174

Production

The dashboard is deployed alongside the control plane and available at your workspace URL.

AI Governance for Agentic Coding