@christiandoxa/prodex 0.44.0 → 0.45.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.
- package/README.md +11 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
`prodex` is a wrapper for Codex and Claude Code when you want to work with multiple isolated profiles.
|
|
4
4
|
|
|
5
|
-
Each profile can use a different account.
|
|
5
|
+
Each profile can use a different account. For default OpenAI/Codex profiles, `prodex` checks quota and can route new work to another available profile. Existing sessions stay attached to the profile they started with.
|
|
6
|
+
|
|
7
|
+
If a profile's `config.toml` sets `model_provider` to a non-OpenAI backend such as `amazon-bedrock`, `prodex run` and `prodex caveman` launch directly without quota preflight or the local auto-rotate proxy, `prodex quota` is unavailable for that profile, and `prodex claude` is unsupported.
|
|
6
8
|
|
|
7
9
|
It can also run Caveman mode and optionally connect Claude-Mem to the active session path.
|
|
8
10
|
|
|
@@ -94,6 +96,8 @@ prodex profile list
|
|
|
94
96
|
prodex quota --all
|
|
95
97
|
```
|
|
96
98
|
|
|
99
|
+
`prodex quota` supports OpenAI/Codex profiles and imported Copilot accounts. It does not support profiles whose `config.toml` selects a non-OpenAI `model_provider`.
|
|
100
|
+
|
|
97
101
|
Run commands through `prodex`:
|
|
98
102
|
|
|
99
103
|
```bash
|
|
@@ -136,6 +140,8 @@ prodex run 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
136
140
|
printf 'context from stdin' | prodex run exec "summarize this"
|
|
137
141
|
```
|
|
138
142
|
|
|
143
|
+
If the selected profile sets `model_provider` to a non-OpenAI backend, Prodex skips quota preflight and launches Codex directly without the local runtime proxy.
|
|
144
|
+
|
|
139
145
|
## Caveman examples
|
|
140
146
|
|
|
141
147
|
```bash
|
|
@@ -148,6 +154,8 @@ prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
148
154
|
|
|
149
155
|
`prodex caveman` runs Codex with a temporary overlay `CODEX_HOME`, so the base profile home stays unchanged after the session ends.
|
|
150
156
|
|
|
157
|
+
If the selected profile sets `model_provider` to a non-OpenAI backend, Prodex skips quota preflight and launches Caveman directly without the local runtime proxy.
|
|
158
|
+
|
|
151
159
|
If you use the `mem` variant, Prodex points an existing Claude-Mem Codex setup to the active Prodex session path instead of the default `~/.codex/sessions`.
|
|
152
160
|
|
|
153
161
|
## Claude Code examples
|
|
@@ -165,6 +173,8 @@ prodex claude --profile second -- -p --output-format json "show the latest diff"
|
|
|
165
173
|
|
|
166
174
|
`prodex claude` uses the normal Claude Code flow.
|
|
167
175
|
|
|
176
|
+
This path requires the default OpenAI/Codex provider. Profiles whose `config.toml` sets a non-OpenAI `model_provider` are not supported by `prodex claude`.
|
|
177
|
+
|
|
168
178
|
`prodex claude caveman` loads Caveman only for that session while keeping state under the Prodex-managed `CLAUDE_CONFIG_DIR`, not the global `~/.claude`.
|
|
169
179
|
|
|
170
180
|
`prodex claude caveman mem` combines both Caveman and Claude-Mem.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.45.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.
|
|
20
|
-
"@christiandoxa/prodex-linux-arm64": "0.
|
|
21
|
-
"@christiandoxa/prodex-darwin-x64": "0.
|
|
22
|
-
"@christiandoxa/prodex-darwin-arm64": "0.
|
|
23
|
-
"@christiandoxa/prodex-win32-x64": "0.
|
|
24
|
-
"@christiandoxa/prodex-win32-arm64": "0.
|
|
19
|
+
"@christiandoxa/prodex-linux-x64": "0.45.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.45.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.45.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.45.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.45.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.45.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|