open-agents-ai 0.118.0 → 0.120.0

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 +3 -3
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -14099,7 +14099,7 @@ import { readFileSync, writeFileSync, existsSync, mkdirSync, unlinkSync, readdir
14099
14099
  import { join } from 'node:path';
14100
14100
 
14101
14101
  const nexusDir = process.argv[2];
14102
- const agentName = process.argv[3] || 'open-agents-node';
14102
+ const agentName = process.argv[3] || ('oa-node-' + process.pid);
14103
14103
  const agentType = process.argv[4] || 'general';
14104
14104
  const cmdFile = join(nexusDir, 'cmd.json');
14105
14105
  const respFile = join(nexusDir, 'resp.json');
@@ -16183,7 +16183,7 @@ process.on('SIGINT', () => process.emit('SIGTERM'));
16183
16183
  if (!pid) {
16184
16184
  try {
16185
16185
  await this.doConnect({
16186
- agent_name: "open-agents-node",
16186
+ agent_name: "oa-" + hostname().slice(0, 12) + "-" + process.pid,
16187
16187
  agent_type: "general"
16188
16188
  });
16189
16189
  pid = this.getDaemonPid();
@@ -16403,7 +16403,7 @@ process.on('SIGINT', () => process.emit('SIGTERM'));
16403
16403
  await this.ensureWallet();
16404
16404
  const daemonPath = join36(this.nexusDir, "nexus-daemon.mjs");
16405
16405
  await writeFile17(daemonPath, DAEMON_SCRIPT);
16406
- const agentName = args.agent_name || "open-agents-node";
16406
+ const agentName = args.agent_name || "oa-" + hostname().slice(0, 12) + "-" + process.pid;
16407
16407
  const agentType = args.agent_type || "general";
16408
16408
  const nodePaths = [nodeModulesDir];
16409
16409
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.118.0",
3
+ "version": "0.120.0",
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",
@@ -85,7 +85,7 @@
85
85
  "moondream": "^0.2.0",
86
86
  "neovim": "^5.3.0",
87
87
  "node-pty": "^1.0.0",
88
- "open-agents-nexus": "^1.9.0",
88
+ "open-agents-nexus": "^1.10.0",
89
89
  "viem": "^2.47.4"
90
90
  }
91
91
  }