@christiandoxa/prodex 0.111.0 → 0.113.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 +12 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -340,7 +340,7 @@ prodex presidio redact --text "My name is John Smith and my phone is 212-555-123
340
340
  prodex presidio enable
341
341
  ```
342
342
 
343
- `prodex super` / `prodex s` starts a dedicated runtime proxy and redacts UTF-8 HTTP request bodies and WebSocket text frames through the local Presidio Analyzer and Anonymizer before forwarding them upstream. It is equivalent to adding the `presidio` prefix to the Super stack. The runtime uses `presidio.toml` endpoints when configured, falls back to `http://localhost:5002` and `http://localhost:5001`, and honors `fail_mode = "open"` or `"closed"`.
343
+ When you answer `y` to the `prodex super` / `prodex s` Presidio prompt or pass `--presidio`, Super starts a dedicated runtime proxy that redacts UTF-8 HTTP request bodies and WebSocket text frames through the local Presidio Analyzer and Anonymizer before forwarding them upstream. This is equivalent to adding the `presidio` prefix to the Super stack. Use `--no-presidio` to skip the prompt and keep redaction disabled. The runtime uses `presidio.toml` endpoints when configured, falls back to `http://localhost:5002` and `http://localhost:5001`, and honors `fail_mode = "open"` or `"closed"`.
344
344
 
345
345
  </details>
346
346
 
@@ -441,15 +441,21 @@ prodex s exec "review this repo"
441
441
 
442
442
  `prodex super` expands to:
443
443
 
444
+ ```bash
445
+ prodex caveman mem rtk sqz tokensavior clawcompactor --full-access
446
+ ```
447
+
448
+ Before launch, Super asks whether to add Presidio redaction. Empty input or `n` keeps the expansion above. If you answer `y`, it is equivalent to:
449
+
444
450
  ```bash
445
451
  prodex caveman mem rtk sqz tokensavior clawcompactor presidio --full-access
446
452
  ```
447
453
 
448
- Super enables runtime request-body and WebSocket text redaction through local Presidio for the session. The runtime uses `presidio.toml` endpoints when configured, falls back to `http://localhost:5002` and `http://localhost:5001`, and honors `fail_mode = "open"` or `"closed"`.
454
+ Use `prodex super --presidio` to enable Presidio without prompting, or `prodex super --no-presidio` to skip the prompt and keep Presidio disabled. Presidio enables runtime request-body and WebSocket text redaction through local Presidio for the session. The runtime uses `presidio.toml` endpoints when configured, falls back to `http://localhost:5002` and `http://localhost:5001`, and honors `fail_mode = "open"` or `"closed"`.
449
455
 
450
456
  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.
451
457
 
452
- 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 `prodex-claw-compactor-auto "$(pwd)"` SessionStart benchmark probe when Claw-Compactor is available, then uses Presidio redaction and Smart Context Autopilot through a dedicated runtime proxy for lower-token request shaping.
458
+ 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 `prodex-claw-compactor-auto "$(pwd)"` SessionStart benchmark probe when Claw-Compactor is available, then uses Smart Context Autopilot through a dedicated runtime proxy for lower-token request shaping. Presidio redaction is added to that proxy only when you opt in at the prompt.
453
459
 
454
460
  RTK and SQZ split the token work across different sides of the flow:
455
461
 
@@ -603,7 +609,7 @@ prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
603
609
 
604
610
  If you use the `mem` variant, Prodex points an existing Claude-Mem Codex setup to the active Prodex session path instead of the default `~/.codex/sessions`.
605
611
 
606
- Add optimizer prefixes before Codex args when you want Prodex to inject a specific launch overlay for that session: `mem`, `rtk`, `sqz`, `tokensavior`, or `clawcompactor`. Top-level shortcuts such as `prodex rtk` and `prodex sqz` map to `prodex caveman <prefix>`.
612
+ Add optimizer prefixes before Codex args when you want Prodex to inject a specific launch overlay for that session: `mem`, `rtk`, `sqz`, `tokensavior`, `clawcompactor`, or `presidio`. Top-level shortcuts such as `prodex rtk` and `prodex sqz` map to `prodex caveman <prefix>`.
607
613
 
608
614
  RTK is still an external binary. Install it separately if `rtk gain` is unavailable.
609
615
 
@@ -641,6 +647,8 @@ prodex super --mem-full
641
647
 
642
648
  Super also enables Smart Context Autopilot in the runtime proxy.
643
649
 
650
+ Before launch, Super asks whether to add Presidio redaction. Empty input or `n` keeps Presidio disabled; answer `y` or pass `--presidio` to add the `presidio` prefix. Use `--no-presidio` to make the disabled choice explicit for non-interactive use.
651
+
644
652
  It keeps exact pass-through for continuation-sensitive requests. When safe, it uses adaptive token budgeting, artifact-backed large tool outputs, duplicate suppression, blob/noise detection, stable cache-friendly context framing, and critical-signal self-checks to reduce token load without dropping failure details.
645
653
 
646
654
  The Super optimization stack is meant to stay deterministic and local by default. It 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 discoverable, and uses a dedicated runtime proxy for local compaction, stable references, and lower-token context shaping rather than hidden remote summarization.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.111.0",
3
+ "version": "0.113.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.111.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.111.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.111.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.111.0",
23
- "@christiandoxa/prodex-win32-x64": "0.111.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.111.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.113.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.113.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.113.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.113.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.113.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.113.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"