March 12, 20261.0.150v1.0.150RSS

v1.0.150 — feat: Agent Audit Log & Explainability Dashboard


title: "Release v1.0.150: Agent Audit Log & Explainability Dashboard" date: 2026-03-12 version: 1.0.150

Release v1.0.150: Agent Audit Log & Explainability Dashboard

What changed

  • New agentAudit tRPC router with 5 procedures: paginated audit feed, full job trace, fleet-level summary stats, error audit, and reasoning chain
  • AgentAuditDashboard component with three tabs — Audit Feed, Error Audit, and Reasoning Chain — plus a sliding Job Trace side sheet showing the full decision trace for any agent job
  • Two new pages: /dashboard/agent-audit (cross-product) and /dashboard/products/[id]/agent-audit (product-scoped)
  • Sidebar navigation entry "Audit Log" added between Agent Health and ROI Dashboard
  • Unit tests covering tool call pairing, duration calculation, file write deduplication, and phase categorisation

Why it matters

You can now see not just what an agent ran, but why it made a decision — the reasoning chain, actions taken, files written, and any errors — all without querying raw logs. This surfaces the data needed for enterprise compliance and trust reviews.

Technical notes

No schema changes. The dashboard reads entirely from the existing agentLogs table. Pagination uses an ISO timestamp cursor to avoid offset drift on live feeds.

Release Notes

Merged PR #169 (feat: Agent Audit Log & Explainability Dashboard) via squash merge and created GitHub release v1.0.150. The PR introduced a full agent audit trail system: a 5-procedure agentAudit tRPC router, a 953-line AgentAuditDashboard component with audit feed / error audit / reasoning chain tabs and a job trace side sheet, two new dashboard pages (/dashboard/agent-audit and /dashboard/products/[id]/agent-audit), sidebar navigation entry, and 313-line unit tests — all built on the existing agentLogs table with no schema changes. A stale "Template Build" CI gate was resolved by pushing a clean commit to trigger a fresh passing CI run before the merge.