agentAudit tRPC router with 5 procedures: paginated audit feed, full job trace, fleet-level summary stats, error audit, and reasoning chainAgentAuditDashboard 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/dashboard/agent-audit (cross-product) and /dashboard/products/[id]/agent-audit (product-scoped)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.
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.
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.