docs(skills): fix stale symbols + surface improve()/neutralizationGate/defineLeaderboard#494
Merged
Merged
Conversation
…e/defineLeaderboard - CRITICAL renames (broke on copy): gepaDriver→gepaProposer, selfImprove custom param driver→proposer, coordination verbs spawn_worker→spawn_agent / observe_worker→observe_agent / steer_worker→steer_agent, and createCoordinationTools re-filed under /mcp (with /loops serveCoordinationMcp + driverAgent equivalents). - agent-runtime-adoption: lead the optimization section with improve() (the 3-arg RSI verb, facade over selfImprove); correct the loopCampaignDispatch-was-removed claim (both it and loopDispatch are exported, distinct adapters); add the resolveSandboxClient/resolveAgentBackend driver gotcha and the defineLeaderboard facade. - build-with-agent-runtime: route the optimize row through improve(); add neutralizationGate to the gate row. - loop-writer: route the coding-fanout case to worktreeFanout.
tangletools
approved these changes
Jul 8, 2026
tangletools
left a comment
Contributor
There was a problem hiding this comment.
✅ Auto-approved drewstone PR — a28c578d
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.
tangletools · auto-approval · reason: drewstone_author · 2026-07-08T00:36:39Z
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.
Refreshes the agent-runtime skills against current code (verified via
git grep origin/main). From a 3-agent audit + adversarial verification of every finding.CRITICAL — wrong symbols that broke on copy-paste
gepaDriver→gepaProposer(agent-eval's real export;gepaDriverdoes not exist) — build-with-agent-runtime, agent-runtime-adoption.selfImprovecustom-proposer paramdriver→proposer(self-improve.ts:133 proposer?: SurfaceProposer).spawn_worker/observe_worker/steer_worker→spawn_agent/observe_agent/steer_agent(real names insrc/mcp/tools/coordination.ts) — supervise, loop-writer.createCoordinationToolsre-filed under/mcp(it lives insrc/mcp/, not/loops); named the/loopsequivalentsserveCoordinationMcp+driverAgent.MAJOR — surface current primitives
improve()now leads the optimization section in agent-runtime-adoption — the 3-arg RSI verb (improve(profile, findings, opts), root export, facade overselfImprove), with the realImproveOptions/ImproveResultshape; drop toselfImproveonly for finer control. build-with-agent-runtime's optimize row routed through it too.neutralizationGate(agent-eval 0.107.0 footprint-matched placebo gate) added to the build-with-agent-runtime gate row.defineLeaderboardfacade added to the campaign-bridge section.loopCampaignDispatchwas NOT removed — corrected the "consolidated away" claim; it andloopDispatchare distinct exported adapters (DispatchFnforrunCampaignvsProfileDispatchFnforrunProfileMatrix); fixed the example to useloopCampaignDispatchfor therunCampaigncase.resolveSandboxClientdriver gotcha added (+ how it differs from itsresolveAgentBackendsibling).worktreeFanoutrouted for the coding-fanout case in loop-writer.Every symbol introduced was confirmed present on
origin/main. Docs-only.