@bitkyc08/opencodex 2.7.9-preview.20260712.1 → 2.7.9
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 +3 -1
- package/gui/dist/assets/index-BAAFKwsh.js +40 -0
- package/gui/dist/index.html +1 -1
- package/package.json +2 -2
- package/src/adapters/cursor/transport-retry.ts +5 -3
- package/src/adapters/google-errors.ts +9 -19
- package/src/adapters/google-http.ts +29 -66
- package/src/adapters/kiro-errors.ts +10 -23
- package/src/adapters/kiro-retry.ts +26 -58
- package/src/adapters/upstream-http-error.ts +48 -0
- package/src/bridge.ts +6 -2
- package/src/claude/gateway-cache.ts +3 -3
- package/src/claude/outbound.ts +117 -40
- package/src/cli/claude.ts +36 -4
- package/src/config.ts +54 -3
- package/src/lib/destination-policy.ts +167 -0
- package/src/lib/injection-debug-log.ts +34 -0
- package/src/lib/upstream-retry.ts +53 -3
- package/src/lib/windows-secret-acl.ts +173 -0
- package/src/oauth/index.ts +9 -7
- package/src/oauth/store.ts +1 -0
- package/src/providers/registry.ts +10 -3
- package/src/providers/xai-transport.ts +89 -0
- package/src/router.ts +6 -1
- package/src/server/auth-cors.ts +4 -0
- package/src/server/claude-messages.ts +32 -2
- package/src/server/management-api.ts +159 -33
- package/src/server/request-decompress.ts +45 -12
- package/src/server/responses.ts +21 -12
- package/src/server/system-env.ts +110 -68
- package/src/service.ts +4 -0
- package/src/types.ts +25 -5
- package/src/vision/anthropic-describe.ts +185 -0
- package/src/vision/index.ts +219 -10
- package/src/web-search/anthropic-executor.ts +187 -0
- package/src/web-search/executor.ts +4 -2
- package/src/web-search/index.ts +80 -18
- package/src/web-search/loop.ts +14 -2
- package/gui/dist/assets/index-Csp2AZYr.js +0 -40
package/README.md
CHANGED
|
@@ -383,6 +383,8 @@ See the **[Configuration reference](https://lidge-jun.github.io/opencodex/refere
|
|
|
383
383
|
The public docs — install, providers, routing, sidecars, Codex integration, Codex App model picker, and CLI/config reference — are built from [`docs-site/`](./docs-site) and published to **[lidge-jun.github.io/opencodex](https://lidge-jun.github.io/opencodex/)**.
|
|
384
384
|
|
|
385
385
|
Maintainer source-of-truth notes live under [`structure/`](./structure). Historical investigations remain under [`docs/`](./docs).
|
|
386
|
+
Contributor setup lives in [`CONTRIBUTING.md`](./CONTRIBUTING.md), and security reporting guidance
|
|
387
|
+
lives in [`SECURITY.md`](./SECURITY.md).
|
|
386
388
|
|
|
387
389
|
## Development
|
|
388
390
|
|
|
@@ -404,7 +406,7 @@ the proxy API exposes `/healthz`, `/v1/responses`, `POST /v1/images/generations`
|
|
|
404
406
|
bun run dev:gui
|
|
405
407
|
```
|
|
406
408
|
|
|
407
|
-
See **[Contributing](
|
|
409
|
+
See **[Contributing](./CONTRIBUTING.md)**.
|
|
408
410
|
|
|
409
411
|
## Disclaimer
|
|
410
412
|
|