1.0.0
1.0.0 — the advertised default model finally works end-to-end.
The review SDK ships its own bundled CLI binary at runtime and ignores anything on PATH. Pinning the SDK at 0.104.0 meant the bridge effectively ran a 0.104.0 CLI for the entire 0.3.x train — which outright rejects gpt-5.5. This release pins the SDK exactly to 0.128.0 (matching the current platform CLI), bundles two long-overdue reliability fixes, and aligns the MCP-advertised version with the package version.
What's in 1.0.0
feat: bump review SDK to bundle current CLI(306b4c1) —@openai/codex-sdk: 0.128.0exact-pin. Adds a regression test asserting the SDK + bundled CLI versions stay in lockstep.fix: mark session failed on multi-chunk partial failure (T-001)(a3b4bc1) — Multi-chunk reviews where chunk 1 succeeded but chunk 2 errored used to leave the session orphanedin_progress. The chunk-1 thread id now flows back on the error and the tool layer marks the sessionfailedatomically.fix: wrap saveReview and session completion in a single transaction (T-002)(06ca8ce) —recordSuccessis now atomic. A failed review save will no longer leave the session marked complete with no review row.fix: read MCP server version from package.json(fc47e01) — The MCP server self-advertised'0.1.4'since 0.1.x. Now followspackage.jsonautomatically.
Upgrade
claude mcp add codex-bridge -- npx -y codex-claude-bridge@latest
The @latest pin means npx re-resolves on every launch, so 1.0.0 lands automatically without re-adding the server.