@christiandoxa/prodex 0.195.0 → 0.196.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 +4 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -993,6 +993,8 @@ See [LOCAL.md](./LOCAL.md) for self-hosted model setup and testing.
|
|
|
993
993
|
|
|
994
994
|
```bash
|
|
995
995
|
prodex info
|
|
996
|
+
prodex log
|
|
997
|
+
prodex log stream
|
|
996
998
|
prodex doctor --install
|
|
997
999
|
prodex doctor --runtime
|
|
998
1000
|
prodex doctor --bundle ./prodex-doctor.json --redacted
|
|
@@ -1006,6 +1008,8 @@ git diff | prodex context compact-output --kind git-diff
|
|
|
1006
1008
|
| Command | Description |
|
|
1007
1009
|
|---|---|
|
|
1008
1010
|
| `prodex info` | Shows provider route/quota shapes plus effective runtime tuning values after environment, policy, and default resolution. |
|
|
1011
|
+
| `prodex log` | Shows the latest runtime token event: tokens sent (`input_tokens`), cache hits, tokens received (`output_tokens`), and reasoning tokens. |
|
|
1012
|
+
| `prodex log stream` | Follows all active runtime logs and prints token events live. Add `--json` for JSON Lines output. |
|
|
1009
1013
|
| `prodex doctor --install` | Adds install and embedded asset checks to doctor output. |
|
|
1010
1014
|
| `prodex doctor --runtime` | Runs runtime diagnostics. |
|
|
1011
1015
|
| `prodex doctor --bundle PATH --redacted` | Writes a shareable JSON diagnostic bundle without stored auth tokens or headers. |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.196.0",
|
|
4
4
|
"description": "Safe multi-account auto-rotate for Codex CLI with isolated CODEX_HOME profiles",
|
|
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.196.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.196.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.196.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.196.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.196.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.196.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",
|