@christiandoxa/prodex 0.67.0 → 0.68.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.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. 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
- ### Cargo
38
+ ### Source checkout
37
39
 
38
40
  ```bash
39
- cargo install prodex
41
+ cargo install --path .
40
42
  ```
41
43
 
42
- If you install with Cargo, make sure the `codex` binary in your `PATH` is already installed and up to date.
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`:
@@ -191,6 +195,9 @@ When you import a Copilot profile, Prodex does not move the Copilot token into P
191
195
  prodex profile export
192
196
  prodex quota --all
193
197
  prodex quota --all --once
198
+ prodex quota --all --auth no-auth --once
199
+ prodex session list
200
+ prodex session current
194
201
  prodex info
195
202
  prodex doctor --runtime
196
203
  prodex context audit
@@ -198,6 +205,7 @@ prodex context compress ~/.codex/AGENTS.md --dry-run
198
205
  ```
199
206
 
200
207
  `prodex info` includes the effective runtime tuning values after environment, policy, and default resolution.
208
+ `prodex session list` shows shared Codex session metadata, and `prodex session current` filters that list to sessions started from the current directory.
201
209
  `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
210
  For full policy keys, env overrides, and runtime log path resolution, see [docs/runtime-policy.md](./docs/runtime-policy.md).
203
211
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.67.0",
3
+ "version": "0.68.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.67.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.67.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.67.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.67.0",
23
- "@christiandoxa/prodex-win32-x64": "0.67.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.67.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.68.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.68.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.68.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.68.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.68.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.68.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"