@christiandoxa/prodex 0.283.0 → 0.285.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 +12 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -403,8 +403,11 @@ prodex quota --all --provider deepseek --once
|
|
|
403
403
|
prodex quota --all --provider local --base-url http://127.0.0.1:8131/v1 --once
|
|
404
404
|
prodex redeem main
|
|
405
405
|
prodex dashboard
|
|
406
|
+
prodex status
|
|
406
407
|
```
|
|
407
408
|
|
|
409
|
+
`prodex status` opens a btop-inspired live terminal dashboard combining the active/runtime profile, 5-hour and weekly quota/reset/runway, historical token usage and cache efficiency, and aggregate Prodex process CPU, resident memory, disk I/O, and network socket queues. Press `r` to refresh immediately and `q` or `Esc` to exit. `prodex status --once` emits one snapshot for scripts. Resource counters use Linux `/proc`; non-Linux systems show those fields as unavailable while quota and token panels continue working.
|
|
410
|
+
|
|
408
411
|
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.
|
|
409
412
|
|
|
410
413
|
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.
|
|
@@ -697,8 +700,15 @@ anonymizer_url = "http://localhost:5001"
|
|
|
697
700
|
language_mode = "auto"
|
|
698
701
|
languages = ["en", "id"]
|
|
699
702
|
fail_mode = "open"
|
|
703
|
+
timeout_ms = 10000
|
|
704
|
+
max_response_bytes = 4194304
|
|
705
|
+
max_concurrency = 8
|
|
700
706
|
```
|
|
701
707
|
|
|
708
|
+
Enterprise modes additionally require private/on-prem endpoints or exact
|
|
709
|
+
`trusted_hosts` entries. Redirects and environment proxy settings are ignored
|
|
710
|
+
so inspected content cannot leave the approved endpoint boundary.
|
|
711
|
+
|
|
702
712
|
The standard Microsoft Analyzer image is English-only. Indonesian detection requires an Analyzer with Indonesian models and recognizers. Presidio quality depends on that service configuration.
|
|
703
713
|
|
|
704
714
|
</details>
|
|
@@ -811,6 +821,8 @@ See [LOCAL.md](./LOCAL.md) for self-hosted model setup and testing.
|
|
|
811
821
|
<summary>Utility commands</summary>
|
|
812
822
|
|
|
813
823
|
```bash
|
|
824
|
+
prodex status
|
|
825
|
+
prodex status --once
|
|
814
826
|
prodex info
|
|
815
827
|
prodex log
|
|
816
828
|
prodex log stream
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.285.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.285.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.285.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.285.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.285.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.285.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.285.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",
|