The Phase 6 web console is a thin visualization layer over the existing Runroot API.
pnpm install
pnpm bootstrap
pnpm devBy default:
- API:
http://127.0.0.1:3001 - web console:
http://127.0.0.1:3000
If you need to point the web app at a different API origin:
$env:RUNROOT_API_BASE_URL="http://127.0.0.1:3100"
pnpm --filter @runroot/web dev/runs: run explorer with current status and template metadata/runs/:runId: run detail, approval snapshots, and replay summary/runs/:runId/timeline: persisted replay timeline/approvals: pending approval queue with approve, reject, and cancel actions
The console does not implement business logic itself.
It only triggers existing API routes for:
- approval decisions
- run resume
Run creation still happens through the API or CLI in this phase.