polydev-ai 1.10.12 → 1.10.14

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/lib/cliManager.js CHANGED
@@ -849,8 +849,9 @@ This is a known issue with @google/gemini-cli@0.3.4 and older Node.js versions.`
849
849
  env: {
850
850
  ...process.env,
851
851
  HOME: process.env.HOME || os.homedir(),
852
+ // Strip API keys that could override CLI OAuth auth
853
+ ANTHROPIC_API_KEY: '',
852
854
  // Suppress interactive prompts and update checks
853
- CI: '1',
854
855
  NO_COLOR: '1',
855
856
  TERM: 'dumb',
856
857
  NONINTERACTIVE: '1',
@@ -1159,8 +1160,9 @@ This is a known issue with @google/gemini-cli@0.3.4 and older Node.js versions.`
1159
1160
  TEMP: tmpDir,
1160
1161
  TMP: tmpDir,
1161
1162
  HOME: process.env.HOME || os.homedir(),
1163
+ // Strip API keys that could override CLI OAuth auth
1164
+ ANTHROPIC_API_KEY: '',
1162
1165
  // Suppress interactive prompts and update checks
1163
- CI: '1',
1164
1166
  NO_COLOR: '1',
1165
1167
  TERM: 'dumb',
1166
1168
  NONINTERACTIVE: '1',
@@ -1487,10 +1489,13 @@ This is a known issue with @google/gemini-cli@0.3.4 and older Node.js versions.`
1487
1489
  env: {
1488
1490
  ...process.env,
1489
1491
  HOME: process.env.HOME || os.homedir(),
1490
- CI: '1',
1492
+ // Strip API keys that could override CLI OAuth auth
1493
+ ANTHROPIC_API_KEY: '',
1494
+ // Suppress interactive prompts and update checks
1491
1495
  NO_COLOR: '1',
1492
1496
  TERM: 'dumb',
1493
1497
  NONINTERACTIVE: '1',
1498
+ // Prevent browser opening (OAuth, updates, etc.)
1494
1499
  NO_BROWSER: '1',
1495
1500
  BROWSER: 'echo',
1496
1501
  DISPLAY: '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polydev-ai",
3
- "version": "1.10.12",
3
+ "version": "1.10.14",
4
4
  "engines": {
5
5
  "node": ">=20.x <=22.x"
6
6
  },