@christiandoxa/prodex 0.49.0 → 0.50.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 +16 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -79,6 +79,7 @@ Run through `prodex`:
|
|
|
79
79
|
prodex
|
|
80
80
|
prodex caveman
|
|
81
81
|
prodex caveman mem
|
|
82
|
+
prodex super
|
|
82
83
|
prodex exec "review this repo"
|
|
83
84
|
prodex claude -- -p "summarize this repo"
|
|
84
85
|
prodex claude mem -- -p "recall past work on this repo"
|
|
@@ -111,6 +112,19 @@ prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
111
112
|
|
|
112
113
|
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`.
|
|
113
114
|
|
|
115
|
+
### Run Super mode
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
prodex super
|
|
119
|
+
prodex super --profile main
|
|
120
|
+
prodex super exec "review this repo in super mode"
|
|
121
|
+
prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
`prodex super` is a shortcut for `prodex caveman mem --full-access`.
|
|
125
|
+
|
|
126
|
+
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.
|
|
127
|
+
|
|
114
128
|
### Run Claude Code
|
|
115
129
|
|
|
116
130
|
```bash
|
|
@@ -170,3 +184,5 @@ prodex doctor --runtime
|
|
|
170
184
|
## More
|
|
171
185
|
|
|
172
186
|
See [QUICKSTART.md](./QUICKSTART.md) for a longer walkthrough.
|
|
187
|
+
|
|
188
|
+
Contributor testing guidance lives in [docs/testing.md](./docs/testing.md), including the fast/serial split and runtime parallel-safety assumptions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"description": "Safe multi-account auto-rotate for Codex CLI with isolated CODEX_HOME profiles",
|
|
5
5
|
"license": "MIT",
|
|
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.50.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.50.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.50.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.50.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.50.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.50.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|