@christiandoxa/prodex 0.287.0 → 0.288.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/README.md +20 -5
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -128,19 +128,33 @@ Runtime proxy design contract:
128
128
 
129
129
  ## Installation
130
130
 
131
+ Install the standalone macOS or Linux binary from the latest GitHub Release:
132
+
133
+ ```bash
134
+ curl -fsSL https://github.com/christiandoxa/prodex/releases/latest/download/install.sh | sh
135
+ ```
136
+
137
+ The installer downloads the matching release asset, verifies it against `SHA256SUMS`, and installs `prodex` to `~/.local/bin`. Its auditable source is also available directly from the repository:
138
+
139
+ ```bash
140
+ curl -fsSL https://raw.githubusercontent.com/christiandoxa/prodex/main/install.sh | sh
141
+ ```
142
+
143
+ Set `PRODEX_INSTALL_DIR` to choose another binary directory. Standalone installs use the `codex` command on `PATH`; install Codex first if it is not already available.
144
+
131
145
  <details>
132
- <summary>Install from npm</summary>
146
+ <summary>Legacy npm installation</summary>
133
147
 
134
148
  ```bash
135
149
  npm install -g @christiandoxa/prodex
136
150
  ```
137
151
 
138
- The npm package uses its bundled `@openai/codex@latest` dependency by default. If the bundled native Codex optional package is missing or not executable, Prodex falls back to an executable external `codex` on `PATH` and prints a notice before launch. This includes nvm-managed global Codex installs when the active nvm version's `bin` directory is on `PATH`. If neither bundled nor external Codex is usable, set `PRODEX_CODEX_AUTO_INSTALL=1` to let Prodex run `npm install -g @openai/codex@latest` once before retrying PATH resolution. To deliberately pin a separate Codex CLI from your machine, set `PRODEX_CODEX_BIN=/path/to/codex` or `PRODEX_CODEX_RESOLUTION=external`.
152
+ The npm package uses its bundled `@openai/codex@latest` dependency by default. Running `prodex update` migrates this installation to the standalone GitHub Release binary and preserves Codex as its own global npm command. If the bundled native Codex optional package is missing or not executable, Prodex falls back to an executable external `codex` on `PATH` and prints a notice before launch. This includes nvm-managed global Codex installs when the active nvm version's `bin` directory is on `PATH`. If neither bundled nor external Codex is usable, set `PRODEX_CODEX_AUTO_INSTALL=1` to let Prodex run `npm install -g @openai/codex@latest` once before retrying PATH resolution. To deliberately pin a separate Codex CLI from your machine, set `PRODEX_CODEX_BIN=/path/to/codex` or `PRODEX_CODEX_RESOLUTION=external`.
139
153
 
140
154
  </details>
141
155
 
142
156
  <details>
143
- <summary>Install from source checkout</summary>
157
+ <summary>Legacy source installation</summary>
144
158
 
145
159
  ```bash
146
160
  cargo install --path .
@@ -437,13 +451,14 @@ prodex session current --parent-only
437
451
  </details>
438
452
 
439
453
  <details>
440
- <summary>Update Codex</summary>
454
+ <summary>Update Prodex</summary>
441
455
 
442
456
  ```bash
443
457
  prodex update --help
458
+ prodex update
444
459
  ```
445
460
 
446
- `prodex update` passes through to `codex update` directly. It does not use Prodex profile selection, quota preflight, or the local runtime proxy.
461
+ `prodex update` downloads the latest checksum-verified GitHub Release binary. Existing npm or Cargo installations are removed and replaced with the standalone binary in `~/.local/bin`. Update notices emitted by this version use the same command.
447
462
 
448
463
  </details>
449
464
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.287.0",
3
+ "version": "0.288.0",
4
4
  "description": "Multi-provider Codex wrapper with OpenAI quota-aware routing and Claude Code support",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
@@ -16,12 +16,12 @@
16
16
  "@openai/codex": "latest"
17
17
  },
18
18
  "optionalDependencies": {
19
- "@christiandoxa/prodex-linux-x64": "0.287.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.287.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.287.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.287.0",
23
- "@christiandoxa/prodex-win32-x64": "0.287.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.287.0",
19
+ "@christiandoxa/prodex-linux-x64": "0.288.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.288.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.288.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.288.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.288.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.288.0",
25
25
  "@openai/codex-linux-x64": "npm:@openai/codex@linux-x64",
26
26
  "@openai/codex-linux-arm64": "npm:@openai/codex@linux-arm64",
27
27
  "@openai/codex-darwin-x64": "npm:@openai/codex@darwin-x64",