open-agents-ai 0.187.457 → 0.187.458

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 CHANGED
@@ -13007,8 +13007,8 @@ function deleteCustomToolDefinition(name10, scope, repoRoot) {
13007
13007
  const dir = scope === "project" && repoRoot ? projectToolsDir(repoRoot) : globalToolsDir();
13008
13008
  const filePath = join18(dir, `${name10}.json`);
13009
13009
  if (existsSync13(filePath)) {
13010
- const { unlinkSync: unlinkSync24 } = __require("node:fs");
13011
- unlinkSync24(filePath);
13010
+ const { unlinkSync: unlinkSync25 } = __require("node:fs");
13011
+ unlinkSync25(filePath);
13012
13012
  return true;
13013
13013
  }
13014
13014
  return false;
@@ -250314,8 +250314,8 @@ var init_browser_action = __esm({
250314
250314
  const afterDom = await apiCall("/dom", "GET");
250315
250315
  const afterTitle = (afterDom.dom || "").match(/<title[^>]*>([^<]*)<\/title>/i)?.[1] || "";
250316
250316
  try {
250317
- const { unlinkSync: unlinkSync24 } = await import("node:fs");
250318
- unlinkSync24(imagePath);
250317
+ const { unlinkSync: unlinkSync25 } = await import("node:fs");
250318
+ unlinkSync25(imagePath);
250319
250319
  } catch {
250320
250320
  }
250321
250321
  return {
@@ -523527,7 +523527,7 @@ ${result}`
523527
523527
  let resizedBase64 = null;
523528
523528
  try {
523529
523529
  const { execSync: execSync57 } = await import("node:child_process");
523530
- const { writeFileSync: writeFileSync56, readFileSync: readFileSync77, unlinkSync: unlinkSync24 } = await import("node:fs");
523530
+ const { writeFileSync: writeFileSync56, readFileSync: readFileSync77, unlinkSync: unlinkSync25 } = await import("node:fs");
523531
523531
  const { join: join115 } = await import("node:path");
523532
523532
  const { tmpdir: tmpdir22 } = await import("node:os");
523533
523533
  const tmpIn = join115(tmpdir22(), `oa_img_in_${Date.now()}.png`);
@@ -523540,11 +523540,11 @@ ${result}`
523540
523540
  const resizedBuf = readFileSync77(tmpOut);
523541
523541
  resizedBase64 = `data:image/jpeg;base64,${resizedBuf.toString("base64")}`;
523542
523542
  try {
523543
- unlinkSync24(tmpIn);
523543
+ unlinkSync25(tmpIn);
523544
523544
  } catch {
523545
523545
  }
523546
523546
  try {
523547
- unlinkSync24(tmpOut);
523547
+ unlinkSync25(tmpOut);
523548
523548
  } catch {
523549
523549
  }
523550
523550
  } catch {
@@ -583174,12 +583174,11 @@ import { fileURLToPath as fileURLToPath17 } from "node:url";
583174
583174
  import { dirname as dirname33, join as join109, resolve as resolve37 } from "node:path";
583175
583175
  import { homedir as homedir40 } from "node:os";
583176
583176
  import { spawn as spawn25, execSync as execSync55 } from "node:child_process";
583177
- import { mkdirSync as mkdirSync59, writeFileSync as writeFileSync52, readFileSync as readFileSync74, readdirSync as readdirSync30, existsSync as existsSync92, watch as fsWatch3 } from "node:fs";
583177
+ import { mkdirSync as mkdirSync59, writeFileSync as writeFileSync52, readFileSync as readFileSync74, readdirSync as readdirSync30, existsSync as existsSync92, watch as fsWatch3, renameSync as renameSync8, unlinkSync as unlinkSync24 } from "node:fs";
583178
583178
  import { randomBytes as randomBytes21, randomUUID as randomUUID14 } from "node:crypto";
583179
583179
  import { createHash as createHash14 } from "node:crypto";
583180
583180
  function getVersion3() {
583181
583181
  try {
583182
- const require3 = createRequire4(import.meta.url);
583183
583182
  const thisDir = dirname33(fileURLToPath17(import.meta.url));
583184
583183
  const candidates = [
583185
583184
  join109(thisDir, "..", "package.json"),
@@ -583895,19 +583894,18 @@ function autoSeedTodosFromPrompt(prompt) {
583895
583894
  return [];
583896
583895
  }
583897
583896
  function atomicJobWrite(dir, id, job) {
583898
- const fs7 = __require("node:fs");
583899
583897
  const finalPath = join109(dir, `${id}.json`);
583900
583898
  const tmpPath = `${finalPath}.tmp.${process.pid}.${Date.now()}`;
583901
583899
  try {
583902
- fs7.writeFileSync(tmpPath, JSON.stringify(job, null, 2), "utf-8");
583903
- fs7.renameSync(tmpPath, finalPath);
583900
+ writeFileSync52(tmpPath, JSON.stringify(job, null, 2), "utf-8");
583901
+ renameSync8(tmpPath, finalPath);
583904
583902
  } catch {
583905
583903
  try {
583906
- fs7.writeFileSync(finalPath, JSON.stringify(job, null, 2), "utf-8");
583904
+ writeFileSync52(finalPath, JSON.stringify(job, null, 2), "utf-8");
583907
583905
  } catch {
583908
583906
  }
583909
583907
  try {
583910
- fs7.unlinkSync(tmpPath);
583908
+ unlinkSync24(tmpPath);
583911
583909
  } catch {
583912
583910
  }
583913
583911
  }
@@ -584989,12 +584987,11 @@ function readUpdateState() {
584989
584987
  function writeUpdateState(state) {
584990
584988
  try {
584991
584989
  const dir = join109(homedir40(), ".open-agents");
584992
- const fs7 = __require("node:fs");
584993
- fs7.mkdirSync(dir, { recursive: true });
584990
+ mkdirSync59(dir, { recursive: true });
584994
584991
  const finalPath = updateStateFile();
584995
584992
  const tmpPath = `${finalPath}.tmp.${process.pid}`;
584996
- fs7.writeFileSync(tmpPath, JSON.stringify(state, null, 2), "utf-8");
584997
- fs7.renameSync(tmpPath, finalPath);
584993
+ writeFileSync52(tmpPath, JSON.stringify(state, null, 2), "utf-8");
584994
+ renameSync8(tmpPath, finalPath);
584998
584995
  } catch {
584999
584996
  }
585000
584997
  }
@@ -585031,10 +585028,10 @@ async function handleV1Update(req2, res, requestId) {
585031
585028
  from: currentVersion,
585032
585029
  to: targetVersion
585033
585030
  }, { subject: req2._authUser ?? "anonymous" });
585034
- const fs7 = __require("node:fs");
585031
+ const fs7 = require3("node:fs");
585035
585032
  const nodeBin = process.execPath;
585036
585033
  const nodeDir = dirname33(nodeBin);
585037
- const { execSync: es } = __require("node:child_process");
585034
+ const { execSync: es } = require3("node:child_process");
585038
585035
  const isWin2 = process.platform === "win32";
585039
585036
  let npmBin = "";
585040
585037
  for (const candidate of isWin2 ? [join109(nodeDir, "npm.cmd"), join109(nodeDir, "npm")] : [join109(nodeDir, "npm"), "/usr/local/bin/npm", "/usr/bin/npm"]) {
@@ -586100,9 +586097,9 @@ async function handleRequest(req2, res, ollamaUrl, verbose) {
586100
586097
  return;
586101
586098
  }
586102
586099
  if (pathname === "/v1/system" && method === "GET") {
586103
- const os8 = __require("node:os");
586100
+ const os8 = require3("node:os");
586104
586101
  const version4 = getVersion3();
586105
- const { execSync: es } = __require("node:child_process");
586102
+ const { execSync: es } = require3("node:child_process");
586106
586103
  let gpus = [];
586107
586104
  try {
586108
586105
  const nv = es("nvidia-smi --query-gpu=name,memory.total --format=csv,noheader,nounits", { encoding: "utf8", timeout: 5e3, stdio: "pipe" });
@@ -586326,7 +586323,7 @@ async function handleRequest(req2, res, ollamaUrl, verbose) {
586326
586323
  return;
586327
586324
  }
586328
586325
  const { tmpdir: tmpdir22 } = await import("node:os");
586329
- const { writeFileSync: writeFileSync56, unlinkSync: unlinkSync24 } = await import("node:fs");
586326
+ const { writeFileSync: writeFileSync56, unlinkSync: unlinkSync25 } = await import("node:fs");
586330
586327
  const { join: pjoin } = await import("node:path");
586331
586328
  const tmpPath = pjoin(tmpdir22(), `oa-clone-upload-${Date.now()}-${safeName}`);
586332
586329
  writeFileSync56(tmpPath, buf);
@@ -586341,7 +586338,7 @@ async function handleRequest(req2, res, ollamaUrl, verbose) {
586341
586338
  });
586342
586339
  } finally {
586343
586340
  try {
586344
- unlinkSync24(tmpPath);
586341
+ unlinkSync25(tmpPath);
586345
586342
  } catch {
586346
586343
  }
586347
586344
  }
@@ -586983,8 +586980,8 @@ data: ${JSON.stringify(data)}
586983
586980
  } catch {
586984
586981
  }
586985
586982
  try {
586986
- const { execSync: es, spawnSync: ss } = __require("node:child_process");
586987
- const home = process.env.HOME || __require("node:os").homedir();
586983
+ const { execSync: es, spawnSync: ss } = require3("node:child_process");
586984
+ const home = process.env.HOME || require3("node:os").homedir();
586988
586985
  const userDir = `${home}/.config/systemd/user`;
586989
586986
  for (const suffix of [".timer", ".service"]) {
586990
586987
  try {
@@ -587983,7 +587980,7 @@ function listScheduledTasks() {
587983
587980
  function listOaUserTimers() {
587984
587981
  const out = [];
587985
587982
  try {
587986
- const { execSync: es } = __require("node:child_process");
587983
+ const { execSync: es } = require3("node:child_process");
587987
587984
  const files = es("systemctl --user list-unit-files --type=timer --no-legend", { encoding: "utf8", stdio: "pipe" }).trim().split("\n");
587988
587985
  const enabledMap = /* @__PURE__ */ new Map();
587989
587986
  for (const line of files) {
@@ -588081,7 +588078,7 @@ function deleteScheduledById(id) {
588081
588078
  if (id) candidates.push(id);
588082
588079
  if (typeof entry?.id === "string" && entry.id && !candidates.includes(entry.id)) candidates.push(entry.id);
588083
588080
  try {
588084
- const { createHash: createHash15 } = __require("node:crypto");
588081
+ const { createHash: createHash15 } = require3("node:crypto");
588085
588082
  const fallback = createHash15("sha1").update(`${target.file}#${target.index}`).digest("hex").slice(0, 16);
588086
588083
  if (!candidates.includes(fallback)) candidates.push(fallback);
588087
588084
  } catch {
@@ -588130,7 +588127,7 @@ function removeCronByDirectory(dir) {
588130
588127
  function killProcessGroups(pids, pattern) {
588131
588128
  const killed = [];
588132
588129
  try {
588133
- const { execSync: es } = __require("node:child_process");
588130
+ const { execSync: es } = require3("node:child_process");
588134
588131
  const targets = /* @__PURE__ */ new Map();
588135
588132
  if (pids && pids.length > 0) {
588136
588133
  for (const pid of pids) {
@@ -588191,8 +588188,8 @@ function killProcessGroups(pids, pattern) {
588191
588188
  function disableAllOaTimers() {
588192
588189
  let disabled = 0;
588193
588190
  try {
588194
- const { execSync: es } = __require("node:child_process");
588195
- const home = process.env.HOME || __require("node:os").homedir();
588191
+ const { execSync: es } = require3("node:child_process");
588192
+ const home = process.env.HOME || require3("node:os").homedir();
588196
588193
  const userDir = `${home}/.config/systemd/user`;
588197
588194
  const timers = listOaUserTimers();
588198
588195
  for (const t2 of timers) {
@@ -588243,7 +588240,7 @@ function removeAllOaCrons() {
588243
588240
  function listMatchingProcesses(pattern) {
588244
588241
  const list = [];
588245
588242
  try {
588246
- const { execSync: es } = __require("node:child_process");
588243
+ const { execSync: es } = require3("node:child_process");
588247
588244
  const re = new RegExp(pattern, "i");
588248
588245
  const ps = es("ps -eo pid,etimes,pcpu,pmem,command", { encoding: "utf8", stdio: "pipe" });
588249
588246
  for (const line of ps.split("\n")) {
@@ -588263,7 +588260,7 @@ function listMatchingProcesses(pattern) {
588263
588260
  }
588264
588261
  function sampleGpuUtil() {
588265
588262
  try {
588266
- const { execSync: es } = __require("node:child_process");
588263
+ const { execSync: es } = require3("node:child_process");
588267
588264
  const out = es("nvidia-smi --query-gpu=utilization.gpu,memory.used,memory.total --format=csv,noheader,nounits", { encoding: "utf8", timeout: 3e3, stdio: "pipe" });
588268
588265
  const arr = [];
588269
588266
  for (const line of out.trim().split("\n")) {
@@ -588280,7 +588277,7 @@ function sampleGpuUtil() {
588280
588277
  }
588281
588278
  function getCurrentCrontabLines() {
588282
588279
  try {
588283
- const { execSync: es } = __require("node:child_process");
588280
+ const { execSync: es } = require3("node:child_process");
588284
588281
  return es("crontab -l 2>/dev/null", { encoding: "utf8", stdio: "pipe" }).split("\n");
588285
588282
  } catch {
588286
588283
  return [];
@@ -588363,7 +588360,7 @@ function reconcileScheduledTasks(apply) {
588363
588360
  }
588364
588361
  function findOaBinary4() {
588365
588362
  try {
588366
- const { execSync: es } = __require("node:child_process");
588363
+ const { execSync: es } = require3("node:child_process");
588367
588364
  for (const cmd of ["oa", "open-agents"]) {
588368
588365
  try {
588369
588366
  const p2 = es(`which ${cmd} 2>/dev/null`, { encoding: "utf8", stdio: "pipe" }).trim();
@@ -588380,7 +588377,7 @@ function getCrontabLines() {
588380
588377
  }
588381
588378
  function writeCrontabLines(lines) {
588382
588379
  try {
588383
- const { spawnSync: spawnSync6 } = __require("node:child_process");
588380
+ const { spawnSync: spawnSync6 } = require3("node:child_process");
588384
588381
  const result = spawnSync6("crontab", ["-"], { input: lines.join("\n") + "\n", encoding: "utf8", stdio: ["pipe", "pipe", "pipe"] });
588385
588382
  if (result.status !== 0) throw new Error(`crontab exited ${result.status}: ${String(result.stderr || "").trim()}`);
588386
588383
  } catch (e2) {
@@ -588482,7 +588479,7 @@ WantedBy=timers.target
588482
588479
  writeFileSync52(svc, svcText);
588483
588480
  writeFileSync52(tim, timText);
588484
588481
  try {
588485
- const { execSync: es } = __require("node:child_process");
588482
+ const { execSync: es } = require3("node:child_process");
588486
588483
  es("systemctl --user daemon-reload", { stdio: "pipe" });
588487
588484
  es(`systemctl --user enable --now ${unitBase}.timer`, { stdio: "pipe" });
588488
588485
  } catch {
@@ -588509,7 +588506,7 @@ WantedBy=timers.target
588509
588506
  function listUserServices(pattern) {
588510
588507
  const out = [];
588511
588508
  try {
588512
- const { execSync: es } = __require("node:child_process");
588509
+ const { execSync: es } = require3("node:child_process");
588513
588510
  const files = es("systemctl --user list-unit-files --type=service --no-legend", { encoding: "utf8", stdio: "pipe" }).trim().split("\n");
588514
588511
  const enabledMap = /* @__PURE__ */ new Map();
588515
588512
  for (const line of files) {
@@ -588535,7 +588532,7 @@ function listUserServices(pattern) {
588535
588532
  }
588536
588533
  function userServiceAction(unit, action) {
588537
588534
  try {
588538
- const { execSync: es } = __require("node:child_process");
588535
+ const { execSync: es } = require3("node:child_process");
588539
588536
  if (action === "stop") {
588540
588537
  es(`systemctl --user stop ${unit}`, { stdio: "pipe" });
588541
588538
  return true;
@@ -588703,8 +588700,8 @@ function startApiServer(options2 = {}) {
588703
588700
  const job = JSON.parse(readFileSync74(jobPath, "utf-8"));
588704
588701
  const jobTime = new Date(job.startedAt ?? job.completedAt ?? 0).getTime();
588705
588702
  if (jobTime > 0 && jobTime < cutoff && job.status !== "running") {
588706
- const { unlinkSync: unlinkSync24 } = __require("node:fs");
588707
- unlinkSync24(jobPath);
588703
+ const { unlinkSync: unlinkSync25 } = require3("node:fs");
588704
+ unlinkSync25(jobPath);
588708
588705
  }
588709
588706
  } catch {
588710
588707
  }
@@ -589025,7 +589022,7 @@ function startApiServer(options2 = {}) {
589025
589022
  log22(` Port ${port} in use — reclaiming...
589026
589023
  `);
589027
589024
  try {
589028
- const { execSync: es } = __require("node:child_process");
589025
+ const { execSync: es } = require3("node:child_process");
589029
589026
  const pids = es(`lsof -ti :${port} 2>/dev/null || fuser ${port}/tcp 2>/dev/null || true`, { encoding: "utf8" }).trim().split(/[\n\s]+/).filter(Boolean);
589030
589027
  for (const pid of pids) {
589031
589028
  const numPid = parseInt(pid, 10);
@@ -589322,8 +589319,8 @@ function removeCronByMarker(id) {
589322
589319
  }
589323
589320
  function disableUserTimerById(id) {
589324
589321
  try {
589325
- const { execSync: es } = __require("node:child_process");
589326
- const home = process.env.HOME || __require("node:os").homedir();
589322
+ const { execSync: es } = require3("node:child_process");
589323
+ const home = process.env.HOME || require3("node:os").homedir();
589327
589324
  const userDir = `${home}/.config/systemd/user`;
589328
589325
  const names = [`oa-${id}`, `oa-sched-${id}`, id];
589329
589326
  for (const n2 of names) {
@@ -589352,7 +589349,7 @@ function disableUserTimerById(id) {
589352
589349
  function setTimerEnabled(name10, enabled2) {
589353
589350
  try {
589354
589351
  const unit = `${name10}.timer`;
589355
- const { execSync: es } = __require("node:child_process");
589352
+ const { execSync: es } = require3("node:child_process");
589356
589353
  if (enabled2) es(`systemctl --user enable --now ${unit}`, { stdio: "pipe" });
589357
589354
  else es(`systemctl --user disable --now ${unit}`, { stdio: "pipe" });
589358
589355
  return true;
@@ -589360,7 +589357,7 @@ function setTimerEnabled(name10, enabled2) {
589360
589357
  return false;
589361
589358
  }
589362
589359
  }
589363
- var endpointRegistry, modelRouteMap, endpointUsage, metrics, startedAt, runningProcesses, perKeyUsage, CRON_MARKER2;
589360
+ var require3, endpointRegistry, modelRouteMap, endpointUsage, metrics, startedAt, runningProcesses, perKeyUsage, CRON_MARKER2;
589364
589361
  var init_serve = __esm({
589365
589362
  "packages/cli/src/api/serve.ts"() {
589366
589363
  "use strict";
@@ -589388,6 +589385,7 @@ var init_serve = __esm({
589388
589385
  init_profiles();
589389
589386
  init_docker();
589390
589387
  init_typed_node_events();
589388
+ require3 = createRequire4(import.meta.url);
589391
589389
  endpointRegistry = [];
589392
589390
  modelRouteMap = /* @__PURE__ */ new Map();
589393
589391
  endpointUsage = /* @__PURE__ */ new Map();
@@ -589425,7 +589423,7 @@ function formatTimeAgo2(date) {
589425
589423
  }
589426
589424
  function getVersion4() {
589427
589425
  try {
589428
- const require3 = createRequire5(import.meta.url);
589426
+ const require4 = createRequire5(import.meta.url);
589429
589427
  const thisDir = dirname34(fileURLToPath18(import.meta.url));
589430
589428
  const candidates = [
589431
589429
  join110(thisDir, "..", "package.json"),
@@ -589434,7 +589432,7 @@ function getVersion4() {
589434
589432
  ];
589435
589433
  for (const pkgPath of candidates) {
589436
589434
  if (existsSync93(pkgPath)) {
589437
- const pkg = require3(pkgPath);
589435
+ const pkg = require4(pkgPath);
589438
589436
  if (pkg.name === "open-agents-ai" || pkg.name === "@open-agents/cli" || pkg.name === "@open-agents/monorepo") {
589439
589437
  return pkg.version ?? "0.0.0";
589440
589438
  }
@@ -597167,9 +597165,9 @@ init_spinner();
597167
597165
  init_output();
597168
597166
  function getVersion5() {
597169
597167
  try {
597170
- const require3 = createRequire6(import.meta.url);
597168
+ const require4 = createRequire6(import.meta.url);
597171
597169
  const pkgPath = join114(dirname35(fileURLToPath19(import.meta.url)), "..", "package.json");
597172
- const pkg = require3(pkgPath);
597170
+ const pkg = require4(pkgPath);
597173
597171
  return pkg.version;
597174
597172
  } catch {
597175
597173
  return "0.1.0";
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.457",
3
+ "version": "0.187.458",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "open-agents-ai",
9
- "version": "0.187.457",
9
+ "version": "0.187.458",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
@@ -1520,19 +1520,19 @@
1520
1520
  }
1521
1521
  },
1522
1522
  "node_modules/@libp2p/webrtc": {
1523
- "version": "6.0.19",
1524
- "resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.19.tgz",
1525
- "integrity": "sha512-BY0WAMfWcmmhlxB3hWafjjfiRtFO0IrfS9ffT8u4nfDG/FT+vrR/CLJtmEEsypuR6cuuPJCWgrKpKQXgjVm7AQ==",
1523
+ "version": "6.0.20",
1524
+ "resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.20.tgz",
1525
+ "integrity": "sha512-hdSgAgXaL0+dbOTNbf5+OQdZHGNQQGVHlursquM3HHsKtkIOVWEWre2Wo8UhAT/LcLtZDVkcx+xsBQmF6ASPyQ==",
1526
1526
  "license": "Apache-2.0 OR MIT",
1527
1527
  "dependencies": {
1528
1528
  "@chainsafe/is-ip": "^2.1.0",
1529
1529
  "@chainsafe/libp2p-noise": "^17.0.0",
1530
1530
  "@libp2p/crypto": "^5.1.17",
1531
1531
  "@libp2p/interface": "^3.2.2",
1532
- "@libp2p/interface-internal": "^3.1.2",
1533
- "@libp2p/keychain": "^6.0.14",
1532
+ "@libp2p/interface-internal": "^3.1.3",
1533
+ "@libp2p/keychain": "^6.1.0",
1534
1534
  "@libp2p/peer-id": "^6.0.8",
1535
- "@libp2p/utils": "^7.0.17",
1535
+ "@libp2p/utils": "^7.1.0",
1536
1536
  "@multiformats/multiaddr": "^13.0.1",
1537
1537
  "@multiformats/multiaddr-matcher": "^3.0.1",
1538
1538
  "@peculiar/webcrypto": "^1.5.0",
@@ -2943,9 +2943,9 @@
2943
2943
  "license": "MIT"
2944
2944
  },
2945
2945
  "node_modules/baseline-browser-mapping": {
2946
- "version": "2.10.21",
2947
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.21.tgz",
2948
- "integrity": "sha512-Q+rUQ7Uz8AHM7DEaNdwvfFCTq7a43lNTzuS94eiWqwyxfV/wJv+oUivef51T91mmRY4d4A1u9rcSvkeufCVXlA==",
2946
+ "version": "2.10.22",
2947
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.22.tgz",
2948
+ "integrity": "sha512-6qruVrb5rse6WylFkU0FhBKKGuecWseqdpQfhkawn6ztyk2QlfwSRjsDxMCLJrkfmfN21qvhl9ABgaMeRkuwww==",
2949
2949
  "license": "Apache-2.0",
2950
2950
  "peer": true,
2951
2951
  "bin": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.457",
3
+ "version": "0.187.458",
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",