Crucix — agent with dashboard, delta engine, Telegram/Discord bots

This commit is contained in:
calesthio
2026-03-14 00:35:31 -07:00
parent ef2c6470fb
commit 3674fcb4f7
23 changed files with 2143 additions and 226 deletions

View File

@@ -467,7 +467,9 @@ async function cliInject() {
console.log('Data injected into jarvis.html!');
// Auto-open dashboard in default browser
const openCmd = process.platform === 'win32' ? 'start ""' :
// NOTE: On Windows, `start` in PowerShell is an alias for Start-Service, not cmd's start.
// We must use `cmd /c start ""` to ensure it works in both cmd.exe and PowerShell.
const openCmd = process.platform === 'win32' ? 'cmd /c start ""' :
process.platform === 'darwin' ? 'open' : 'xdg-open';
const dashUrl = htmlPath.replace(/\\/g, '/');
exec(`${openCmd} "${dashUrl}"`, (err) => {