@christiandoxa/prodex 0.49.0 → 0.51.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 -1
- 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,22 @@ 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 --url http://127.0.0.1:8131
|
|
120
|
+
prodex super --profile main
|
|
121
|
+
prodex super exec "review this repo in super mode"
|
|
122
|
+
prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
`prodex super` is a shortcut for `prodex caveman mem --full-access`.
|
|
126
|
+
|
|
127
|
+
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.
|
|
128
|
+
|
|
129
|
+
Use `prodex super --url http://127.0.0.1:8131` when you want the same Super mode front end to talk directly to a local OpenAI-compatible server such as `llama-server`. Prodex injects a temporary `prodex-local` Codex provider, appends `/v1` when the URL has no path, disables non-function native tools that local servers commonly reject, and skips quota/proxy routing for that launch. The default local model id is `unsloth/qwen3.5-35b-a3b`; override it with `--model`, for example `prodex super --url http://127.0.0.1:8131 --model local/qwen`. See [LOCAL.md](./LOCAL.md) for self-hosted model setup and testing.
|
|
130
|
+
|
|
114
131
|
### Run Claude Code
|
|
115
132
|
|
|
116
133
|
```bash
|
|
@@ -169,4 +186,6 @@ prodex doctor --runtime
|
|
|
169
186
|
|
|
170
187
|
## More
|
|
171
188
|
|
|
172
|
-
See [QUICKSTART.md](./QUICKSTART.md) for a longer walkthrough.
|
|
189
|
+
See [QUICKSTART.md](./QUICKSTART.md) for a longer walkthrough, and [LOCAL.md](./LOCAL.md) for self-hosted local model setup.
|
|
190
|
+
|
|
191
|
+
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.51.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.51.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.51.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.51.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.51.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.51.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.51.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|