@christiandoxa/prodex 0.61.0 → 0.63.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 +8 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -83,6 +83,12 @@ prodex claude -- -p "summarize this repo"
|
|
|
83
83
|
prodex claude mem -- -p "recall past work on this repo"
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
+
### Shared Codex history
|
|
87
|
+
|
|
88
|
+
Managed Prodex profiles keep account credentials isolated per profile, but Codex-owned shared state uses the native Codex home by default. In practice, profile `history.jsonl`, `sessions`, `config.toml`, plugins, skills, and related shared files link to the same Codex home that direct Codex uses (`~/.codex` on Unix-like systems).
|
|
89
|
+
|
|
90
|
+
This matches direct Codex behavior: logging out or switching accounts does not hide chat history. Older Prodex state from `$PRODEX_HOME/.codex` is merged into the native Codex home on the next managed-profile launch. Set `PRODEX_SHARED_CODEX_HOME` only when you intentionally want a different shared Codex root.
|
|
91
|
+
|
|
86
92
|
## Common commands
|
|
87
93
|
|
|
88
94
|
### Run Codex
|
|
@@ -131,6 +137,8 @@ Use `prodex super --url http://127.0.0.1:8131` when you want the same Super mode
|
|
|
131
137
|
|
|
132
138
|
Add `--dry-run` to run, Caveman, or Super launches to print the resolved provider, model, `CODEX_HOME`, proxy args, and launch env with secret-looking values redacted. Dry-run output is prelaunch only and does not start Codex or the TUI.
|
|
133
139
|
|
|
140
|
+
Prodex respects system and environment proxy settings for upstream OpenAI quota/auth/runtime HTTP by default, including `HTTP_PROXY`, `HTTPS_PROXY`, and platform proxy configuration supported by reqwest. The local Codex-to-Prodex broker connection always receives `NO_PROXY` entries for `127.0.0.1`, `localhost`, and `::1` so a user proxy does not intercept the local runtime proxy. Use `--no-proxy` on `prodex run`, `prodex caveman`, `prodex super`, or `prodex claude` only when you explicitly want Prodex upstream requests to bypass proxy settings.
|
|
141
|
+
|
|
134
142
|
### Run Claude Code
|
|
135
143
|
|
|
136
144
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.63.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.63.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.63.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.63.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.63.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.63.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.63.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|