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.
- package/dist/index.js +11 -0
- 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