@christiandoxa/prodex 0.197.0 → 0.198.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 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1133,6 +1133,7 @@ See [LOCAL.md](./LOCAL.md) for self-hosted model setup and testing.
|
|
|
1133
1133
|
prodex info
|
|
1134
1134
|
prodex log
|
|
1135
1135
|
prodex log stream
|
|
1136
|
+
prodex log upstream
|
|
1136
1137
|
prodex doctor --install
|
|
1137
1138
|
prodex doctor --runtime
|
|
1138
1139
|
prodex doctor --bundle ./prodex-doctor.json --redacted
|
|
@@ -1148,6 +1149,7 @@ git diff | prodex context compact-output --kind git-diff
|
|
|
1148
1149
|
| `prodex info` | Shows provider route/quota shapes plus effective runtime tuning values after environment, policy, and default resolution. |
|
|
1149
1150
|
| `prodex log` | Shows the latest session transcript text plus the latest runtime token event. |
|
|
1150
1151
|
| `prodex log stream` | Follows session/runtime logs and prints transcript text plus token events live. Add `--json` for JSON Lines token events only. |
|
|
1152
|
+
| `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. |
|
|
1151
1153
|
| `prodex doctor --install` | Adds install and embedded asset checks to doctor output. |
|
|
1152
1154
|
| `prodex doctor --runtime` | Runs runtime diagnostics. |
|
|
1153
1155
|
| `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.198.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.198.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.198.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.198.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.198.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.198.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.198.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",
|