@openagents-org/agent-launcher 0.2.13 → 0.2.15
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 -3
- package/src/utils.js +1 -1
package/package.json
CHANGED
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
|
|
280
|
-
info.state = '
|
|
279
|
+
// No workspace connected — agent is running locally
|
|
280
|
+
info.state = 'running';
|
|
281
|
+
info.network = '(local)';
|
|
281
282
|
this._writeStatus();
|
|
282
|
-
this._log(`${name}
|
|
283
|
+
this._log(`${name} running (local only, no workspace connected)`);
|
|
283
284
|
}
|
|
284
285
|
}
|
|
285
286
|
|