Repoint tool descriptions and nudge away from removed tools#103
Merged
Conversation
The 3-tool strip (#99) left the live MinifyFile and OutlineCSharpFile descriptions and the runtime low-saving nudge pointing at focus_method, and TraceDiRegistrations referencing trace_implementors -- none of which are exposed tools anymore. A model that follows that guidance reaches for a tool that does not exist and falls back to a whole-file Read. Repoint them to outline_c_sharp_file plus a narrow Read, and lead the two single-file tools with an imperative trigger so the host model picks them up before reading a large C#/VB file. Descriptions only; no behavior change. Co-Authored-By: Claude Opus 4.8 <[email protected]> Claude-Session: https://claude.ai/code/session_0158rjCdskesQmgaVnW8x6yi
Byggarepop
added a commit
that referenced
this pull request
Jun 19, 2026
Releases the tool-description cleanup from #103 (repointed the live descriptions and the runtime nudge off the removed focus_method/trace_implementors, and led the single-file tools with an imperative trigger). Descriptions only, no behaviour change. Bumps the csproj version and both server.json version fields. Claude-Session: https://claude.ai/code/session_0158rjCdskesQmgaVnW8x6yi Co-authored-by: Claude Opus 4.8 <[email protected]>
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
The 3-tool strip (#99) left model-facing guidance pointing at tools that no longer exist:
MinifyFileandOutlineCSharpFiledescriptions, and the runtime low-saving nudge, told the model to usefocus_method.TraceDiRegistrationsreferencedtrace_implementors.A model that follows this reaches for a tool that isn't there and falls back to reading the whole file.
Change
outline_c_sharp_file+ a narrow Read.outline_c_sharp_fileandMinifyFilewith an imperative trigger ("CALL THIS FIRST before reading or editing any C#/VB file over ~50 lines").docs/tools.jsonwas already clean, so generated docs are unaffected.