April 5, 20261.0.168SaaS Factory
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/streampolls active pipelines every 3s using fingerprint diffing and pushes only changed state; heartbeat events fire every 15s to prevent proxy timeouts agent_interventionstable — every human action is persisted with status tracking- 3 new tRPC routers:
agentWorkspace(7 procedures),agentMarketplace, andfleetBenchmarks - 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"andmaxDuration = 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 #185 — feat: Real-Time Agent Workspace Console with Human-in-the-Loop Controls
Merge Status
The PR branch (
feat/agent-workspace-console) had a conflict marker withmain, but inspection confirmed that all changes from PR #185 were already present onmain— the routers, DB schema, sidebar, SSE stream, and page components were all in place. The release was created directly againstmain.
🔖 Release Details
- Tag:
v1.0.168 - Release URL: https://github.com/SaaS-Factory-Live/SaaSFactory.SaaSFactory/releases/tag/v1.0.168
- Date: 2026-04-05
📦 What Shipped
| Area | Change |
|---|---|
| New Page | /dashboard/agent-workspace — Real-time fleet-wide agent console |
| Human-in-the-Loop | 5 intervention controls: Interrupt, Inject, Take Over, Resume, Note |
| SSE Endpoint | /api/agent-workspace/stream — live log stream with heartbeat |
| New DB Table | agent_interventions — persistent audit log of all interventions |
| 3 New tRPC Routers | agentWorkspace, agentMarketplace, fleetBenchmarks |
| New DB Schema | agent_marketplace — packages, installs, ratings |
| Sidebar | Agent Workspace nav entry added (Terminal icon) |
| Tests | Unit tests for agentWorkspace router |
Scope: 12 files changed · +2,820 lines added · −3 lines removed