@christiandoxa/prodex 0.2.108 → 0.2.109
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/README.md +11 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -13,6 +13,8 @@ One OpenAI profile pool for Codex CLI and Claude Code.
|
|
|
13
13
|
|
|
14
14
|
It keeps each profile isolated, checks quota before launch, and rotates to another ready account before a request or stream is committed.
|
|
15
15
|
|
|
16
|
+
Use `prodex` when Codex CLI is your front end. Use `prodex claude` when Claude Code is your front end. The account pool, profile isolation, quota checks, and continuation routing stay in Prodex either way.
|
|
17
|
+
|
|
16
18
|
## Requirements
|
|
17
19
|
|
|
18
20
|
- An OpenAI account, plus at least one logged-in Prodex profile
|
|
@@ -45,11 +47,11 @@ Check your installed version:
|
|
|
45
47
|
prodex --version
|
|
46
48
|
```
|
|
47
49
|
|
|
48
|
-
The current local version in this repo is `0.2.
|
|
50
|
+
The current local version in this repo is `0.2.109`:
|
|
49
51
|
|
|
50
52
|
```bash
|
|
51
|
-
npm install -g @christiandoxa/prodex@0.2.
|
|
52
|
-
cargo install prodex --force --version 0.2.
|
|
53
|
+
npm install -g @christiandoxa/prodex@0.2.109
|
|
54
|
+
cargo install prodex --force --version 0.2.109
|
|
53
55
|
```
|
|
54
56
|
|
|
55
57
|
If you want to switch from a Cargo-installed binary to npm:
|
|
@@ -93,7 +95,7 @@ prodex run 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
93
95
|
printf 'context from stdin' | prodex run exec "summarize this"
|
|
94
96
|
```
|
|
95
97
|
|
|
96
|
-
Use this path when you want Codex CLI itself to be the front end. Prodex handles profile selection, quota preflight, continuation affinity, and safe pre-commit rotation.
|
|
98
|
+
Use this path when you want Codex CLI itself to be the front end. Prodex handles profile selection, quota preflight, continuation affinity, and safe pre-commit rotation across your OpenAI-backed profiles.
|
|
97
99
|
|
|
98
100
|
## Use `prodex claude` for Claude Code
|
|
99
101
|
|
|
@@ -102,11 +104,14 @@ prodex claude -- -p "summarize this repo"
|
|
|
102
104
|
prodex claude --profile second -- -p --output-format json "show the latest diff"
|
|
103
105
|
```
|
|
104
106
|
|
|
105
|
-
Use this path when you want Claude Code to be the front end while Prodex still routes requests through
|
|
107
|
+
Use this path when you want Claude Code to be the front end while Prodex still routes requests through the same OpenAI-backed profile pool.
|
|
106
108
|
|
|
107
109
|
- `prodex claude` runs Claude Code through a local Anthropic-compatible proxy
|
|
108
110
|
- Claude Code state is isolated per profile in `CLAUDE_CONFIG_DIR`
|
|
109
|
-
- the
|
|
111
|
+
- the initial Claude model follows the shared Codex `config.toml` model when available
|
|
112
|
+
- Claude's `opus`, `sonnet`, and `haiku` picker entries are pinned to representative GPT models
|
|
113
|
+
- Claude `max` effort maps to OpenAI `xhigh` when the selected GPT model supports it
|
|
114
|
+
- Claude Code itself only exposes built-in aliases plus one custom model option on third-party providers
|
|
110
115
|
- use `PRODEX_CLAUDE_BIN` if `claude` is not on `PATH`
|
|
111
116
|
- use `PRODEX_CLAUDE_MODEL` to force a specific upstream Responses model
|
|
112
117
|
- use `PRODEX_CLAUDE_REASONING_EFFORT` to force the upstream reasoning tier
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.109",
|
|
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": "^0.118.0"
|
|
17
17
|
},
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"@christiandoxa/prodex-linux-x64": "0.2.
|
|
20
|
-
"@christiandoxa/prodex-linux-arm64": "0.2.
|
|
21
|
-
"@christiandoxa/prodex-darwin-x64": "0.2.
|
|
22
|
-
"@christiandoxa/prodex-darwin-arm64": "0.2.
|
|
23
|
-
"@christiandoxa/prodex-win32-x64": "0.2.
|
|
24
|
-
"@christiandoxa/prodex-win32-arm64": "0.2.
|
|
19
|
+
"@christiandoxa/prodex-linux-x64": "0.2.109",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.2.109",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.2.109",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.2.109",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.2.109",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.2.109"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|