@christiandoxa/prodex 0.176.0 → 0.177.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 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -68,6 +68,17 @@ Prodex supports two provider paths:
68
68
 
69
69
  The auto-rotate proxy is intentionally conservative. It rotates only before a request or stream is committed, preserves `previous_response_id`, turn-state, and session affinity, and does not rotate mid-stream. OpenAI/Codex remains the default quota-aware pool. Gemini OAuth, imported Copilot profiles, Anthropic OAuth profiles, DeepSeek API keys, local OpenAI-compatible URLs, and Bedrock/custom Codex providers now have `prodex quota` views. Anthropic, DeepSeek, API-key Gemini, API-key Copilot, local URLs, and Bedrock/custom Codex providers still skip OpenAI quota preflight.
70
70
 
71
+ Runtime proxy design contract:
72
+
73
+ - Prodex stays a scoped Codex gateway, not a general-purpose LLM SDK.
74
+ - Profile selection must be visible through policy, `prodex info`, `prodex doctor`, and runtime logs.
75
+ - Pre-commit retry and fallback paths must stay bounded per request.
76
+ - Runtime hot paths must avoid broad disk reads, quota probes, or blocking state saves.
77
+ - Quota, budget, transport, and local pressure signals must stay classified separately.
78
+ - Selection, admission, affinity, backoff, and first-chunk events must be structured in runtime logs.
79
+ - Upstream HTTP/WebSocket connection reuse should be preserved where it does not change Codex semantics.
80
+ - Secrets remain profile-isolated, redacted in diagnostics, and covered by audit events for Prodex-owned mutations.
81
+
71
82
  </details>
72
83
 
73
84
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiandoxa/prodex",
3
- "version": "0.176.0",
3
+ "version": "0.177.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.176.0",
20
- "@christiandoxa/prodex-linux-arm64": "0.176.0",
21
- "@christiandoxa/prodex-darwin-x64": "0.176.0",
22
- "@christiandoxa/prodex-darwin-arm64": "0.176.0",
23
- "@christiandoxa/prodex-win32-x64": "0.176.0",
24
- "@christiandoxa/prodex-win32-arm64": "0.176.0"
19
+ "@christiandoxa/prodex-linux-x64": "0.177.0",
20
+ "@christiandoxa/prodex-linux-arm64": "0.177.0",
21
+ "@christiandoxa/prodex-darwin-x64": "0.177.0",
22
+ "@christiandoxa/prodex-darwin-arm64": "0.177.0",
23
+ "@christiandoxa/prodex-win32-x64": "0.177.0",
24
+ "@christiandoxa/prodex-win32-arm64": "0.177.0"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18"