@christiandoxa/prodex 0.2.108 → 0.2.110

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 +12 -6
  2. 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.108`:
50
+ The current local version in this repo is `0.2.110`:
49
51
 
50
52
  ```bash
51
- npm install -g @christiandoxa/prodex@0.2.108
52
- cargo install prodex --force --version 0.2.108
53
+ npm install -g @christiandoxa/prodex@0.2.110
54
+ cargo install prodex --force --version 0.2.110
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,15 @@ 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 your OpenAI-backed profile pool.
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 default Claude custom model follows the shared Codex `config.toml` model when available
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
+ - Prodex also seeds Claude's picker with the full Prodex GPT catalog using Claude-native placeholder model IDs
114
+ - Claude `max` effort maps to OpenAI `xhigh` when the selected GPT model supports it
115
+ - supported picker entries use Claude-native placeholders so Claude can expose its native effort controls
110
116
  - use `PRODEX_CLAUDE_BIN` if `claude` is not on `PATH`
111
117
  - use `PRODEX_CLAUDE_MODEL` to force a specific upstream Responses model
112
118
  - 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.108",
3
+ "version": "0.2.110",
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.108",
20
- "@christiandoxa/prodex-linux-arm64": "0.2.108",
21
- "@christiandoxa/prodex-darwin-x64": "0.2.108",
22
- "@christiandoxa/prodex-darwin-arm64": "0.2.108",
23
- "@christiandoxa/prodex-win32-x64": "0.2.108",
24
- "@christiandoxa/prodex-win32-arm64": "0.2.108"
19
+ "@christiandoxa/prodex-linux-x64": "0.2.110",
20
+ "@christiandoxa/prodex-linux-arm64": "0.2.110",
21
+ "@christiandoxa/prodex-darwin-x64": "0.2.110",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.2.110",
23
+ "@christiandoxa/prodex-win32-x64": "0.2.110",
24
+ "@christiandoxa/prodex-win32-arm64": "0.2.110"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"