Agent Governance Console
Unified governance dashboard for multi-agent AI ecosystem
Full dashboard walkthrough: Overview, Audit Trail, Health, Governance, Intelligence, Planning, and Hooks pages

Overview dashboard: ecosystem health, activity feed, and spoke status at a glance

Tamper-evident audit trail with hash-chained logging and impact classification

Health monitoring with per-factor breakdown across all spokes
Multi-agent systems operating across multiple projects had no centralized visibility. Each spoke's audit trail, health status, and governance metrics were scattered. No way to know if agents were following protocols, if hooks were working, or if the ecosystem was healthy without manual investigation.
After implementing governance hooks (secrets scanner, impact classification, audit logging), realized the data they generated had no unified presentation layer. Agents were producing hash-chained audit logs, L1-L4 impact classifications, and self-evaluation scores — but all stored in flat files across different repos. Tracked the gap between "generating governance data" and "making governance visible."
Built a Next.js dashboard backed by PostgreSQL (26 tables) that ingests data from all spokes. Key pages: Sessions (trace-level span visibility), Costs (token spend tracking), Intelligence (decisions, proposals, patterns), Einstein (multi-persona decision analysis), System (health, hooks, agents). Wrapped in an Electron menubar app for always-on access. Automated ingestion from all spokes via lifecycle hooks and nightly pipelines.
- PostgreSQL over SQLite — needed concurrent reads from multiple data sources, complex aggregations, and real-time ingestion from hooks
- v2 rebuild after benchmarking against 9 production tools (LangSmith, Braintrust, Arize Phoenix) — stripped 17 over-engineered pages to 5 focused views backed by real data
- Hash-chained audit trail — tamper-evident by design, each entry's hash includes the previous entry's hash
- PostgreSQL backend ingesting governance data from project spokes in real-time
- Hash-chained tamper-evident audit trail across all agent operations
- Decision outcome tracking with confidence scoring and reasoning capture
- Hook-based enforcement system ensuring protocol compliance across all agents
- Nightly intelligence pipeline generating and scoring proposals with automated triage
- Session trace view with span-level visibility into every tool call and agent spawn
- Electron wrapper providing persistent menubar access with CSS-injected dark theme