Version Packages#173
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 17, 2026 19:40
b0985d3 to
c84489c
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 22, 2026 13:40
c84489c to
092dfc7
Compare
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@vercel/agent-eval@1.4.0
Minor Changes
4f8732cThanks @gaojude! - Addexpect(transcript).toContainText(needle)— a deterministic, judge-free EVAL.ts matcher over the materialized transcript.needleis an exact substring or a RegExp (use/…/ifor case-insensitive). Built for.not("the agent never reached for X"): absence checks no longer need a judge run or manualreadFileSync(transcriptPath()). Misuse (wrong subject, empty needle, empty-matching regex) and a missing/empty transcript throw instead of returning a failed verdict, so.notcan never invert them into a silent pass.Patch Changes
f661766Thanks @molebox! - Verify and repair the shell tool for native-default Codex runs. Codex CLI >= 0.144.0 (published 2026-07-09) exposes no shell/exec tool to the model when config.toml uses a custommodel_provider(e.g. the AI Gateway) and omits themodelkey — exactly what native-default runs write. The model still answers, but it cannot run commands, read files, or use installed skills, and it sometimes fabricates command output instead of reporting the missing tool. run.mjs now pre-verifies native-default runs with a fabrication-proof shell canary (acommand_executionitem must carry a random nonce), repairs by re-stating the CLI's own resolved default model as an explicit top-levelmodelkey in the profile config, re-verifies, and fails loudly if the tool is still unavailable — preserving the canary's captured output on the failure result for triage. The verified outcome is memoized per sandbox (~/.codex/agent-eval-canary.json) so judge assertions that re-invoke the runner do not pay repeat canary calls. The repair is recorded as an optionalmodelRepairfield propagated throughRunnerResult→AgentRunResult→EvalRunResult, so persisted results show which runs needed it (and repairs dropping to zero signals the upstream fix).