fix: plugin-installed skills not appearing in Skill Browser#365
Merged
breaking-brake merged 3 commits intomainbreaking-brake/cc-wf-studio:mainfrom Jan 4, 2026
fix/skill-scope-terminologybreaking-brake/cc-wf-studio:fix/skill-scope-terminologyCopy head branch name to clipboard
Merged
fix: plugin-installed skills not appearing in Skill Browser#365breaking-brake merged 3 commits intomainbreaking-brake/cc-wf-studio:mainfrom fix/skill-scope-terminologybreaking-brake/cc-wf-studio:fix/skill-scope-terminologyCopy head branch name to clipboard
breaking-brake merged 3 commits intomainbreaking-brake/cc-wf-studio:mainfrom
fix/skill-scope-terminologybreaking-brake/cc-wf-studio:fix/skill-scope-terminologyCopy head branch name to clipboard
Conversation
- Rename 'personal' → 'user', 'plugin' → 'local' scopes - Add backward compatibility migration for existing workflows - Fix project-scoped plugin filtering by projectPath - Add scope description area in Skill Browser for beginners - Update i18n for all 5 languages (en, ja, ko, zh-CN, zh-TW) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Update workflow-schema.json skill scope enum to new terminology - Add skill name matching bonus in relevance filter (0.8 for direct mention) - Include skill node data in refinement prompt to preserve existing skills - Add fallback matching by name only when scope doesn't match - Make skillPath optional for missing skills in validation - Fill in missing workflow metadata from current workflow 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add filter input field below scope description - Filter skills by name (case-insensitive partial match) - Reset filter when dialog closes - Add i18n for all 5 languages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Merged
braking-brake-semantic-release Bot
pushed a commit
that referenced
this pull request
Jan 4, 2026
## [3.12.2](v3.12.1...v3.12.2) (2026-01-04) ### Bug Fixes * plugin-installed skills not appearing in Skill Browser ([#365](#365)) ([c169362](c169362))
|
🎉 This PR is included in version 3.12.2 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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
Plugin-installed skills were not appearing in the Skill Browser dialog.
Current Behavior
document-skillsfromanthropic-agent-skills)Expected Behavior
Root Causes
scanPluginSkills()was filtering bysettings.jsonenabledPlugins, but plugin presence ininstalled_plugins.jsonis sufficientpersonal/plugininstead of official Anthropic terminologyuser/project/localSolution
1. Fix Plugin Skill Scanning (
skill-service.ts)enabledPluginscheckprojectPathfiltering for project-scoped pluginsscanPersonalSkills()→scanUserSkills()2. Migrate Scope Terminology
'personal' | 'project' | 'plugin'to'user' | 'project' | 'local'workflow-schema.jsonfor AI generation3. UI Improvements (
SkillBrowserDialog.tsx)4. AI Refinement Fixes
Files Changed
skill-service.tsmigrate-workflow.tsmigrateSkillScopes()for backward compatibilitymessages.ts,workflow-definition.tsworkflow-schema.jsonSkillBrowserDialog.tsxSkillCreationDialog.tsxrefinement-service.tsskill-relevance-matcher.tsvalidate-workflow.tsTesting
scope: 'personal'load correctly🤖 Generated with Claude Code