chore(deps): widen agent-eval to ^0.91 + bump agent-runtime ^0.50#25
Merged
Conversation
Widen the agent-eval pin from `>=0.77.0 <0.80.0` to `^0.91.0` (the version the rest of the fleet uses) and bump agent-runtime `^0.44.0` to `^0.50.0`. The old `<0.80` ceiling blocked a consistent fleet-wide agent-eval and risked a duplicate substrate install; both now resolve to a single agent-eval@0.91.0. agent-runtime 0.50 removed `createFanoutVoteDriver` from the /loops surface. Reconstruct the same single-fanout-then-stop topology with `createDriver` + a planner; the kernel selects the winner across iterations via `defaultSelectWinner`. Update the two tests that asserted the old driver's name/decision strings to the new DriverDecision contract (winner-selection behavior unchanged).
tangletools
approved these changes
Jun 14, 2026
tangletools
left a comment
Contributor
There was a problem hiding this comment.
✅ Auto-approved PR — dcf27d24
Blanket team auto-approval is enabled for this reviewer service.
The full PR reviewer audit still runs separately and will publish findings if it detects issues.
tangletools · auto-approval · reason: blanket_auto_approve · 2026-06-14T00:55:35Z
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.
What
@tangle-network/agent-eval:>=0.77.0 <0.80.0→^0.91.0@tangle-network/agent-runtime:^0.44.0→^0.50.0Why
The
<0.80ceiling on agent-eval blocked the fleet from a consistent agent-eval and risked a duplicate install of the substrate everyone depends on. 0.91 is what the rest of the fleet uses. After the bump,agent-evalresolves to a single0.91.0(agent-runtime 0.50 consumes it as a peer at the same version — no duplicate).Substrate API change handled
agent-runtime 0.50 removed
createFanoutVoteDriverfrom the/loopssurface (it's gone from the package entirely, not renamed).multiHarnessResearcherFanoutused it to build a "fanout of N harnesses, pick the best valid output" topology.Reconstructed the identical semantics with the supported primitive:
createDriver+ a single-fanout-then-stop planner. The kernel round-robinsagentRunsacross the N branches and selects the winner across iterations viadefaultSelectWinner— same behavior, current API. The driver's action type moved from the old'pick-winner' | 'fail'to the kernel'sDriverDecision('continue' | 'done').Two tests asserted the old driver's internal name (
'fanout-vote') and decision strings ('pick-winner'/'fail'); updated to the newcreateDrivercontract ('dynamic'/'done'). The winner-selection assertions — the actual behavior under test — are unchanged and still pass.Verification
pnpm install— agent-eval 0.91.0 (single install), agent-runtime 0.50.0pnpm run build— passpnpm run typecheck— pass (0 errors)pnpm test— 110 passed / 5 skipped (live-network)pnpm run lint— pass (no new warnings)