@christiandoxa/prodex 0.52.0 → 0.54.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 +5 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -4,8 +4,6 @@
4
4
 
5
5
  The main feature is auto rotate. If one OpenAI/Codex profile runs out of quota, `prodex` can route new work to another profile that is still available. You do not need to switch accounts manually.
6
6
 
7
- It also keeps profiles isolated and keeps existing sessions attached to the profile they started with. For Codex CLI 0.124.0 and newer, Codex itself supports Amazon Bedrock and other OpenAI-compatible custom providers through `model_provider`; Prodex passes those profiles through directly instead of adding its OpenAI quota and rotation layer.
8
-
9
7
  ## Why use it
10
8
 
11
9
  Use `prodex` if you want to:
@@ -93,6 +91,7 @@ prodex claude mem -- -p "recall past work on this repo"
93
91
  prodex
94
92
  prodex run
95
93
  prodex run --profile main
94
+ prodex run --dry-run
96
95
  prodex exec "review this repo"
97
96
  prodex run 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
98
97
  printf 'context from stdin' | prodex run exec "summarize this"
@@ -103,6 +102,7 @@ printf 'context from stdin' | prodex run exec "summarize this"
103
102
  ```bash
104
103
  prodex caveman
105
104
  prodex caveman mem
105
+ prodex caveman --dry-run
106
106
  prodex caveman --profile main
107
107
  prodex caveman exec "review this repo in caveman mode"
108
108
  prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
@@ -117,6 +117,7 @@ If you use the `mem` variant, Prodex points an existing Claude-Mem Codex setup t
117
117
  ```bash
118
118
  prodex super
119
119
  prodex super --url http://127.0.0.1:8131
120
+ prodex super --url http://127.0.0.1:8131 --dry-run
120
121
  prodex super --profile main
121
122
  prodex super exec "review this repo in super mode"
122
123
  prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
@@ -128,6 +129,8 @@ Use this when you want Caveman mode, Claude-Mem transcript watching, and launch-
128
129
 
129
130
  Use `prodex super --url http://127.0.0.1:8131` when you want the same Super mode front end to talk directly to a local OpenAI-compatible server such as `llama-server`. Prodex injects a temporary `prodex-local` Codex provider, appends `/v1` when the URL has no path, disables non-function native tools that local servers commonly reject, advertises a conservative 16k local context window, and skips quota/proxy routing for that launch. The default local model id is `unsloth/qwen3.5-35b-a3b`; override it with `--model`, for example `prodex super --url http://127.0.0.1:8131 --model local/qwen`. Use `--context-window` and `--auto-compact-token-limit` if your local server is configured larger. See [LOCAL.md](./LOCAL.md) for self-hosted model setup and testing.
130
131
 
132
+ Add `--dry-run` to run, Caveman, or Super launches to print the resolved provider, model, `CODEX_HOME`, proxy args, and launch env with secret-looking values redacted. Dry-run output is prelaunch only and does not start Codex or the TUI.
133
+
131
134
  ### Run Claude Code
132
135
 
133
136
  ```bash
@@ -165,8 +168,6 @@ prodex profile remove --all
165
168
 
166
169
  Auto rotate and quota checks apply to supported OpenAI/Codex profiles.
167
170
 
168
- Codex CLI 0.124.0 added first-class Amazon Bedrock and OpenAI-compatible custom provider support. Configure that in the selected profile's Codex `config.toml`, for example with `model_provider = "amazon-bedrock"`.
169
-
170
171
  If a profile's `config.toml` sets `model_provider` to a non-OpenAI backend such as `amazon-bedrock`, `prodex run` and `prodex caveman` launch Codex directly without quota preflight or the local auto-rotate proxy. Bedrock quota, credentials, regions, and provider errors are handled by Codex and the upstream provider, not by Prodex.
171
172
 
172
173
  `prodex quota` is not available for those profiles.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.52.0",
3
+ "version": "0.54.0",
4
4
  "description": "Safe multi-account auto-rotate for Codex CLI with isolated CODEX_HOME profiles",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -16,12 +16,12 @@
16
16
  "@openai/codex": "latest"
17
17
  },
18
18
  "optionalDependencies": {
19
- "@christiandoxa/prodex-linux-x64": "0.52.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.52.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.52.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.52.0",
23
- "@christiandoxa/prodex-win32-x64": "0.52.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.52.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.54.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.54.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.54.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.54.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.54.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.54.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"