-
Notifications
You must be signed in to change notification settings - Fork 2.8k
refactor: replace fetch_instructions with skill tool and built-in skills #10913
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
hannesrudolph
merged 15 commits into
main
from
refactor/replace-fetch-instructions-with-built-in-skills
Jan 29, 2026
Merged
Changes from 12 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
09449e8
refactor: replace fetch_instructions tool with built-in skills
hannesrudolph fc5073b
fix: address skill tool UI/typing and built-in skill location issues
hannesrudolph d30a3c7
fix: add missing diffEnabled parameter to SYSTEM_PROMPT calls after r…
hannesrudolph 2aaebff
chore: add missing skill translations for 17 locales
hannesrudolph 9340090
feat(skills): add build-time generation for built-in skills from SKIL…
hannesrudolph 7c2f3c4
fix: run prettier during skill generation to ensure stable output
hannesrudolph 8abe3d3
refactor: rename mcp-builder to create-mcp-server with original content
hannesrudolph d011fad
fix: auto-approve skill tool (no user confirmation required)
hannesrudolph 6280775
refactor: remove approval flow from skill tool
hannesrudolph b3bfbb3
Revert "refactor: remove approval flow from skill tool"
hannesrudolph 3d07128
fix: update CLI tool renderer to recognize skill tool and add auto-ap…
hannesrudolph 2420ff7
fix: remove remaining fetchInstructions references in CLI utils
hannesrudolph f997890
Remove all diffEnabled references per review request
roomote 34ef7d3
chore: merge main and resolve conflicts in skills module
roomote 51a199d
Revert "chore: merge main and resolve conflicts in skills module"
roomote[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought we got rid of diffEnabled?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@roomote get rid of any references to diffEnabled in this PR, we got rid of it
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Roo Code PR Fixer
Fixed: Removed all
diffEnabledreferences from this PR.Changes Made:
Type definitions:
packages/types/src/global-settings.ts: RemoveddiffEnabledfrom Zod schemapackages/types/src/vscode-extension-host.ts: RemoveddiffEnabledfrom ExtensionState Pick typeImplementation files:
src/core/prompts/system.ts: RemoveddiffEnabledparameter from SYSTEM_PROMPT function signaturesrc/core/webview/ClineProvider.ts: RemoveddiffEnabledfrom destructuring, getState(), and getStateToPostToWebview()src/core/webview/generateSystemPrompt.ts: RemoveddiffEnabledargument from SYSTEM_PROMPT callsrc/core/task/Task.ts: RemoveddiffEnabledargument from getSystemPrompt() callTest files:
src/core/webview/__tests__/ClineProvider.spec.ts: RemoveddiffEnabledfrom mock state, removed property expectation, removed 3 test cases for diff enabled/disabledsrc/core/prompts/__tests__/system-prompt.spec.ts: RemoveddiffEnabledparameter from all SYSTEM_PROMPT calls, removed 3 test cases specifically testing diffEnabled behaviorsrc/core/prompts/__tests__/add-custom-instructions.spec.ts: RemoveddiffEnabledparameter from all SYSTEM_PROMPT callsVerification:
Commit: f997890