-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat: add skills management UI to settings panel (#10513) #10844
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
Open
SannidhyaSah
wants to merge
4
commits into
main
Choose a base branch
from
feat/skills-settings-ui
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,997
−27
Conversation
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
- Add SkillsSettings, SkillItem, and CreateSkillDialog components - Extend SkillsManager with CRUD operations - Add skills state to ExtensionStateContext - Implement message handlers for skills operations - Add comprehensive tests (82 new tests, all passing) - Add i18n translations for skills UI - Fix Dialog component mocks in SettingsView tests - Fix lint warnings for unused parameters
Contributor
Review of commit 761f7c4: All previously flagged issues remain resolved. The new commit adds i18n translations for skills UI in all 17 supported languages.
Mention @roomote in a comment to request specific changes to this pull request or fix all unresolved issues. |
- Add skills list refresh after deleteSkill to prevent race condition - Fix frontend validation regex to match backend spec (no consecutive/trailing hyphens)
- Added 36 skills-related translation keys to all languages - Languages: ca, de, es, fr, hi, id, it, ja, ko, nl, pl, pt-BR, ru, tr, vi, zh-CN, zh-TW - Covers Skills UI components including: - Section header - Project/Global skills labels - Add/Edit/Delete actions - Create skill dialog with all fields - Validation messages - All translations verified with find-missing-translations script
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.
Related GitHub Issue
Closes: #10513
Roo Code Task Context (Optional)
No Roo Code task context for this PR
Description
This PR implements a comprehensive user-facing skills management UI in the settings panel, modeled after the existing slash commands interface. Unlike the previous implementation which used a tabbed approach, this version provides a dedicated "Skills" section in the settings sidebar with seamless coexistence alongside slash commands.
Key implementation details:
Backend Services:
SkillsManagerwith CRUD methods:getSkillsMetadata(),getSkill(),createSkill(),deleteSkill()requestSkills,createSkill,deleteSkill,openSkillFilewebviewMessageHandler.tswith error handling and file operationsUI Components:
SkillsSettings.tsx- Main container with Global/Project sectionsSkillItem.tsx- Individual skill display with edit/delete actions and mode badgesCreateSkillDialog.tsx- Modal dialog with real-time validationExtensionStateContextfollowing the commands patternSettingsViewwith Zap iconDesign decisions:
Areas for special attention:
webviewMessageHandler.ts(lines 3007-3090)SkillsManager.ts(lines 277-294)Test Procedure
Automated Tests (All Passing - 6,488 total):
Test Results:
Manual Testing Steps:
Pre-Submission Checklist
Screenshots / Videos
Skills Settings UI showing Global and Project sections:

Documentation Updates
Additional Notes
Implementation Differences from Previous PR:
SkillsSettings,SkillItem, andCreateSkillDialogcomponentsGet in Touch
TBD
Important
Adds a skills management UI to the settings panel with backend support for CRUD operations, validation, and extensive test coverage.
SkillsManagerwith methods likegetSkillsMetadata(),createSkill(),deleteSkill().webviewMessageHandler.ts.SkillsSettings.tsx,SkillItem.tsx, andCreateSkillDialog.tsxfor managing skills.ExtensionStateContext.This description was created by
for 761f7c4. You can customize this summary. It will automatically update as commits are pushed.