@christiandoxa/prodex 0.243.0 → 0.244.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 +26 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`prodex` is a multi-account, multi-provider Codex wrapper with quota-aware profile routing.
|
|
4
4
|
|
|
5
|
-
Use multiple Codex accounts and supported provider backends from one command line. OpenAI/Codex profiles get quota-aware routing and can auto-rotate when multiple eligible profiles exist; provider adapters let `prodex s` launch the Codex front end against Gemini, Anthropic, Copilot, DeepSeek, and local OpenAI-compatible servers.
|
|
5
|
+
Use multiple Codex accounts and supported provider backends from one command line. OpenAI/Codex profiles get quota-aware routing and can auto-rotate when multiple eligible profiles exist; provider adapters let `prodex s` launch the Codex front end against Gemini, Anthropic, Copilot, Kiro, DeepSeek, and local OpenAI-compatible servers.
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -69,6 +69,7 @@ Prodex supports two provider paths:
|
|
|
69
69
|
| Google Antigravity CLI | `prodex s gemini --cli agy` | Antigravity keyring / Google Sign-In via `prodex login --with-antigravity` or `agy auth login` | CLI quota snapshot | Native CLI path; no Prodex account auto-rotation or Presidio proxying. |
|
|
70
70
|
| Anthropic Claude | `prodex s --provider anthropic` | Claude Code OAuth via `prodex login --with-claude` / `prodex profile import claude`, or `ANTHROPIC_API_KEY(S)` / `--api-key` | OAuth profiles | Shows Claude OAuth readiness; add `ANTHROPIC_ADMIN_KEY` to include Anthropic Admin rate-limit groups. |
|
|
71
71
|
| GitHub Copilot | `prodex s --provider copilot` | Imported Copilot CLI profile via `prodex profile import copilot`, or `GITHUB_COPILOT_API_KEY(S)` / `--api-key` | Imported profiles | Native profile and API-key modes can rotate before commit across configured profiles/keys; continuations stay bound to the owning profile. |
|
|
72
|
+
| Kiro CLI | `prodex s --provider kiro` or `prodex super --cli kiro` | Imported Kiro CLI profile via `prodex profile import kiro` | Imported profiles | Prodex snapshots the installed Kiro CLI auth store into a managed profile, can route Codex through the Kiro bridge, and can launch native Kiro CLI from that imported snapshot. |
|
|
72
73
|
| DeepSeek | `prodex s deepseek` | `DEEPSEEK_API_KEY(S)` / `--api-key` | API-key balance | `prodex quota --all --provider deepseek` reads DeepSeek `/user/balance`. |
|
|
73
74
|
| Local OpenAI-compatible | `prodex super --url http://127.0.0.1:8131` | Local server auth/config | Health snapshot | `prodex quota --all --provider local --base-url ...` checks the local `/models` endpoint. |
|
|
74
75
|
| Bedrock / custom Codex `model_provider` | `prodex run` / `prodex caveman` direct pass-through | Codex-owned config | Config snapshot | Prodex reports configured provider metadata; provider-side quota stays owned by Codex/upstream. |
|
|
@@ -733,6 +734,18 @@ When you import a Copilot profile, Prodex does not move the Copilot token into P
|
|
|
733
734
|
|
|
734
735
|
</details>
|
|
735
736
|
|
|
737
|
+
<details>
|
|
738
|
+
<summary>Import a Kiro CLI account</summary>
|
|
739
|
+
|
|
740
|
+
```bash
|
|
741
|
+
prodex profile import kiro
|
|
742
|
+
prodex profile import kiro --name kiro-main --activate
|
|
743
|
+
```
|
|
744
|
+
|
|
745
|
+
This reads the installed Kiro CLI state from the local auth database, snapshots the current Kiro auth payload into the managed Prodex profile, and refreshes a Kiro model catalog snapshot for later `--provider kiro` or `--cli kiro` launches. Override the detected CLI binary with `PRODEX_KIRO_BIN` when needed.
|
|
746
|
+
|
|
747
|
+
</details>
|
|
748
|
+
|
|
736
749
|
## Daily command: `prodex s`
|
|
737
750
|
|
|
738
751
|
<details>
|
|
@@ -889,7 +902,7 @@ prodex redeem main
|
|
|
889
902
|
prodex dashboard
|
|
890
903
|
```
|
|
891
904
|
|
|
892
|
-
The live `prodex quota --all --detail` view accepts `s` to cycle sort modes and `f` to cycle the provider filter through `all`, `openai`, `gemini`, `anthropic`, `copilot`, `deepseek`, and `local`. Add `--provider openai`, `--provider gemini`, `--provider anthropic`, `--provider copilot`, `--provider deepseek`, or `--provider local` to start locked to a single provider.
|
|
905
|
+
The live `prodex quota --all --detail` view accepts `s` to cycle sort modes and `f` to cycle the provider filter through `all`, `openai`, `gemini`, `anthropic`, `copilot`, `kiro`, `deepseek`, and `local`. Add `--provider openai`, `--provider gemini`, `--provider anthropic`, `--provider copilot`, `--provider kiro`, `--provider deepseek`, or `--provider local` to start locked to a single provider.
|
|
893
906
|
|
|
894
907
|
For OpenAI/Codex profiles, quota views also show earned rate-limit reset credits when the upstream usage API reports them. Use `prodex redeem <profile>` when you explicitly want to redeem one reset credit on a named profile, even if the 5h and weekly quota windows still have remaining quota. If either quota window resets within 1 hour, Prodex asks before consuming the credit; pass `--yes` to skip that prompt. Add `--auto-redeem` to a runtime launch when you want Prodex to consider a guarded automatic redeem after every OpenAI/Codex profile is weekly-exhausted.
|
|
895
908
|
|
|
@@ -1080,6 +1093,16 @@ prodex s --provider copilot --model gpt-5.3-codex
|
|
|
1080
1093
|
|
|
1081
1094
|
Without `--api-key`, Prodex uses imported Copilot CLI profiles, refreshes Copilot runtime API tokens from GitHub before launch, can rotate fresh native Responses requests across multiple eligible profiles, and binds streaming response IDs back to the owning profile for continuations. `GITHUB_COPILOT_API_KEY`, `GITHUB_COPILOT_API_KEYS`, or `--api-key` can be used when you already have Copilot runtime API token(s); plural keys may be comma-, semicolon-, or newline-separated and can rotate before commit on auth/quota/rate/temporary failures.
|
|
1082
1095
|
|
|
1096
|
+
Use `--provider kiro` or `--cli kiro` when you want the Codex/Super front end or native Kiro CLI with imported Kiro credentials:
|
|
1097
|
+
|
|
1098
|
+
```bash
|
|
1099
|
+
prodex profile import kiro
|
|
1100
|
+
prodex s --provider kiro --model claude-sonnet-4.5
|
|
1101
|
+
prodex super --cli kiro --profile kiro-main
|
|
1102
|
+
```
|
|
1103
|
+
|
|
1104
|
+
`prodex profile import kiro` reads the installed Kiro CLI auth database (`~/.local/share/kiro-cli/data.sqlite3` or the Amazon Q compatibility location when present), snapshots the current credential payload into `kiro_auth.json`, and stores a model catalog snapshot for runtime routing. `--provider kiro` routes Codex through Prodex's local Kiro adapter, while `--cli kiro` launches the native Kiro CLI from the imported Prodex snapshot. Override binary discovery with `PRODEX_KIRO_BIN` when the installed launcher is not on `PATH`.
|
|
1105
|
+
|
|
1083
1106
|
Use `--provider deepseek` when you want the Codex/Super front end with DeepSeek as the upstream model:
|
|
1084
1107
|
|
|
1085
1108
|
```bash
|
|
@@ -1223,6 +1246,7 @@ prodex logout --profile main
|
|
|
1223
1246
|
|
|
1224
1247
|
```bash
|
|
1225
1248
|
prodex profile import copilot
|
|
1249
|
+
prodex profile import kiro
|
|
1226
1250
|
prodex profile export
|
|
1227
1251
|
prodex profile remove second
|
|
1228
1252
|
prodex profile remove --all
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.244.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.
|
|
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.244.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.244.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.244.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.244.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.244.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.244.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",
|