@christiandoxa/prodex 0.283.0 → 0.284.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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. 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.
@@ -811,6 +814,8 @@ See [LOCAL.md](./LOCAL.md) for self-hosted model setup and testing.
811
814
  <summary>Utility commands</summary>
812
815
 
813
816
  ```bash
817
+ prodex status
818
+ prodex status --once
814
819
  prodex info
815
820
  prodex log
816
821
  prodex log stream
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.283.0",
3
+ "version": "0.284.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.283.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.283.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.283.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.283.0",
23
- "@christiandoxa/prodex-win32-x64": "0.283.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.283.0",
19
+ "@christiandoxa/prodex-linux-x64": "0.284.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.284.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.284.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.284.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.284.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.284.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",