@christiandoxa/prodex 0.29.0 → 0.31.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 +19 -5
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -8,6 +8,18 @@ Main use case: one account per profile, quota checked before launch, and new ses
|
|
|
8
8
|
|
|
9
9
|
It can also launch Caveman mode, and optionally wire Claude-Mem into the selected session path.
|
|
10
10
|
|
|
11
|
+
## Repository layout
|
|
12
|
+
|
|
13
|
+
The Rust crate is modular now rather than centered on one large source file.
|
|
14
|
+
|
|
15
|
+
- `src/main.rs`: binary entrypoint
|
|
16
|
+
- `src/lib.rs`: shared crate wiring and test support
|
|
17
|
+
- `src/app_commands/`, `src/command_dispatch.rs`, `src/cli_args.rs`: CLI parsing and top-level command flow
|
|
18
|
+
- `src/profile_commands/`, `src/quota_support/`, `src/secret_store/`, `src/profile_identity.rs`: profile, quota, secret storage, and credential identity management
|
|
19
|
+
- `src/runtime_proxy/`, `src/runtime_launch/`, `src/runtime_persistence/`, `src/runtime_store/`, `src/runtime_broker/`: runtime proxy, launch, persistence, and broker internals
|
|
20
|
+
- `src/runtime_claude/`, `src/runtime_anthropic/`, `src/runtime_caveman.rs`, `src/runtime_mem.rs`: Claude/Caveman integration layers
|
|
21
|
+
- `scripts/npm/` and `npm/`: npm packaging, version sync, and publish helpers
|
|
22
|
+
|
|
11
23
|
## Features
|
|
12
24
|
|
|
13
25
|
- one account = one profile
|
|
@@ -31,13 +43,13 @@ Depending on what you want to run:
|
|
|
31
43
|
- Claude Code (`claude`) for `prodex claude` and `prodex claude caveman`
|
|
32
44
|
- optionally `claude-mem` for `mem` variants
|
|
33
45
|
|
|
34
|
-
Installing `@christiandoxa/prodex` from npm also installs the
|
|
46
|
+
Installing `@christiandoxa/prodex` from npm also installs the current Codex runtime dependency:
|
|
35
47
|
|
|
36
48
|
```bash
|
|
37
49
|
npm install -g @christiandoxa/prodex
|
|
38
|
-
|
|
50
|
+
```
|
|
39
51
|
|
|
40
|
-
That pulls in `@openai/codex@
|
|
52
|
+
That pulls in `@openai/codex@latest` at install or update time. Claude Code is still separate.
|
|
41
53
|
|
|
42
54
|
If you want Claude-Mem support, install it with the upstream installer:
|
|
43
55
|
|
|
@@ -61,11 +73,13 @@ npm install -g @christiandoxa/prodex
|
|
|
61
73
|
cargo install prodex
|
|
62
74
|
```
|
|
63
75
|
|
|
76
|
+
Cargo installs still use the `codex` binary from your `PATH`. Keep that binary updated separately if you want the newest Codex there too.
|
|
77
|
+
|
|
64
78
|
If you want a pinned version:
|
|
65
79
|
|
|
66
80
|
```bash
|
|
67
|
-
npm install -g @christiandoxa/prodex@0.
|
|
68
|
-
cargo install prodex --force --version 0.
|
|
81
|
+
npm install -g @christiandoxa/prodex@0.31.0
|
|
82
|
+
cargo install prodex --force --version 0.31.0
|
|
69
83
|
```
|
|
70
84
|
|
|
71
85
|
## Quick start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"description": "Safe multi-account auto-rotate for Codex CLI with isolated CODEX_HOME profiles",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -13,15 +13,15 @@
|
|
|
13
13
|
"LICENSE"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@openai/codex": "
|
|
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.31.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.31.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.31.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.31.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.31.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.31.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|