@christiandoxa/prodex 0.235.0 → 0.237.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 +2 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -903,7 +903,7 @@ For OpenAI/Codex profiles, quota views also show earned rate-limit reset credits
|
|
|
903
903
|
```bash
|
|
904
904
|
prodex session list
|
|
905
905
|
prodex session current
|
|
906
|
-
prodex session current --
|
|
906
|
+
prodex session current --parent-only
|
|
907
907
|
```
|
|
908
908
|
|
|
909
909
|
</details>
|
|
@@ -1300,7 +1300,7 @@ git diff | prodex context compact-output --kind git-diff
|
|
|
1300
1300
|
| `prodex info` | Shows provider route/quota shapes plus effective runtime tuning values after environment, policy, and default resolution. |
|
|
1301
1301
|
| `prodex log` | Shows the latest session transcript text plus the latest runtime token event. |
|
|
1302
1302
|
| `prodex log stream` | Follows session/runtime logs and prints transcript text plus token events live. Add `--json` for JSON Lines token events only. |
|
|
1303
|
-
| `prodex log upstream` | Follows backend-bound LLM payload snapshots after Prodex processing such as Presidio redaction and Smart Context rewriting. Add `--json` for JSON Lines payload events. Snapshots are capped at 128 KiB per payload. |
|
|
1303
|
+
| `prodex log upstream` | Follows HTTP backend-bound LLM payload snapshots after Prodex processing such as Presidio redaction and Smart Context rewriting. Add `--json` for JSON Lines payload events. WebSocket request payloads are not logged. Snapshots are capped at 128 KiB per payload. |
|
|
1304
1304
|
| `prodex doctor --install` | Adds install and embedded asset checks to doctor output. |
|
|
1305
1305
|
| `prodex doctor --runtime` | Runs runtime diagnostics. |
|
|
1306
1306
|
| `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.237.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.237.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.237.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.237.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.237.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.237.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.237.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",
|