@christiandoxa/prodex 0.103.0 → 0.104.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 +20 -7
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -62,13 +62,18 @@ If you install from source, make sure the `codex` binary in your `PATH` is alrea
|
|
|
62
62
|
|
|
63
63
|
## Optional tools
|
|
64
64
|
|
|
65
|
-
`prodex` can run without Claude-Mem or
|
|
65
|
+
`prodex` can run without Claude-Mem, RTK, SQZ, token-savior, claw-compactor, or llm-min docs.
|
|
66
66
|
|
|
67
67
|
Install them only if you want to use commands such as:
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
70
|
prodex caveman mem
|
|
71
71
|
prodex caveman mem rtk
|
|
72
|
+
prodex rtk
|
|
73
|
+
prodex sqz
|
|
74
|
+
prodex tokensavior
|
|
75
|
+
prodex clawcompactor
|
|
76
|
+
prodex llmmin
|
|
72
77
|
prodex s
|
|
73
78
|
prodex super
|
|
74
79
|
prodex claude mem
|
|
@@ -253,16 +258,19 @@ prodex s exec "review this repo"
|
|
|
253
258
|
`prodex super` expands to:
|
|
254
259
|
|
|
255
260
|
```bash
|
|
256
|
-
prodex caveman mem rtk --full-access
|
|
261
|
+
prodex caveman mem rtk sqz tokensavior clawcompactor llmmin --full-access
|
|
257
262
|
```
|
|
258
263
|
|
|
259
264
|
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.
|
|
260
265
|
|
|
261
266
|
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` or in a managed `prodex-optimizers` checkout, then uses Smart Context Autopilot plus low-token workflow accommodations for targets such as `claw-compactor` and `llm-min.txt`.
|
|
262
267
|
|
|
263
|
-
|
|
268
|
+
RTK and SQZ split the token work across different sides of the flow:
|
|
269
|
+
|
|
270
|
+
- RTK works upstream/input-side. Use `rtk <cmd>` for noisy terminal commands before their output enters the model context, such as `git diff`, `cargo test`, `npm test`, build logs, and package-manager output.
|
|
271
|
+
- SQZ works downstream/context-side through the auto-registered `prodex-sqz` MCP server. Use it for repeated workspace reads, large text blobs, and long-session context reuse instead of emitting the same full content again.
|
|
264
272
|
|
|
265
|
-
|
|
273
|
+
Managed optimizer checkouts are discovered from `PRODEX_OPTIMIZERS_HOME`, `$XDG_DATA_HOME/prodex-optimizers`, then `~/.local/share/prodex-optimizers`.
|
|
266
274
|
|
|
267
275
|
## Commands
|
|
268
276
|
|
|
@@ -393,6 +401,11 @@ prodex exec "review this repo"
|
|
|
393
401
|
prodex caveman
|
|
394
402
|
prodex caveman mem
|
|
395
403
|
prodex caveman mem rtk
|
|
404
|
+
prodex rtk
|
|
405
|
+
prodex sqz
|
|
406
|
+
prodex tokensavior
|
|
407
|
+
prodex clawcompactor
|
|
408
|
+
prodex llmmin
|
|
396
409
|
prodex caveman --dry-run
|
|
397
410
|
prodex caveman --profile main
|
|
398
411
|
prodex caveman exec "review this repo in caveman mode"
|
|
@@ -403,7 +416,7 @@ prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
403
416
|
|
|
404
417
|
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`.
|
|
405
418
|
|
|
406
|
-
Add
|
|
419
|
+
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 `llmmin`. Top-level shortcuts such as `prodex rtk` and `prodex sqz` map to `prodex caveman <prefix>`.
|
|
407
420
|
|
|
408
421
|
RTK is still an external binary. Install it separately if `rtk gain` is unavailable.
|
|
409
422
|
|
|
@@ -445,9 +458,9 @@ It keeps exact pass-through for continuation-sensitive requests. When safe, it u
|
|
|
445
458
|
|
|
446
459
|
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, 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.
|
|
447
460
|
|
|
448
|
-
|
|
461
|
+
RTK handles upstream/input command output before it enters the context window. SQZ handles downstream/context reuse after content is already in the session, using `prodex-sqz` when the MCP server is available.
|
|
449
462
|
|
|
450
|
-
|
|
463
|
+
Managed optimizer checkouts are discovered from `PRODEX_OPTIMIZERS_HOME`, `$XDG_DATA_HOME/prodex-optimizers`, then `~/.local/share/prodex-optimizers`.
|
|
451
464
|
|
|
452
465
|
</details>
|
|
453
466
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.104.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.104.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.104.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.104.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.104.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.104.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.104.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|