@christiandoxa/prodex 0.229.0 → 0.231.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 +3 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -230,7 +230,7 @@ The local `mem` prefix stores memories in a SQLite database under `PRODEX_HOME`:
230
230
  $PRODEX_HOME/memory/prodex-memory.sqlite
231
231
  ```
232
232
 
233
- `prodex s` asks the Presidio prompt first, then asks whether to enable prodex-memory through managed Mem0 Docker. Empty input or `n` leaves the memory MCP disabled. Answer `y` or pass `--mem0` to start the managed Mem0 OSS Docker server. Use `--no-mem0` to skip that prompt non-interactively, or `prodex caveman mem` / `prodex mem` for the lightweight SQLite backend.
233
+ `prodex s` asks the Presidio prompt first, then asks whether to enable prodex-memory through managed Mem0 Docker. Empty input or `n` leaves the memory MCP disabled. Answer `y` or pass `--mem0` to start the managed Mem0 OSS Docker server. Use `--no-mem0` to skip that prompt non-interactively, or `prodex s mem` / `prodex caveman mem` / `prodex mem` for the lightweight SQLite backend.
234
234
 
235
235
  The SQLite path remains the fastest OOTB memory path when you request memory:
236
236
 
@@ -469,7 +469,7 @@ CBM_CACHE_DIR="${PRODEX_HOME:-$HOME/.prodex}/optimizer-state/codebase-memory/cac
469
469
  <details>
470
470
  <summary>Install claw-compactor</summary>
471
471
 
472
- claw-compactor is used by `prodex clawcompactor` and by Super mode as a deterministic/local context compaction aid. When discoverable, Super installs a trusted one-shot startup probe that runs `claw-compactor benchmark <workspace> --json` through Prodex's compatibility wrapper and uses a marker under `CODEX_HOME` to avoid replay after Codex conversation restarts. If the workspace has no Markdown memory files, Prodex benchmarks a temporary shadow workspace with a synthetic `MEMORY.md` summary instead of writing into the original directory.
472
+ claw-compactor is used by `prodex clawcompactor` and by Super mode as a deterministic/local context compaction aid. When discoverable, Super installs `prodex-claw-compactor` and `prodex-claw-compactor-auto` wrappers plus a trusted one-shot SessionStart probe wrapper. The startup probe is disabled by default so Codex launch is not delayed; opt in with `PRODEX_CLAW_SESSIONSTART_TIMEOUT_SECONDS=<seconds>` when you want it to run `claw-compactor benchmark <workspace> --json` through Prodex's compatibility wrapper. It uses a marker under `CODEX_HOME` to avoid replay after Codex conversation restarts. If the workspace has no Markdown memory files, Prodex benchmarks a temporary shadow workspace with a synthetic `MEMORY.md` summary instead of writing into the original directory.
473
473
 
474
474
  Recommended source install:
475
475
 
@@ -796,7 +796,7 @@ Use `prodex s expose` when you need to reach the live Super terminal from a brow
796
796
  <details>
797
797
  <summary>Super optimizer internals (advanced)</summary>
798
798
 
799
- Super's built-in optimization stack is deliberately local and deterministic. It preloads Caveman, exposes a Prodex overlay `rtk` PATH wrapper plus RTK auto-wrappers for common noisy commands when RTK is installed, auto-registers built-in `prodex-inspect` plus discovered `sqz-mcp`, `token-savior`, and `codebase-memory-mcp` MCP servers, exposes `sqz` and `claw-compactor` wrapper commands 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 and prodex-memory are added only when you opt in. Prodex routes optional-tool state under `PRODEX_HOME` (default `~/.prodex`), including SQZ XDG state, token-savior cache/stats, Codebase Memory cache/config, claw-compactor HOME/XDG state, RTK analytics paths, and local memory, so compatible optimizer metadata stays out of worktrees.
799
+ Super's built-in optimization stack is deliberately local and deterministic. It preloads Caveman, exposes a Prodex overlay `rtk` PATH wrapper plus RTK auto-wrappers for common noisy commands when RTK is installed, auto-registers built-in `prodex-inspect` plus discovered `sqz-mcp`, `token-savior`, and `codebase-memory-mcp` MCP servers, exposes `sqz` and `claw-compactor` wrapper commands when those commands/checkouts are discoverable, installs a trusted one-shot `prodex-claw-compactor-sessionstart` SessionStart benchmark probe wrapper when Claw-Compactor is available, then uses Smart Context Autopilot through a dedicated runtime proxy for lower-token request shaping. The claw startup probe is disabled by default so Codex launch is not delayed; opt in with `PRODEX_CLAW_SESSIONSTART_TIMEOUT_SECONDS=<seconds>`. When enabled, it delegates to `prodex-claw-compactor-auto "$(pwd)"`, uses a marker under `CODEX_HOME` so Codex conversation restarts do not replay it, and falls back to a temporary shadow `MEMORY.md` when the workspace has no Markdown memory files. Presidio redaction and prodex-memory are added only when you opt in. Prodex routes optional-tool state under `PRODEX_HOME` (default `~/.prodex`), including SQZ XDG state, token-savior cache/stats, Codebase Memory cache/config, claw-compactor HOME/XDG state, RTK analytics paths, and local memory, so compatible optimizer metadata stays out of worktrees.
800
800
 
801
801
  Smart Context treats protocol and continuation metadata as exact control-plane data while allowing independent context payload segments to remain eligible for deterministic lossless or artifact-backed rewriting. Explicit exact mode still makes the complete request pass through. Missing artifact references are handled as segment-local rehydration failures: the dependent reference is preserved and recorded, budgets tighten, and unrelated payload segments may still be optimized when validation proves continuation identifiers, tool-call structure, critical signals, and JSON integrity are intact.
802
802
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.229.0",
3
+ "version": "0.231.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.229.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.229.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.229.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.229.0",
23
- "@christiandoxa/prodex-win32-x64": "0.229.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.229.0",
19
+ "@christiandoxa/prodex-linux-x64": "0.231.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.231.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.231.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.231.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.231.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.231.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",