@christiandoxa/prodex 0.121.0 → 0.122.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 +9 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -627,6 +627,7 @@ RTK is still an external binary. Install it separately if `rtk gain` is unavaila
|
|
|
627
627
|
```bash
|
|
628
628
|
prodex s
|
|
629
629
|
prodex s exec "review this repo"
|
|
630
|
+
DEEPSEEK_API_KEY=... prodex s --provider deepseek --model deepseek-v4-pro
|
|
630
631
|
prodex super
|
|
631
632
|
prodex super --profile main
|
|
632
633
|
prodex super --dry-run
|
|
@@ -653,6 +654,14 @@ prodex super --mem-full
|
|
|
653
654
|
|
|
654
655
|
Super also enables Smart Context Autopilot in the runtime proxy.
|
|
655
656
|
|
|
657
|
+
Use `--provider deepseek` when you want the Codex/Super front end with DeepSeek as the upstream model:
|
|
658
|
+
|
|
659
|
+
```bash
|
|
660
|
+
prodex s --provider deepseek --model deepseek-v4-pro --api-key "$DEEPSEEK_API_KEY"
|
|
661
|
+
```
|
|
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.
|
|
664
|
+
|
|
656
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.
|
|
657
666
|
|
|
658
667
|
It keeps exact pass-through for continuation-sensitive requests. When safe, it uses adaptive token budgeting, artifact-backed large tool outputs, duplicate suppression, blob/noise detection, stable cache-friendly context framing, and critical-signal self-checks to reduce token load without dropping failure details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.122.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.
|
|
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.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"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|