fix(tools): align tool handler names with registration names#62
Closed
echobt wants to merge 2 commits intodocs/standardize-timeout-documentationfrom
Closed
fix(tools): align tool handler names with registration names#62echobt wants to merge 2 commits intodocs/standardize-timeout-documentationfrom
echobt wants to merge 2 commits intodocs/standardize-timeout-documentationfrom
Conversation
echobt
added a commit
that referenced
this pull request
Feb 4, 2026
This PR consolidates the following tools fixes: - #53: Add serde alias for Glob tool folder parameter - #62: Align tool handler names with registration names - #63: Add serde alias for Grep tool head_limit parameter Key changes: - Added serde aliases for backward compatibility - Fixed mismatched handler names to match tool registration - Improved tool parameter handling consistency
Contributor
Author
|
Consolidated into #75 - fix(tools): consolidated tools parameter aliases and handler name fixes |
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.
Problem
Tool handler names were inconsistent with their registration names in router.rs:
WriteFileHandler.name()returned "Write" but was registered as "Create"SearchFilesHandler.name()returned "search_files" (snake_case) but was registered as "SearchFiles" (PascalCase)This inconsistency causes confusion in tool routing and logging, as the handler reports a different name than what it is registered under.
Solution
Aligned the
name()return values with the registration names:WriteFileHandler.name()now returns "Create"SearchFilesHandler.name()now returns "SearchFiles"Changes
WriteFileHandler::name()to return "Create" instead of "Write"SearchFilesHandler::name()to return "SearchFiles" instead of "search_files"Testing
Verified compilation with
cargo check -p cortex-engine.