@christiandoxa/prodex 0.122.0 → 0.124.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 +1 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -660,7 +660,7 @@ Use `--provider deepseek` when you want the Codex/Super front end with DeepSeek
660
660
  prodex s --provider deepseek --model deepseek-v4-pro --api-key "$DEEPSEEK_API_KEY"
661
661
  ```
662
662
 
663
- If `--api-key` is omitted, Prodex reads `DEEPSEEK_API_KEY`. This path injects a temporary `prodex-deepseek` Codex provider, exposes a local `/v1/responses` adapter to Codex, forwards to DeepSeek's OpenAI-format chat API, and keeps quota preflight/account rotation disabled. The Super optional tools still run normally because they are local launch overlays around Codex. Remote compact is not implemented for this adapter yet, so the default DeepSeek context window is large and `--auto-compact-token-limit` defaults high.
663
+ If `--api-key` is omitted, Prodex reads `DEEPSEEK_API_KEY`. This path injects a temporary `prodex-deepseek` Codex provider, exposes a local `/v1/responses` adapter to Codex, forwards to DeepSeek's OpenAI-format chat API, and keeps quota preflight/account rotation disabled. Prodex also injects a one-model Codex catalog for the selected DeepSeek model, so `/model` stays on that model and offers the DeepSeek-compatible `high`/`xhigh` effort choices. The Super optional tools still run normally because they are local launch overlays around Codex. Remote compact is not implemented for this adapter yet, so the default DeepSeek context window is large and `--auto-compact-token-limit` defaults high.
664
664
 
665
665
  Before launch, Super asks whether to add Presidio redaction. Empty input or `n` keeps Presidio disabled; answer `y` or pass `--presidio` to add the `presidio` prefix. Use `--no-presidio` to make the disabled choice explicit for non-interactive use.
666
666
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.122.0",
3
+ "version": "0.124.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.122.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.122.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.122.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.122.0",
23
- "@christiandoxa/prodex-win32-x64": "0.122.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.122.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.124.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.124.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.124.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.124.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.124.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.124.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"