open-agents-ai 0.103.68 → 0.103.69
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 +10 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -47499,6 +47499,16 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
47499
47499
|
});
|
|
47500
47500
|
}
|
|
47501
47501
|
}
|
|
47502
|
+
try {
|
|
47503
|
+
const autoNexus = new NexusTool(repoRoot);
|
|
47504
|
+
autoNexus.execute({ action: "connect" }).then((r) => {
|
|
47505
|
+
if (r.success && r.output.includes("Connected")) {
|
|
47506
|
+
writeContent(() => renderInfo("Nexus P2P network connected."));
|
|
47507
|
+
}
|
|
47508
|
+
}).catch(() => {
|
|
47509
|
+
});
|
|
47510
|
+
} catch {
|
|
47511
|
+
}
|
|
47502
47512
|
try {
|
|
47503
47513
|
const oaDir = join50(repoRoot, ".oa");
|
|
47504
47514
|
const reconnected = await ExposeGateway.checkAndReconnect(oaDir, {
|
package/package.json
CHANGED