Skip to Content
GuidesUse the Dashboard

Use the dashboard

The dashboard is a local browser workbench for browsing workflows, previewing dry runs, starting real runs, watching structured events, and handing completed artifacts to follow-up agents. It exists because long multi-agent workflows are easier to inspect as stateful runs than as terminal output alone.

Open it

nax dashboard review

Surfaces

SurfaceWhat it does
Workflow listReads the same workflows as nax list.
Graph canvasShows steps, agents, inputs, submit mode, and run status.
Dry RunRuns nax run <flow> --dry --force through the local API.
RunStarts the workflow after browser confirmation.
Recent runsReads .nax/workflows and highlights resumable or completed runs.
Run detailsShows results, prompt source, artifacts, copy/open actions, and follow-up controls.

Develop the dashboard UI

node src/cli/nax.js dashboard --no-open --port 53734 NAX_DASHBOARD_API_URL=http://127.0.0.1:53734 npm run dashboard:dev

Open the Vite URL with the printed token:

http://127.0.0.1:5173/?token=<token>&workflow=do-next
⚠️

Mutating dashboard endpoints require the token embedded in the opened URL or supplied as x-nax-token.

Follow up from a run

In Run details, choose Send to next agent. The composer requires fresh instructions, defaults to the last meaningful artifact, and lets you choose which workflow, step, runner, session, or result artifacts to include.

See also

Last updated on