@christiandoxa/prodex 0.89.0 → 0.91.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 +7 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -81,6 +81,7 @@ Run through `prodex`:
81
81
  prodex
82
82
  prodex caveman
83
83
  prodex caveman mem
84
+ prodex caveman mem rtk
84
85
  prodex super
85
86
  prodex exec "review this repo"
86
87
  prodex claude -- -p "summarize this repo"
@@ -115,6 +116,7 @@ printf 'context from stdin' | prodex run exec "summarize this"
115
116
  ```bash
116
117
  prodex caveman
117
118
  prodex caveman mem
119
+ prodex caveman mem rtk
118
120
  prodex caveman --dry-run
119
121
  prodex caveman --profile main
120
122
  prodex caveman exec "review this repo in caveman mode"
@@ -125,6 +127,8 @@ prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
125
127
 
126
128
  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`.
127
129
 
130
+ Add the `rtk` prefix after `mem` when you want Prodex to inject RTK shell-command guidance into the temporary Codex overlay for that launch. RTK is still an external binary; install it separately from `rtk-ai/rtk` if `rtk gain` is unavailable.
131
+
128
132
  ### Run Super mode
129
133
 
130
134
  ```bash
@@ -136,9 +140,9 @@ prodex super exec "review this repo in super mode"
136
140
  prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
137
141
  ```
138
142
 
139
- `prodex super` is a shortcut for `prodex caveman mem --full-access`.
143
+ `prodex super` is a shortcut for `prodex caveman mem rtk --full-access`.
140
144
 
141
- Use this when you want Caveman mode, Claude-Mem transcript watching, and launch-time full access together. Full access maps to Codex's sandbox-bypass launch flag, so use it only when you intentionally want Codex to run without the normal approval and sandbox protections.
145
+ Use this when you want Caveman mode, Claude-Mem transcript watching, RTK shell-command guidance, and launch-time full access together. Full access maps to Codex's sandbox-bypass launch flag, so use it only when you intentionally want Codex to run without the normal approval and sandbox protections.
142
146
  Super uses Prodex's slim Claude-Mem Codex schema by default to avoid storing full assistant/tool output in recall context. Add `--mem-super-slim` to store prompt summaries/references instead of full prompt bodies for leaner recall, or add `--mem-full` when you need the full transcript schema.
143
147
  Super also enables Smart Context Autopilot in the runtime proxy. It keeps exact pass-through for continuation-sensitive requests, but 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.
144
148
 
@@ -210,7 +214,7 @@ git diff | prodex context compact-output --kind git-diff
210
214
  ```
211
215
 
212
216
  `prodex info` includes the effective runtime tuning values after environment, policy, and default resolution.
213
- `prodex session list` shows shared Codex session metadata, and `prodex session current` filters that list to sessions started from the current directory.
217
+ `prodex session list` shows shared Codex parent session metadata, and `prodex session current` filters that list to sessions started from the current directory. Add `--include-subagents` only when you explicitly need spawned agent sessions for diagnostics.
214
218
  `prodex context audit` reports approximate token weight for shared instruction and memory files. `prodex context compress` is deterministic, only touches Markdown/text files, skips `.original.md` backups, and writes an `.original.md` backup before replacing a file.
215
219
  `prodex context compact-output` is an explicit stdin/file helper for compacting copied command output such as `git status`, `git diff`, `rg`/`grep`, `find`/`tree`, or generic long logs. The same logic is exposed by the `prodex-context` crate and does not rewrite Codex runtime payloads.
216
220
  For full policy keys, env overrides, and runtime log path resolution, see [docs/runtime-policy.md](./docs/runtime-policy.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.89.0",
3
+ "version": "0.91.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.89.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.89.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.89.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.89.0",
23
- "@christiandoxa/prodex-win32-x64": "0.89.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.89.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.91.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.91.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.91.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.91.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.91.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.91.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"