fix deprecated tools principal engineer#1198
Merged
aaronpowell merged 1 commit intogithub:stagedfrom Mar 29, 2026
Merged
Conversation
…are-engineer agent Replace deprecated/incorrect tool references with canonical VS Code built-in tool names per https://code.visualstudio.com/docs/copilot/reference/copilot-vscode-features: search/changes (add correct prefix) vscode/extensions (add correct prefix) read/problems (add correct prefix) search/usages (add correct prefix) execute/testFailure (add correct prefix) vscode/VSCodeAPI (correct casing and prefix) search/textSearch (renamed tool) read/terminalLastCommand (moved to read/) read/terminalSelection (moved to read/) execute (renamed tool set) execute/createAndRunTask (renamed) newWorkspace (renamed) - Remove deprecated tools with no equivalent: findTestFiles, githubRepo, openSimpleBrowser, runTests Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Principal Software Engineer agent configuration to replace deprecated tool references with a simplified set of canonical toolsets aligned with current VS Code Copilot tool naming.
Changes:
- Replaces a long list of legacy/deprecated tool names with higher-level toolsets (e.g.,
read,edit,execute,search,github/*,vscode). - Removes deprecated tools that no longer have equivalents by switching to canonical tool groupings.
| description: 'Provide principal-level software engineering guidance with focus on engineering excellence, technical leadership, and pragmatic implementation.' | ||
| name: 'Principal software engineer' | ||
| tools: ['changes', 'search/codebase', 'edit/editFiles', 'extensions', 'web/fetch', 'findTestFiles', 'githubRepo', 'new', 'openSimpleBrowser', 'problems', 'runCommands', 'runTasks', 'runTests', 'search', 'search/searchResults', 'runCommands/terminalLastCommand', 'runCommands/terminalSelection', 'testFailure', 'usages', 'vscodeAPI', 'github'] | ||
| tools: ['agent', 'browser', 'edit', 'execute', 'github/*', 'read', 'search', 'todo', 'vscode', 'web/fetch'] |
There was a problem hiding this comment.
The agent instructions reference using the create_issue tool, but the updated tools list only enables github/* (no create_issue). To avoid tool-call failures, either update the instruction text to use github/create_issue (since github/* is enabled) or explicitly add the correct issue-creation tool to the tools: array.
aaronpowell
approved these changes
Mar 29, 2026
Member
Author
|
@all-contributors add @garnertb for maintenance, code |
Contributor
|
I've put up a pull request to add @garnertb! 🎉 |
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.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Replace deprecated/incorrect tool references with canonical VS Code built-in tool names per https://code.visualstudio.com/docs/copilot/reference/copilot-vscode-features:
Type of Contribution
Additional Notes
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.