@yansigit/opencodex 2.31.0 → 2.31.2
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 +7 -0
- package/gui/dist/assets/{index-BNJ7r4Gd.js → index-BAMgarF9.js} +14 -14
- package/gui/dist/index.html +1 -1
- package/package.json +1 -1
- package/src/adapters/base.ts +6 -0
- package/src/adapters/cursor/cursor-errors.ts +12 -0
- package/src/adapters/cursor/thread-continuity.ts +71 -0
- package/src/adapters/cursor.ts +90 -28
- package/src/adapters/google-wire-compiler.ts +8 -0
- package/src/adapters/google.ts +26 -0
- package/src/generated/compatibility-version.json +41 -17
- package/src/oauth/anthropic-routing.ts +129 -219
- package/src/oauth/antigravity-routing.ts +165 -0
- package/src/oauth/cursor-routing.ts +252 -0
- package/src/providers/cursor-pool.ts +3 -3
- package/src/routing/account-pool/affinity.ts +125 -0
- package/src/routing/account-pool/cooldown.ts +145 -0
- package/src/routing/account-pool/index.ts +45 -0
- package/src/routing/account-pool/resolve.ts +356 -0
- package/src/routing/account-pool/types.ts +32 -0
- package/src/server/local-provider-reload-client.ts +1 -1
- package/src/server/management/oauth-account-routes.ts +47 -12
- package/src/server/responses/core.ts +383 -65
- package/src/types/config.ts +8 -0
- package/src/types/request.ts +7 -3
- package/src/usage/log.ts +4 -0
package/README.md
CHANGED
|
@@ -108,6 +108,13 @@ ocx init # interactive setup: writes ~/.opencodex/config.json and wires Cod
|
|
|
108
108
|
commands like `ocx provider add` and `ocx combo set` talk to the **live** proxy and exit nonzero
|
|
109
109
|
when it is unreachable). `ocx status` / `ocx doctor` / `ocx health` report the running state.
|
|
110
110
|
|
|
111
|
+
### Fork release automation
|
|
112
|
+
|
|
113
|
+
The fork publishes from `main` after a human merge and green Cross-platform CI. npm Trusted
|
|
114
|
+
Publishing must be bound to GitHub Actions repository `yansigit/opencodex`, workflow `release.yml`,
|
|
115
|
+
for tokenless OIDC publishing. The automation never bumps `package.json`; a merged tree must
|
|
116
|
+
already contain an unused version.
|
|
117
|
+
|
|
111
118
|
> **Agents installing or running opencodex:** read
|
|
112
119
|
> [`AGENTS_INSTALL.md`](./AGENTS_INSTALL.md). An interactive `ocx start` may ask once whether to
|
|
113
120
|
> star this repository — that is the user's decision, never an agent's. The CLI suppresses the
|