@rickgetz/codex 0.145.0-rick.1 → 0.146.0-rick.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 +2 -2
package/README.md CHANGED
@@ -27,6 +27,16 @@ Run the following on Windows to install Codex CLI:
27
27
  powershell -ExecutionPolicy ByPass -c "irm https://chatgpt.com/codex/install.ps1 | iex"
28
28
  ```
29
29
 
30
+ 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):
31
+
32
+ ```shell
33
+ curl -fsSL https://chatgpt.com/codex/install.sh | CODEX_INSTALLER_USE_RELEASES_OPENAI_COM=false sh
34
+ ```
35
+
36
+ ```powershell
37
+ $env:CODEX_INSTALLER_USE_RELEASES_OPENAI_COM='false'; irm https://chatgpt.com/codex/install.ps1 | iex
38
+ ```
39
+
30
40
  Codex CLI can also be installed via the following package managers:
31
41
 
32
42
  ```shell
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rickgetz/codex",
3
- "version": "0.145.0-rick.1",
3
+ "version": "0.146.0-rick.1",
4
4
  "description": "Codex CLI is a coding agent from OpenAI that runs locally on your computer.",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
@@ -20,6 +20,6 @@
20
20
  },
21
21
  "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
22
22
  "optionalDependencies": {
23
- "@rickgetz/codex-darwin-arm64": "npm:@rickgetz/codex@0.145.0-rick.1-darwin-arm64"
23
+ "@rickgetz/codex-darwin-arm64": "npm:@rickgetz/codex@0.146.0-rick.1-darwin-arm64"
24
24
  }
25
25
  }