open-agents-ai 0.174.0 → 0.176.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 +5 -3
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -65546,9 +65546,11 @@ async function main() {
65546
65546
  printHelp2(version);
65547
65547
  return;
65548
65548
  }
65549
- const updateInfo = await checkForUpdate(version);
65550
- if (updateInfo) {
65551
- process.stderr.write(formatUpdateBanner(updateInfo));
65549
+ if (!parsed.json) {
65550
+ const updateInfo = await checkForUpdate(version);
65551
+ if (updateInfo) {
65552
+ process.stderr.write(formatUpdateBanner(updateInfo));
65553
+ }
65552
65554
  }
65553
65555
  const baseConfig = loadConfig();
65554
65556
  const config = mergeConfig(baseConfig, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.174.0",
3
+ "version": "0.176.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",
@@ -67,7 +67,7 @@
67
67
  "embedded-editor"
68
68
  ],
69
69
  "author": "robit-man",
70
- "license": "MIT",
70
+ "license": "CC-BY-NC-4.0",
71
71
  "scripts": {
72
72
  "preinstall": "node dist/preinstall.cjs"
73
73
  },