@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
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
- this._spawnLoop(name, agentCfg, info);
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.14.0';
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`);