open-agents-ai 0.186.26 → 0.186.27

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/dist/index.js +11 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -71982,6 +71982,17 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
71982
71982
  autoNexus.execute({ action: "connect" }).then((r) => {
71983
71983
  if (r.success && r.output.includes("Connected")) {
71984
71984
  writeContent(() => renderInfo("Nexus P2P network connected."));
71985
+ try {
71986
+ const nexusPidFile = join75(repoRoot, ".oa", "nexus", "daemon.pid");
71987
+ if (existsSync58(nexusPidFile)) {
71988
+ const nPid = parseInt(readFileSync47(nexusPidFile, "utf8").trim(), 10);
71989
+ if (nPid > 0 && !registry.daemons.has("Nexus")) {
71990
+ registry.register({ name: "Nexus", pid: nPid, startedAt: Date.now(), status: "running" });
71991
+ statusBar.ensureMonitorTimer();
71992
+ }
71993
+ }
71994
+ } catch {
71995
+ }
71985
71996
  }
71986
71997
  }).catch(() => {
71987
71998
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.186.26",
3
+ "version": "0.186.27",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",