@codexed/codex 0.145.0-codexed.1 → 0.147.0-codexed.1

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/README.md +10 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -25,6 +25,16 @@ Run the following on Windows to install Codex CLI:
25
25
  powershell -ExecutionPolicy ByPass -c "irm https://chatgpt.com/codex/install.ps1 | iex"
26
26
  ```
27
27
 
28
+ The standalone installers download from `https://releases.openai.com/codex` by default and fall back to GitHub Releases if a metadata or asset download is unavailable. To force GitHub Releases, set `CODEX_INSTALLER_USE_RELEASES_OPENAI_COM` to `false` (`0` and `no` are also accepted):
29
+
30
+ ```shell
31
+ curl -fsSL https://chatgpt.com/codex/install.sh | CODEX_INSTALLER_USE_RELEASES_OPENAI_COM=false sh
32
+ ```
33
+
34
+ ```powershell
35
+ $env:CODEX_INSTALLER_USE_RELEASES_OPENAI_COM='false'; irm https://chatgpt.com/codex/install.ps1 | iex
36
+ ```
37
+
28
38
  Codex CLI can also be installed via the following package managers:
29
39
 
30
40
  ```shell
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codexed/codex",
3
- "version": "0.145.0-codexed.1",
3
+ "version": "0.147.0-codexed.1",
4
4
  "license": "Apache-2.0",
5
5
  "bin": {
6
6
  "codex": "bin/codex.js"
@@ -24,8 +24,8 @@
24
24
  "postinstall": "node scripts/postinstall.mjs"
25
25
  },
26
26
  "optionalDependencies": {
27
- "@codexed/codex-linux-x64": "0.145.0-codexed.1",
28
- "@codexed/codex-linux-arm64": "0.145.0-codexed.1",
29
- "@codexed/codex-win32-x64": "0.145.0-codexed.1"
27
+ "@codexed/codex-linux-x64": "0.147.0-codexed.1",
28
+ "@codexed/codex-linux-arm64": "0.147.0-codexed.1",
29
+ "@codexed/codex-win32-x64": "0.147.0-codexed.1"
30
30
  }
31
31
  }