@christiandoxa/prodex 0.107.0 → 0.108.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 +7 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -759,8 +759,11 @@ See [LOCAL.md](./LOCAL.md) for self-hosted model setup and testing.
759
759
 
760
760
  ```bash
761
761
  prodex info
762
+ prodex doctor --install
762
763
  prodex doctor --runtime
763
764
  prodex doctor --bundle ./prodex-doctor.json --redacted
765
+ prodex setup --dry-run
766
+ prodex capability list
764
767
  prodex context audit
765
768
  prodex context compress ~/.codex/AGENTS.md --dry-run
766
769
  git diff | prodex context compact-output --kind git-diff
@@ -769,8 +772,11 @@ git diff | prodex context compact-output --kind git-diff
769
772
  | Command | Description |
770
773
  |---|---|
771
774
  | `prodex info` | Shows effective runtime tuning values after environment, policy, and default resolution. |
775
+ | `prodex doctor --install` | Adds install and embedded asset checks to doctor output. |
772
776
  | `prodex doctor --runtime` | Runs runtime diagnostics. |
773
777
  | `prodex doctor --bundle PATH --redacted` | Writes a shareable JSON diagnostic bundle without stored auth tokens or headers. |
778
+ | `prodex setup --dry-run` | Shows setup reconciliation actions without changing files. |
779
+ | `prodex capability list` | Lists built-in and optional Prodex capabilities with availability status. |
774
780
  | `prodex context audit` | Reports approximate token weight for shared instruction and memory files. |
775
781
  | `prodex context compress` | Compresses Markdown/text context files and writes an `.original.md` backup. |
776
782
  | `prodex context compact-output` | Compacts copied command output such as `git status`, `git diff`, `rg`, `grep`, `find`, `tree`, or long logs. |
@@ -857,6 +863,7 @@ Contributor testing guidance lives in [docs/testing.md](./docs/testing.md), incl
857
863
 
858
864
  - [QUICKSTART.md](./QUICKSTART.md) — longer walkthrough
859
865
  - [LOCAL.md](./LOCAL.md) — self-hosted local model setup and testing
866
+ - [docs/state-model.md](./docs/state-model.md) — state ownership and persistence model
860
867
  - [docs/runtime-policy.md](./docs/runtime-policy.md) — runtime policy keys, environment overrides, and runtime log path resolution
861
868
  - [docs/testing.md](./docs/testing.md) — contributor testing guidance
862
869
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.107.0",
3
+ "version": "0.108.0",
4
4
  "description": "Safe multi-account auto-rotate for Codex CLI with isolated CODEX_HOME profiles",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
@@ -16,12 +16,12 @@
16
16
  "@openai/codex": "latest"
17
17
  },
18
18
  "optionalDependencies": {
19
- "@christiandoxa/prodex-linux-x64": "0.107.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.107.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.107.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.107.0",
23
- "@christiandoxa/prodex-win32-x64": "0.107.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.107.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.108.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.108.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.108.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.108.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.108.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.108.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"