@openagents-org/agent-launcher 0.1.15 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/daemon.js +4 -1
- package/src/installer.js +1 -1
package/package.json
CHANGED
package/src/daemon.js
CHANGED
|
@@ -260,7 +260,10 @@ class Daemon {
|
|
|
260
260
|
if (network) {
|
|
261
261
|
this._adapterLoop(name, agentCfg, info, network);
|
|
262
262
|
} else {
|
|
263
|
-
|
|
263
|
+
// No workspace connected — nothing to do, mark as idle
|
|
264
|
+
info.state = 'stopped';
|
|
265
|
+
this._writeStatus();
|
|
266
|
+
this._log(`${name} idle (no workspace connected)`);
|
|
264
267
|
}
|
|
265
268
|
}
|
|
266
269
|
|
package/src/installer.js
CHANGED
|
@@ -429,7 +429,7 @@ class Installer {
|
|
|
429
429
|
const { spawn: spawnProc } = require('child_process');
|
|
430
430
|
const https = require('https');
|
|
431
431
|
const os = require('os');
|
|
432
|
-
const nodeVersion = 'v22.
|
|
432
|
+
const nodeVersion = 'v22.16.0';
|
|
433
433
|
const plat = Installer.platform();
|
|
434
434
|
|
|
435
435
|
if (onData) onData(`Node.js not found. Installing Node.js ${nodeVersion}...\n\n`);
|