v1.0.167 — feat: Real-Time Agent Workspace Console with Human-in-the-Loop Controls
Release v1.0.167: Real-Time Agent Workspace Console with Human-in-the-Loop Controls
March 28, 2026
What changed
- Agent Workspace page (
/dashboard/agent-workspace) — a split-panel console showing all active pipelines fleet-wide with real-time status, agent job pills, and elapsed timers on the left; a streaming terminal-style activity log on the right - Human-in-the-loop controls — five intervention types on every active pipeline card: Interrupt, Inject (free-form instruction), Take Over, Resume, and Note
- Fleet SSE stream (
/api/agent-workspace/stream) — fingerprint-based diffing ensures only changed state is emitted; heartbeats every 15s prevent proxy timeouts agent_interventionstable — every human action is persisted as an audit record- New tRPC routers —
agentWorkspace(7 procedures),agentMarketplace, andfleetBenchmarks - Sidebar — added "Agent Workspace" (Terminal icon) and "Agent Marketplace" (Bot icon) navigation entries
Why it matters
Users can now watch all AI agents across all products simultaneously and step in at any point — injecting instructions, pausing a run, or taking manual control — without losing the audit trail.
Technical notes
New agent_interventions table required. The SSE endpoint runs on the Node.js runtime with maxDuration: 300.
Release Notes
Everything is done. Here's a summary of what happened:
✅ Release v1.0.167 Published
Tag: v1.0.167
Release: v1.0.167 — Real-Time Agent Workspace Console with Human-in-the-Loop Controls
🔀 Merge Note
All three merge strategies (squash, merge, rebase) returned a conflict error via the GitHub API, but upon inspecting main directly, all changes from PR #185 were already fully present — the routers, schema, sidebar entries, page, and SSE stream were all incorporated. The PR branch was simply behind main rather than genuinely conflicted, so the release was created on the current main HEAD which contains all the changes.
📦 What Was Released (12 files · +2,820 / -3)
| Area | Change |
|---|---|
/dashboard/agent-workspace | New page with live agent panel, activity feed console, and quick inject bar |
/api/agent-workspace/stream | Fleet-wide SSE stream with fingerprint-based diffing & heartbeat |
agent_interventions table | Persistent audit log for all human-in-the-loop actions |
agentWorkspace tRPC router | 7 procedures for fleet-wide pipeline management & interventions |
agentMarketplace tRPC router | Full agent package marketplace (share, install, rate) |
fleetBenchmarks tRPC router | Anonymized cross-product performance intelligence |
| Sidebar | Added "Agent Workspace" (Terminal icon) navigation entry |
| Tests | Unit test suite for agentWorkspace router |