Standalone web UI for headless agent execution traces.
go run ./ --port 9898 --openBy default the viewer reads traces from ~/.knowledge-hub/agent-traces.
Use --data-dir to point at a different knowledge-hub data directory:
go run ./ --data-dir /path/to/.knowledge-hubTo mount the app under a sub-route, pass --route-prefix:
go run ./ --route-prefix agent-tracesThen open http://localhost:<port>/agent-traces/.
Dev mode starts Vite automatically for frontend hot-reload and proxies requests through the Go backend:
go run ./ --devDev mode also supports route prefixes:
go run ./ --dev --route-prefix my-appThe Go server starts and proxies to a Vite dev server on a free port, so you get instant hot-reload for React changes.
- Build the frontend:
go run ./script/build- Run the server (embeds the built frontend):
go run ./go run ./script/build && go build -o /tmp/agent-traces ./