Conversation
Co-authored-by: Claude <noreply@anthropic.com>
Bugbot is paused — on-demand spend limit reachedBugbot uses usage-based billing for this team and has hit its on-demand spend limit. A team admin can raise the spend limit in the Cursor dashboard, or wait for the next billing cycle to continue. |
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Collaborator
Author
|
/promote |
Contributor
|
Promoted. main now points at |
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.
Caution
DO NOT USE THE MERGE BUTTON ON THIS PULL REQUEST.
THE BUTTON CREATES A NEW COMMIT AND BREAKS THE RELEASE MODEL.
COMMENT
/promoteTO COMPLETE THE PROMOTION.Caution
DO NOT USE THE MERGE BUTTON ON THIS PULL REQUEST.
THE BUTTON CREATES A NEW COMMIT AND BREAKS THE RELEASE MODEL.
COMMENT
/promoteTO COMPLETE THE PROMOTION.Summary
Ships
eval-ops/, the operational toolkit used to drive the SWE-Marathon eval sweeps. It is a standalone directory of scripts — nothing in the CLI, backend, or frontend imports it, and no existing file is modified.Commits in this promotion
One commit.
mainis an ancestor ofstaging(git merge-base --is-ancestor origin/main origin/stagingpasses), so this fast-forwards cleanly.Validation
Green on the staging tip
2f7fafd:load_only Guard,E2E: CLI smokeandE2E: Dashboarddid not run on this commit — their path filters exclude a change that touches onlyeval-ops/. That absence is expected here rather than a skipped check.No automated tests: these are operational scripts that talk to the live Oddish API, and the repo's suite does not cover
eval-ops/. They have instead been exercised continuously against the running experiments — the fill loop is driving experiment826d7d88right now, andpassk.pyproduced the reported pass@1/3/8 numbers for the six-rung terra effort sweep.Risk
Additive only. The scripts are not on any import path, so the blast radius on promotion is limited to the repository containing 19 new files. The behaviour they encode already runs today from a working copy; landing them means the next run inherits the accumulated gotchas instead of rediscovering them.
What the toolkit encodes
Three counting traps that each silently stalled a fill in practice, all now handled:
--n-trials, burnt ones included — and infra failures reportstatus=success. Submittingheld + 1therefore creates nothing in any cell with a past failure, while still printingTask submitted!.--akparses agent kwargs intodict[str, str], so a nested value reaches Harbor as a string. Nested config goes through a sweep template instead.It also classifies failures by Harbor's own
result.harbor_exception.exception_typerather than by the error string — every failure shares the sameCommand failed (exit 1): opencode ...prefix regardless of cause, so the string cannot tell a rate limit from a context overflow.Generated by Claude Code