.cursor/commands/archon-dashboard.md
Source location:
docs/source-files/.cursor/commands/archon-dashboard.md— this page is a rendered mirror; the file is the source of truth.
Launch the Archon Dashboard visualization panel.
Steps
Check if
dashboard/server.jsexists in the archon directory. If not, inform the user that the dashboard module is not installed.Check if port 3141 is already in use (
lsof -i :3141):- In use → open browser directly:
open http://localhost:3141 - Not in use → start server in background and open browser (path derived from manifest directory structure):
node <archon>/dashboard/server.js & open http://localhost:3141
- In use → open browser directly:
Inform the user the dashboard is running and viewable in the browser. File changes auto-refresh via SSE.
- Custom port:
ARCHON_PORT=8080 node <archon>/dashboard/server.js - Stop:
kill $(lsof -t -i:3141)
- Custom port: