@christiandoxa/prodex 0.67.0 → 0.69.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 +14 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
The main feature is auto rotate. If one OpenAI/Codex profile runs out of quota, `prodex` can route new work to another profile that is still available. You do not need to switch accounts manually.
|
|
6
6
|
|
|
7
|
+
For contributors, this repository is a Cargo workspace: the binary crate stays at the root, while reusable leaf crates live under `crates/` to reduce rebuild scope when those components change.
|
|
8
|
+
|
|
7
9
|
## Why use it
|
|
8
10
|
|
|
9
11
|
Use `prodex` if you want to:
|
|
@@ -33,13 +35,13 @@ Depending on your setup, you may also need:
|
|
|
33
35
|
npm install -g @christiandoxa/prodex
|
|
34
36
|
````
|
|
35
37
|
|
|
36
|
-
###
|
|
38
|
+
### Source checkout
|
|
37
39
|
|
|
38
40
|
```bash
|
|
39
|
-
cargo install
|
|
41
|
+
cargo install --path .
|
|
40
42
|
```
|
|
41
43
|
|
|
42
|
-
If you install
|
|
44
|
+
If you install from source, make sure the `codex` binary in your `PATH` is already installed and up to date.
|
|
43
45
|
|
|
44
46
|
## Quick start
|
|
45
47
|
|
|
@@ -69,6 +71,8 @@ Check your profiles and quota:
|
|
|
69
71
|
```bash
|
|
70
72
|
prodex profile list
|
|
71
73
|
prodex quota --all
|
|
74
|
+
prodex quota --all --auth no-auth --once
|
|
75
|
+
prodex session list
|
|
72
76
|
```
|
|
73
77
|
|
|
74
78
|
Run through `prodex`:
|
|
@@ -98,11 +102,14 @@ prodex
|
|
|
98
102
|
prodex run
|
|
99
103
|
prodex run --profile main
|
|
100
104
|
prodex run --dry-run
|
|
105
|
+
prodex update --help
|
|
101
106
|
prodex exec "review this repo"
|
|
102
107
|
prodex run 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
103
108
|
printf 'context from stdin' | prodex run exec "summarize this"
|
|
104
109
|
```
|
|
105
110
|
|
|
111
|
+
`prodex update` passes through to `codex update` directly and does not use Prodex profile selection, quota preflight, or the local runtime proxy.
|
|
112
|
+
|
|
106
113
|
### Run Caveman mode
|
|
107
114
|
|
|
108
115
|
```bash
|
|
@@ -191,6 +198,9 @@ When you import a Copilot profile, Prodex does not move the Copilot token into P
|
|
|
191
198
|
prodex profile export
|
|
192
199
|
prodex quota --all
|
|
193
200
|
prodex quota --all --once
|
|
201
|
+
prodex quota --all --auth no-auth --once
|
|
202
|
+
prodex session list
|
|
203
|
+
prodex session current
|
|
194
204
|
prodex info
|
|
195
205
|
prodex doctor --runtime
|
|
196
206
|
prodex context audit
|
|
@@ -198,6 +208,7 @@ prodex context compress ~/.codex/AGENTS.md --dry-run
|
|
|
198
208
|
```
|
|
199
209
|
|
|
200
210
|
`prodex info` includes the effective runtime tuning values after environment, policy, and default resolution.
|
|
211
|
+
`prodex session list` shows shared Codex session metadata, and `prodex session current` filters that list to sessions started from the current directory.
|
|
201
212
|
`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.
|
|
202
213
|
For full policy keys, env overrides, and runtime log path resolution, see [docs/runtime-policy.md](./docs/runtime-policy.md).
|
|
203
214
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.69.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.69.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.69.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.69.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.69.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.69.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.69.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|