@christiandoxa/prodex 0.29.0 → 0.30.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 +15 -3
- package/package.json +7 -7
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
|
|
@@ -35,7 +47,7 @@ Installing `@christiandoxa/prodex` from npm also installs the pinned Codex runti
|
|
|
35
47
|
|
|
36
48
|
```bash
|
|
37
49
|
npm install -g @christiandoxa/prodex
|
|
38
|
-
|
|
50
|
+
```
|
|
39
51
|
|
|
40
52
|
That pulls in `@openai/codex@0.121.0` as well. Claude Code is still separate.
|
|
41
53
|
|
|
@@ -64,8 +76,8 @@ cargo install prodex
|
|
|
64
76
|
If you want a pinned version:
|
|
65
77
|
|
|
66
78
|
```bash
|
|
67
|
-
npm install -g @christiandoxa/prodex@0.
|
|
68
|
-
cargo install prodex --force --version 0.
|
|
79
|
+
npm install -g @christiandoxa/prodex@0.30.0
|
|
80
|
+
cargo install prodex --force --version 0.30.0
|
|
69
81
|
```
|
|
70
82
|
|
|
71
83
|
## Quick start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.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": "0.121.0"
|
|
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.30.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.30.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.30.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.30.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.30.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.30.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|