feat: bump Opus experiments to Claude Opus 5 - #136
Merged
Rodriguespn merged 1 commit intoJul 29, 2026
Conversation
Swaps the two Opus 4.8 experiments to Claude Opus 5 (claude-opus-5) and updates the matching README reference. Pinned Claude Code CLI (2.1.191) passes the explicit model ID through unchanged; sanity run passed 7/7. Closes AI-968 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
AI-968 Replace Opus 4.8 with Opus 5 in evals
Update the evals to use Opus 5 instead of Opus 4.8 ahead of launch. The thread discussed either replacing 4.8 or running both side by side, and the decision was to replace 4.8 with 5 because of the GitHub Actions jobs budget, similar to the earlier Sonnet 4.6 → 5 update. |
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
raulb
approved these changes
Jul 28, 2026
mattrossman
approved these changes
Jul 28, 2026
Collaborator
|
Tested the updated experiments locally and they seemed to work fine! |
raulb
deleted the
pedrorodrigues/ai-968-replace-opus-48-with-opus-5-in-evals
branch
July 29, 2026 11:10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Swaps the two Opus 4.8 experiments to Opus 5 and updates the matching README reference, mirroring the earlier Sonnet 4.6 → Sonnet 5 bump.
According to Claude models overview this is a stable ID:
Pricing is unchanged from Opus 4.8 ($5/$25 per MTok), so this stays within the same GitHub Actions budget.
Claude Code compatibility
Checked the Claude Code changelog between our pinned CLI (
2.1.191) and latest (2.1.220): no breaking changes to the--output-format stream-jsontranscript structure thatpackages/core/src/agents/claude-code/parser.tsdepends on — only additive changes:mcp_server_errorson the init event in 2.1.219--forward-subagent-textin 2.1.212. feat(claude-code): capture subagent text and thinking in transcripts #137 adds support to capture subagents steps from the transcriptClaude Code added Opus 5 as its default Opus alias in 2.1.219, but the pinned 2.1.191 passes the explicit
claude-opus-5ID through to the API fine (same as Sonnet 5 did in #73, which predated CLI-side Sonnet 5 support), so no CLI bump is needed.Opus 5's only API breaking change vs 4.8 (what's new:
thinking: disabledwith effortxhigh/maxnow 400s) doesn't affect these experiments — they runreasoningEffort: 'high'with default thinking.Note:
highis also Claude Code's default effort for Opus 5 (model config docs.Testing
Sanity-checked
claude-code-opus-5againstresolve-dataapi-001-empty-results: 7/7 checks passed (1 attempt, 230s, 43 tool calls,stoppedReason: stop, transcript parsed cleanly with skill-load detection working).Closes AI-968