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.
Files changed (2) hide show
  1. package/dist/index.js +10 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.103.68",
3
+ "version": "0.103.69",
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",