open-agents-ai 0.187.411 → 0.187.413

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
@@ -534354,7 +534354,6 @@ ${CONTENT_BG_SEQ}`);
534354
534354
  buf += `\x1B[${this.scrollRegionTop};1H\x1B[7m${indicator}${" ".repeat(pad)}\x1B[0m`;
534355
534355
  }
534356
534356
  buf += "\x1B8";
534357
- if (this.writeDepth === 0) buf += "\x1B[?25h";
534358
534357
  buf += "\x1B[?2026l";
534359
534358
  const writer = this._origWrite ?? process.stdout.write.bind(process.stdout);
534360
534359
  writer(buf);
@@ -573922,7 +573921,17 @@ function textResponse(res, status, body, contentType = "text/plain") {
573922
573921
  }
573923
573922
  function isOriginAllowed(origin) {
573924
573923
  if (!origin) return true;
573925
- const accessMode = (process.env["OA_ACCESS"] || "").toLowerCase().trim();
573924
+ let accessMode = (process.env["OA_ACCESS"] || "").toLowerCase().trim();
573925
+ try {
573926
+ const accessFile = join104(homedir39(), ".open-agents", "access");
573927
+ if (existsSync87(accessFile)) {
573928
+ const persisted = readFileSync69(accessFile, "utf8").trim().toLowerCase();
573929
+ if (persisted === "any" || persisted === "lan" || persisted === "loopback") {
573930
+ accessMode = persisted;
573931
+ }
573932
+ }
573933
+ } catch {
573934
+ }
573926
573935
  if (accessMode === "any") return true;
573927
573936
  if (accessMode === "lan") {
573928
573937
  try {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.411",
3
+ "version": "0.187.413",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "open-agents-ai",
9
- "version": "0.187.411",
9
+ "version": "0.187.413",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
@@ -1992,9 +1992,9 @@
1992
1992
  }
1993
1993
  },
1994
1994
  "node_modules/@react-native/assets-registry": {
1995
- "version": "0.85.1",
1996
- "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.85.1.tgz",
1997
- "integrity": "sha512-QODQ15teXThKaKdb7lnx4RifNUGnsGZ/NMKtkNBE89nJuK93+mPsb1ozp5xkGyLw7ZNVYO4Nkqsp4MsBOuAX8g==",
1995
+ "version": "0.85.2",
1996
+ "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.85.2.tgz",
1997
+ "integrity": "sha512-kauC/oPaxklU4Y+u9gBfCBJm51qX6WBZq4xx0USCdimtp+G8+554kpygfSWIjoqCJa2o06bWxBEjesiuCv+LzA==",
1998
1998
  "license": "MIT",
1999
1999
  "peer": true,
2000
2000
  "engines": {
@@ -2002,9 +2002,9 @@
2002
2002
  }
2003
2003
  },
2004
2004
  "node_modules/@react-native/codegen": {
2005
- "version": "0.85.1",
2006
- "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.85.1.tgz",
2007
- "integrity": "sha512-Ge8F5VejnI7ng/NGObqBBovuLbItvmmZDFQ1Qwt/nBhHtk7l2tOffNMVNTta9Jt8TW0oXxVj6FG3hr6nx03JrQ==",
2005
+ "version": "0.85.2",
2006
+ "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.85.2.tgz",
2007
+ "integrity": "sha512-XCginmxh0//++EXVOEJHBVZxHla294FzLCFF6jXwAUjvXVhqyIKyxhABfz+r4OOmaiuWk4Rtd4arqdAzeHeprg==",
2008
2008
  "license": "MIT",
2009
2009
  "peer": true,
2010
2010
  "dependencies": {
@@ -2024,13 +2024,13 @@
2024
2024
  }
2025
2025
  },
2026
2026
  "node_modules/@react-native/community-cli-plugin": {
2027
- "version": "0.85.1",
2028
- "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.85.1.tgz",
2029
- "integrity": "sha512-vZtNEYv5qMYvbA9cTBMuZ3QkCqyJ7lDQgbxh4MpoZHZ0+62qjJpCXn9xzFM0Rm5ZG2hO8WDDxcFdI581BdASdg==",
2027
+ "version": "0.85.2",
2028
+ "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.85.2.tgz",
2029
+ "integrity": "sha512-3KLgSg1kHvBpr93zMaQhvfYTgnCw7yZRED+3J4dMcYjfSjtD0Wf8SofU6uBmAw9JaVYvP43lpdwUpI4p0+ABsg==",
2030
2030
  "license": "MIT",
2031
2031
  "peer": true,
2032
2032
  "dependencies": {
2033
- "@react-native/dev-middleware": "0.85.1",
2033
+ "@react-native/dev-middleware": "0.85.2",
2034
2034
  "debug": "^4.4.0",
2035
2035
  "invariant": "^2.2.4",
2036
2036
  "metro": "^0.84.0",
@@ -2043,7 +2043,7 @@
2043
2043
  },
2044
2044
  "peerDependencies": {
2045
2045
  "@react-native-community/cli": "*",
2046
- "@react-native/metro-config": "0.85.1"
2046
+ "@react-native/metro-config": "0.85.2"
2047
2047
  },
2048
2048
  "peerDependenciesMeta": {
2049
2049
  "@react-native-community/cli": {
@@ -2055,9 +2055,9 @@
2055
2055
  }
2056
2056
  },
2057
2057
  "node_modules/@react-native/debugger-frontend": {
2058
- "version": "0.85.1",
2059
- "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.85.1.tgz",
2060
- "integrity": "sha512-GUC2ZEy+J/Goc4l243XeeY/8NdNXVXPXoRTc6Yy14OiDcy7Yk87VyrMARbp23wCbzhnrz0dnYB8rxJ+AJvMzCg==",
2058
+ "version": "0.85.2",
2059
+ "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.85.2.tgz",
2060
+ "integrity": "sha512-j+0b9H5f5hGTLQxHIhJU/b/W6ijuxJF+ZTLHB0se2kzUBNxFKd7DkIc6753qk3CJdiv55vxG3XDgmlpbHxOpmA==",
2061
2061
  "license": "BSD-3-Clause",
2062
2062
  "peer": true,
2063
2063
  "engines": {
@@ -2065,9 +2065,9 @@
2065
2065
  }
2066
2066
  },
2067
2067
  "node_modules/@react-native/debugger-shell": {
2068
- "version": "0.85.1",
2069
- "resolved": "https://registry.npmjs.org/@react-native/debugger-shell/-/debugger-shell-0.85.1.tgz",
2070
- "integrity": "sha512-M/ogODh0uDFJ7xOlCc+v9nKUucUXGJwVOupl+zb3VT8tJnI2Cie/Fiv9NszAD/bzRQhJSrPZkJSAO6VW0XbWyA==",
2068
+ "version": "0.85.2",
2069
+ "resolved": "https://registry.npmjs.org/@react-native/debugger-shell/-/debugger-shell-0.85.2.tgz",
2070
+ "integrity": "sha512-r5BkhqPMfg3LmaZS5zadHmBNVH5h4bhSpv4BEPGfK4gat9HABAMzUzybi+2wpgU3SoHxnyKGdExEJvoqVcjeRg==",
2071
2071
  "license": "MIT",
2072
2072
  "peer": true,
2073
2073
  "dependencies": {
@@ -2080,15 +2080,15 @@
2080
2080
  }
2081
2081
  },
2082
2082
  "node_modules/@react-native/dev-middleware": {
2083
- "version": "0.85.1",
2084
- "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.85.1.tgz",
2085
- "integrity": "sha512-vJSIZP7yymZMnwOrdNjalVf8jqcAFtmi6zT3sC9MRMgJPGkDy05g8y5zgAkgTxpNtVsv+/q5pst8woYp7pgRkA==",
2083
+ "version": "0.85.2",
2084
+ "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.85.2.tgz",
2085
+ "integrity": "sha512-3J+NaDUg+QEfDeLAUzgaWhpaxEg78g+KwbydlDCewh2G6WnHpsty8XooruxNHzyAsqVWywZMrzmbn78Ctc1O9Q==",
2086
2086
  "license": "MIT",
2087
2087
  "peer": true,
2088
2088
  "dependencies": {
2089
2089
  "@isaacs/ttlcache": "^1.4.1",
2090
- "@react-native/debugger-frontend": "0.85.1",
2091
- "@react-native/debugger-shell": "0.85.1",
2090
+ "@react-native/debugger-frontend": "0.85.2",
2091
+ "@react-native/debugger-shell": "0.85.2",
2092
2092
  "chrome-launcher": "^0.15.2",
2093
2093
  "chromium-edge-launcher": "^0.3.0",
2094
2094
  "connect": "^3.6.5",
@@ -2194,9 +2194,9 @@
2194
2194
  }
2195
2195
  },
2196
2196
  "node_modules/@react-native/gradle-plugin": {
2197
- "version": "0.85.1",
2198
- "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.85.1.tgz",
2199
- "integrity": "sha512-KeTntbnsH/NOdzZrSE8tgep+9jEMlEfklVDtgxnjjb5nDhhBD016judwyo9bsinZnuwXxmemXnOOqOfcEawxbg==",
2197
+ "version": "0.85.2",
2198
+ "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.85.2.tgz",
2199
+ "integrity": "sha512-YXBOLeAqFrv7XwUeBPTKZeOV1FIxn4AW7UAEitScf3ibC8bu8+6NpJu4HWgbNQHg7vDbbTZVbcOl8EwGxsSq2w==",
2200
2200
  "license": "MIT",
2201
2201
  "peer": true,
2202
2202
  "engines": {
@@ -2204,9 +2204,9 @@
2204
2204
  }
2205
2205
  },
2206
2206
  "node_modules/@react-native/js-polyfills": {
2207
- "version": "0.85.1",
2208
- "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.85.1.tgz",
2209
- "integrity": "sha512-VseQZAKnDbmpZThLWviDIJ0NmuSiwiHA6vc2HNJTTVqTy2mQR0+858y9kDdDBQPYe0HH8+W1mYui2i4eUWGh4g==",
2207
+ "version": "0.85.2",
2208
+ "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.85.2.tgz",
2209
+ "integrity": "sha512-esGEAmKVM40DV/yVmNljCKZTIeUo7qXqc+Hwffkv3TG+b3E24xyFovHrbP98gGxZr2ZsEyx+2sKLdXF5asY5nw==",
2210
2210
  "license": "MIT",
2211
2211
  "peer": true,
2212
2212
  "engines": {
@@ -2214,16 +2214,16 @@
2214
2214
  }
2215
2215
  },
2216
2216
  "node_modules/@react-native/normalize-colors": {
2217
- "version": "0.85.1",
2218
- "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.85.1.tgz",
2219
- "integrity": "sha512-w+4ZZ2PvvtC0IODEmxizYOrHmeDgdzpM7CKhtTNWoNtDWZoi7/ZY3UmNntn9poPorUy5cwFbfYiP/8rJFEsFvQ==",
2217
+ "version": "0.85.2",
2218
+ "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.85.2.tgz",
2219
+ "integrity": "sha512-svuOLtjbFGXDdHsriHXuND5FgHg7XlkOXCbH/8+X4t76YLH6qSTffSIQQrKLDL5mn4EFU+Oh/PNO0/FfpnTOTg==",
2220
2220
  "license": "MIT",
2221
2221
  "peer": true
2222
2222
  },
2223
2223
  "node_modules/@react-native/virtualized-lists": {
2224
- "version": "0.85.1",
2225
- "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.85.1.tgz",
2226
- "integrity": "sha512-RLpoATkxeTaYxna5dDLIxEtoStp9UL7ryHIIOmKnE9NQW3ggR+U9DWQPXQkOfRc7/kPYba4ynKA2fIISGysVTg==",
2224
+ "version": "0.85.2",
2225
+ "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.85.2.tgz",
2226
+ "integrity": "sha512-wmVKpAlcr+UB0L5SpbrV865EdleUP7I5+X+48e1aRsQK8q+wsTRBXeUwWVip/1l+HZwlZFeO8iOILJ16VRu0Cw==",
2227
2227
  "license": "MIT",
2228
2228
  "peer": true,
2229
2229
  "dependencies": {
@@ -2236,7 +2236,7 @@
2236
2236
  "peerDependencies": {
2237
2237
  "@types/react": "^19.2.0",
2238
2238
  "react": "*",
2239
- "react-native": "0.85.1"
2239
+ "react-native": "0.85.2"
2240
2240
  },
2241
2241
  "peerDependenciesMeta": {
2242
2242
  "@types/react": {
@@ -2746,13 +2746,13 @@
2746
2746
  "peer": true
2747
2747
  },
2748
2748
  "node_modules/asn1js": {
2749
- "version": "3.0.7",
2750
- "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.7.tgz",
2751
- "integrity": "sha512-uLvq6KJu04qoQM6gvBfKFjlh6Gl0vOKQuR5cJMDHQkmwfMOQeN3F3SHCv9SNYSL+CRoHvOGFfllDlVz03GQjvQ==",
2749
+ "version": "3.0.10",
2750
+ "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz",
2751
+ "integrity": "sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==",
2752
2752
  "license": "BSD-3-Clause",
2753
2753
  "dependencies": {
2754
2754
  "pvtsutils": "^1.3.6",
2755
- "pvutils": "^1.1.3",
2755
+ "pvutils": "^1.1.5",
2756
2756
  "tslib": "^2.8.1"
2757
2757
  },
2758
2758
  "engines": {
@@ -3764,9 +3764,9 @@
3764
3764
  "license": "MIT"
3765
3765
  },
3766
3766
  "node_modules/datastore-core": {
3767
- "version": "11.0.3",
3768
- "resolved": "https://registry.npmjs.org/datastore-core/-/datastore-core-11.0.3.tgz",
3769
- "integrity": "sha512-Hqk9uxPIN19nXVsN/FbBKtjlG2BsIGtahxZoZeYxkXkJre8sbbLIOiAxzetdzJSaHHDB9wWHi5ATyR49DicJHg==",
3767
+ "version": "11.0.4",
3768
+ "resolved": "https://registry.npmjs.org/datastore-core/-/datastore-core-11.0.4.tgz",
3769
+ "integrity": "sha512-k755ayqP66Q8NuzvVKTZiaTgcTJU1/EMmQAQ0OtZNA13JX1pFw+aCu42Db6/Q7LuyJUcBtqAJdfOjM7zA8/8Lw==",
3770
3770
  "license": "Apache-2.0 OR MIT",
3771
3771
  "dependencies": {
3772
3772
  "@libp2p/logger": "^6.2.4",
@@ -7679,19 +7679,19 @@
7679
7679
  "peer": true
7680
7680
  },
7681
7681
  "node_modules/react-native": {
7682
- "version": "0.85.1",
7683
- "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.85.1.tgz",
7684
- "integrity": "sha512-1K2TIvu2M1C8gqkPevi/MuLan16mQvEdURiTlwHgrb6S2vvkDyik6TrkkXMlMMhz9hF5RT8wFyDUdlpGFlkpXg==",
7682
+ "version": "0.85.2",
7683
+ "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.85.2.tgz",
7684
+ "integrity": "sha512-GFWEPwLYirfj5X8gMtXOWtqX0cqUEURRHETZfFk37VCa4++izrKvGvv24anvuyulXV87NAhVkfNw93rLg3HByw==",
7685
7685
  "license": "MIT",
7686
7686
  "peer": true,
7687
7687
  "dependencies": {
7688
- "@react-native/assets-registry": "0.85.1",
7689
- "@react-native/codegen": "0.85.1",
7690
- "@react-native/community-cli-plugin": "0.85.1",
7691
- "@react-native/gradle-plugin": "0.85.1",
7692
- "@react-native/js-polyfills": "0.85.1",
7693
- "@react-native/normalize-colors": "0.85.1",
7694
- "@react-native/virtualized-lists": "0.85.1",
7688
+ "@react-native/assets-registry": "0.85.2",
7689
+ "@react-native/codegen": "0.85.2",
7690
+ "@react-native/community-cli-plugin": "0.85.2",
7691
+ "@react-native/gradle-plugin": "0.85.2",
7692
+ "@react-native/js-polyfills": "0.85.2",
7693
+ "@react-native/normalize-colors": "0.85.2",
7694
+ "@react-native/virtualized-lists": "0.85.2",
7695
7695
  "abort-controller": "^3.0.0",
7696
7696
  "anser": "^1.4.9",
7697
7697
  "ansi-regex": "^5.0.0",
@@ -7725,7 +7725,7 @@
7725
7725
  "node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
7726
7726
  },
7727
7727
  "peerDependencies": {
7728
- "@react-native/jest-preset": "0.85.1",
7728
+ "@react-native/jest-preset": "0.85.2",
7729
7729
  "@types/react": "^19.1.1",
7730
7730
  "react": "^19.2.3"
7731
7731
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.411",
3
+ "version": "0.187.413",
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",