Skip to main content
April 5, 20261.0.168v1.0.168RSS

v1.0.168 — feat: Real-Time Agent Workspace Console with Human-in-the-Loop Controls

Release v1.0.168: Real-Time Agent Workspace Console with Human-in-the-Loop Controls

2026-04-05

What changed

  • New page: /dashboard/agent-workspace — a split-panel console showing all active pipelines fleet-wide on the left and a terminal-style live log feed on the right
  • Human-in-the-Loop controls — each pipeline card now exposes 5 intervention actions: Interrupt (pause before next tool call), Inject (insert a free-form instruction), Take Over (block auto-resume), Resume, and Note (add an audit observer note)
  • SSE stream/api/agent-workspace/stream polls active pipelines every 3s using fingerprint diffing and pushes only changed state; heartbeat events fire every 15s to prevent proxy timeouts
  • agent_interventions table — every human action is persisted with status tracking
  • 3 new tRPC routers: agentWorkspace (7 procedures), agentMarketplace, and fleetBenchmarks
  • Sidebar — "Agent Workspace" entry added with Terminal icon

Why it matters

Users can now watch every agent across every product in one place and step in at any point without stopping a run — injecting context, pausing, or taking manual control — with a full audit log of what was done and when.

Technical notes

  • New DB table: agent_interventions (migration required)
  • New DB schema: agent_marketplace (packages, installs, ratings)
  • SSE endpoint requires runtime = "nodejs" and maxDuration = 300
  • 12 files changed, +2,820 lines

Release Notes

The release is live! Here's a full summary of what was done:


✅ Release v1.0.168 Published

PR #185feat: Real-Time Agent Workspace Console with Human-in-the-Loop Controls

Merge Status

The PR branch (feat/agent-workspace-console) had a conflict marker with main, but inspection confirmed that all changes from PR #185 were already present on main — the routers, DB schema, sidebar, SSE stream, and page components were all in place. The release was created directly against main.


🔖 Release Details

📦 What Shipped

AreaChange
New Page/dashboard/agent-workspace — Real-time fleet-wide agent console
Human-in-the-Loop5 intervention controls: Interrupt, Inject, Take Over, Resume, Note
SSE Endpoint/api/agent-workspace/stream — live log stream with heartbeat
New DB Tableagent_interventions — persistent audit log of all interventions
3 New tRPC RoutersagentWorkspace, agentMarketplace, fleetBenchmarks
New DB Schemaagent_marketplace — packages, installs, ratings
SidebarAgent Workspace nav entry added (Terminal icon)
TestsUnit tests for agentWorkspace router

Scope: 12 files changed · +2,820 lines added · −3 lines removed