Raise delegate_agent/delegate_editor hard step cap 30 → 40 - #160
Closed
allocsys wants to merge 5 commits into
Closed
Raise delegate_agent/delegate_editor hard step cap 30 → 40#160allocsys wants to merge 5 commits into
allocsys wants to merge 5 commits into
Conversation
…le at 6/20; now 20/40)
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.
Raises the hard step-count cap for both delegation tools from 30 to 40, per request.
Changes:
config.js:EDITOR_HARD_MAX_STEPSdefault 30 → 40 (env-overridable, used bydelegate_editor).connectors/delegate/agent/agent_delegate.js: hardcodedHARD_MAX_STEPSconstant 30 → 40 (used bydelegate_agent; not env-configurable, this file is the single source of truth).connectors/delegate/agent/agent_tools.js: updated themax_stepsparam description and the invalid-max_stepserror message to say 40 instead of 30 (delegate_editor's equivalents already interpolate the config constant, so no change needed there).README.md: corrected a staledelegate_agentstep-cap figure that was already out of date (said "default 6, hard cap 20" when the actual values were 20/30) — now reads "default 20, hard cap 40".test/agent-seedrun-max-steps-regression.test.js: updated the hardcoded-30 clamp assertion to 40.delegate_designer'sFRONTEND_HARD_MAX_STEPS(20) is untouched — only agent and editor were requested.