chore(deps): accept the Eval 0.147.0 generation - #146
Merged
Conversation
Prove the cohort by the single installed copy rather than by the shape of the specifier, so a range that admits the installed version passes.
tangletools
approved these changes
Aug 17, 2026
tangletools
left a comment
Contributor
There was a problem hiding this comment.
✅ Auto-approved drewstone PR — 12f3a458
This PR was opened by the trusted drewstone account.
The full PR reviewer audit still runs separately and will publish findings if it detects issues.
This approval is provisional. It rests on the audit running. If the audit cannot run — for example the CLI bridge rejects it — this approval is dismissed rather than left standing, so an unrun check never reads as a passing one.
tangletools · auto-approval · reason: drewstone_author · 2026-08-17T01:49:59Z
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.
agent-runtime requires
agent-eval >=0.147.0 <0.148.0; this package capped it at<0.147.0, so no install of the two together resolves. Peer moves to>=0.147.0 <0.148.0, dev pin to 0.147.0, version to 8.0.7.The guard also had to change, and this is the substantive part.
scripts/verify-package.mjsasserted that agent-eval pinsagent-coreexactly, by regex on the specifier string. agent-eval 0.147.0 declares^0.9.4deliberately — an exact first-party pin duplicates the package for every consumer already holding a later patch, which is what agent-runtime's packed-cohort guard now refuses fleet-wide.The check's real intent is one installed copy, not one specifier shape. It now asserts the declared range admits the installed version — using this file's own
assertCaretAdmits, the same helper it already applies to agent-interface — andassertSingleInstalledAgentStackkeys off the installed version. A range that admits the installed copy passes; a range that does not still fails.Verified locally:
pnpm typecheckexit 0,pnpm buildexit 0,pnpm verify:packageexit 0 (the cohort and single-copy checks both run),pnpm test→ 63 files passed | 3 skipped, 612 tests passed | 12 skipped.