@openagents-org/agent-launcher 0.2.13 → 0.2.14

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/daemon.js +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
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
@@ -276,10 +276,11 @@ class Daemon {
276
276
  if (network) {
277
277
  this._adapterLoop(name, agentCfg, info, network);
278
278
  } else {
279
- // No workspace connected — agent is ready but not connected
280
- info.state = 'idle';
279
+ // No workspace connected — agent is running locally
280
+ info.state = 'running';
281
+ info.network = '(local)';
281
282
  this._writeStatus();
282
- this._log(`${name} ready (no workspace connected)`);
283
+ this._log(`${name} running (local only, no workspace connected)`);
283
284
  }
284
285
  }
285
286