@christiandoxa/prodex 0.50.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 +4 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -116,6 +116,7 @@ If you use the `mem` variant, Prodex points an existing Claude-Mem Codex setup t
|
|
|
116
116
|
|
|
117
117
|
```bash
|
|
118
118
|
prodex super
|
|
119
|
+
prodex super --url http://127.0.0.1:8131
|
|
119
120
|
prodex super --profile main
|
|
120
121
|
prodex super exec "review this repo in super mode"
|
|
121
122
|
prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
@@ -125,6 +126,8 @@ prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
125
126
|
|
|
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.
|
|
127
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
|
+
|
|
128
131
|
### Run Claude Code
|
|
129
132
|
|
|
130
133
|
```bash
|
|
@@ -183,6 +186,6 @@ prodex doctor --runtime
|
|
|
183
186
|
|
|
184
187
|
## More
|
|
185
188
|
|
|
186
|
-
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.
|
|
187
190
|
|
|
188
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"
|