feat: integrate HAI-001 auto-open browser

This commit is contained in:
Dustin Byrne
2026-03-25 18:33:16 -04:00
parent f70bd6895d
commit c99b08b585
2 changed files with 16 additions and 2 deletions

View File

@@ -42,7 +42,8 @@ async function main() {
const pi = portIdx !== -1 ? portIdx : portIdxShort;
const port = pi !== -1 ? parseInt(args[pi + 1], 10) : 4040;
const engine = args.includes("--engine");
await runDashboard(port, { engine });
const open = !args.includes("--no-open");
await runDashboard(port, { engine, open });
break;
}