Conversation
Classify each turn locally into final_answer_only, read_or_search, edit_code, run_command, debug_failure, or unknown, then forward only the client tool categories that task type needs. Function schemas are minimised to argument names, types, and required lists with capped descriptions unless forwardFullToolSchemas is enabled. Safety rules enforced by tests: exact tool names preserved, no tools invented, mid-task conversations keep their tools, unknown turns keep the full inventory, and disabling enableSmartToolSelection restores unconditional forwarding. Defaults: on, minimal schemas, 160-char descriptions.
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 changed
Before
buildRelayPrompt(), each turn is classified locally into one offinal_answer_only/read_or_search/edit_code/run_command/debug_failure/unknown, and only the client tool categories that task type plausibly needs are forwarded to Hyperagent. Function tool schemas are minimised to argument names, types, and required lists; descriptions are capped (160 chars default).src/protocol.mjs:classifyTurn(input),shortlistTools(tools, taskType, config);extractClientToolsapplies them when enabled.enableSmartToolSelection(default true),forwardFullToolSchemas(default false),maxToolDescriptionChars(default 160). Old behaviour available viaenableSmartToolSelection: false.Why it saves credits
Tool schemas are a large fixed cost on every request of every tool loop.
Measured locally (synthetic 32-tool toolbox, request "Run the test suite."):
Safety rules (all test-enforced)
Risks/caveats
A mis-classified first turn can omit a specialised MCP tool for that one turn; the relay falls back to plain text naming the missing tool (existing
parseRelayOutputbehaviour) instead of executing it. Rephrase or disable if that bites.Testing
npm test: 82 pass, 0 fail (3 pre-existing skips). New tests cover classification taxonomy, per-task shortlists, edit/debug chain preservation, mid-task retention, disable/unknown pass-through, and schema minimisation shape.