@christiandoxa/prodex 0.172.0 → 0.174.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 +5 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -496,6 +496,7 @@ It combines:
|
|
|
496
496
|
```bash
|
|
497
497
|
prodex s
|
|
498
498
|
prodex s exec "review this repo"
|
|
499
|
+
prodex s expose
|
|
499
500
|
```
|
|
500
501
|
|
|
501
502
|
`prodex super` expands to:
|
|
@@ -514,6 +515,8 @@ Use `prodex super --presidio` to enable Presidio without prompting, or `prodex s
|
|
|
514
515
|
|
|
515
516
|
Full access maps to Codex's sandbox-bypass launch flag. Use it only when you intentionally want Codex to run without the normal approval and sandbox protections.
|
|
516
517
|
|
|
518
|
+
Use `prodex s expose` when you need to reach the live Super terminal from a browser. Prodex starts a local PTY bridge protected by a high-entropy access token, launches `cloudflared tunnel --protocol http2 --url ...` when `cloudflared` is available, and prints both the loopback and Cloudflare quick-tunnel URLs. The browser tab can close without stopping the session; reopening the same token URL reconnects to the existing PTY and replays recent scrollback. Add `--no-tunnel` for local-only access, `--max-clients N` to cap simultaneous browsers, or `--command 'prodex s --no-presidio'` to choose the initial terminal command.
|
|
519
|
+
|
|
517
520
|
Super's built-in optimization stack is deliberately local and deterministic. It preloads the existing Caveman and Claude-Mem pieces, exposes an overlay `rtk` wrapper plus RTK auto-wrappers for common noisy commands when RTK is installed, auto-registers `sqz-mcp` and `token-savior` MCP servers when those binaries are already on `PATH` or in a managed `prodex-optimizers` checkout, exposes `sqz` and `claw-compactor` wrappers when those commands/checkouts are discoverable, invokes a trusted one-shot `prodex-claw-compactor-sessionstart` SessionStart benchmark probe when Claw-Compactor is available, falls back to a temporary shadow `MEMORY.md` when the workspace has no Markdown memory files, then uses Smart Context Autopilot through a dedicated runtime proxy for lower-token request shaping. The probe delegates to `prodex-claw-compactor-auto "$(pwd)"` and uses a marker under `CODEX_HOME` so Codex conversation restarts do not replay it. Presidio redaction is added to that proxy only when you opt in at the prompt. Prodex passes token-savior cache and stats paths under `PRODEX_HOME` (default `~/.prodex`) so compatible token-savior versions keep generated state out of worktrees.
|
|
518
521
|
|
|
519
522
|
RTK and SQZ split the token work across different sides of the flow:
|
|
@@ -533,6 +536,7 @@ Managed optimizer checkouts are discovered from `PRODEX_OPTIMIZERS_HOME`, `$XDG_
|
|
|
533
536
|
```bash
|
|
534
537
|
prodex
|
|
535
538
|
prodex s
|
|
539
|
+
prodex s expose
|
|
536
540
|
prodex exec "review this repo"
|
|
537
541
|
prodex quota --all
|
|
538
542
|
prodex profile list
|
|
@@ -915,7 +919,7 @@ git diff | prodex context compact-output --kind git-diff
|
|
|
915
919
|
|
|
916
920
|
| Command | Description |
|
|
917
921
|
|---|---|
|
|
918
|
-
| `prodex info` | Shows effective runtime tuning values after environment, policy, and default resolution. |
|
|
922
|
+
| `prodex info` | Shows provider route/quota shapes plus effective runtime tuning values after environment, policy, and default resolution. |
|
|
919
923
|
| `prodex doctor --install` | Adds install and embedded asset checks to doctor output. |
|
|
920
924
|
| `prodex doctor --runtime` | Runs runtime diagnostics. |
|
|
921
925
|
| `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.174.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.174.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.174.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.174.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.174.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.174.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.174.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|