@christiandoxa/prodex 0.100.0 → 0.102.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 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -243,6 +243,7 @@ It combines:
243
243
  - RTK shell-command guidance
244
244
  - full-access launch mode
245
245
  - Smart Context Autopilot in the runtime proxy
246
+ - deterministic/local accommodation for `sqz`, `token-savior`, `claw-compactor`, and `llm-min.txt`-style low-token workflows
246
247
 
247
248
  ```bash
248
249
  prodex s
@@ -257,6 +258,10 @@ prodex caveman mem rtk --full-access
257
258
 
258
259
  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.
259
260
 
261
+ Super's built-in optimization stack is deliberately local and deterministic. It preloads the existing Caveman, Claude-Mem, and RTK pieces, auto-registers `sqz-mcp` and `token-savior` MCP servers when those binaries are already on `PATH`, then uses Smart Context Autopilot plus low-token workflow accommodations for targets such as `claw-compactor` and `llm-min.txt`.
262
+
263
+ `memsearch` and `prompt-cache` are not auto-enabled by `prodex super`. They need embeddings, a model/API-backed index, or a semantic cache, so they remain opt-in external workflows.
264
+
260
265
  ## Commands
261
266
 
262
267
  <details open>
@@ -364,7 +369,7 @@ unless Prodex explicitly owns that command.
364
369
  |---|---|---|
365
370
  | Normal Codex | `prodex` or `prodex run` | Managed Codex launch with profile selection and quota routing. |
366
371
  | Caveman | `prodex caveman` | Runs Codex with a temporary overlay `CODEX_HOME`. |
367
- | Super | `prodex s` or `prodex super` | Daily mode with Caveman, memory, RTK guidance, and full access. |
372
+ | Super | `prodex s` or `prodex super` | Daily mode with Caveman, Claude-Mem, RTK guidance, full access, and deterministic/local token optimizations. |
368
373
  | Claude Code | `prodex claude` | Runs Claude Code through Prodex-managed state. |
369
374
 
370
375
  <details>
@@ -416,7 +421,7 @@ prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
416
421
 
417
422
  `prodex s` is the short alias for `prodex super`.
418
423
 
419
- This is my daily mode. It is the path I keep tuning for normal work: memory enabled, RTK guidance enabled, full access available, and context handling handled by the runtime proxy.
424
+ This is my daily mode. It is the path I keep tuning for normal work: Caveman enabled, Claude-Mem transcript watching enabled, RTK guidance enabled, full access available, and context handling handled by the runtime proxy.
420
425
 
421
426
  Super mode uses Prodex's slim Claude-Mem Codex schema by default to avoid storing full assistant/tool output in recall context.
422
427
 
@@ -434,7 +439,11 @@ prodex super --mem-full
434
439
 
435
440
  Super also enables Smart Context Autopilot in the runtime proxy.
436
441
 
437
- 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 cacheable context, and critical-signal self-checks to reduce token load without dropping failure details.
442
+ 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.
443
+
444
+ 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`, and accommodates `claw-compactor` and `llm-min.txt`-style workflows with local compaction, stable references, and lower-token context shaping rather than hidden remote summarization.
445
+
446
+ Super does not automatically enable `memsearch` or `prompt-cache`. Those require embeddings, model/API access, or a semantic cache, so use them only when you intentionally opt in to those external capabilities.
438
447
 
439
448
  </details>
440
449
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.100.0",
3
+ "version": "0.102.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.100.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.100.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.100.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.100.0",
23
- "@christiandoxa/prodex-win32-x64": "0.100.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.100.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.102.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.102.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.102.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.102.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.102.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.102.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"