fix: add CLI-aware skill normalization to skip native directories#512
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Jan 29, 2026
fix/skill-normalization-native-directorybreaking-brake/cc-wf-studio:fix/skill-normalization-native-directoryCopy head branch name to clipboard
Merged
fix: add CLI-aware skill normalization to skip native directories#512breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom fix/skill-normalization-native-directorybreaking-brake/cc-wf-studio:fix/skill-normalization-native-directoryCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
fix/skill-normalization-native-directorybreaking-brake/cc-wf-studio:fix/skill-normalization-native-directoryCopy head branch name to clipboard
Conversation
- Added targetCli parameter to skill normalization functions - Copilot CLI: .github/skills/ and .copilot/skills/ are native (no copy dialog) - Codex CLI: .codex/skills/ is native (no copy dialog) - Added .copilot/skills/ as alternative Copilot skill directory 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 29, 2026
## [3.18.2](v3.18.1...v3.18.2) (2026-01-29) ### Bug Fixes * add CLI-aware skill normalization to skip native directories ([#512](#512)) ([0c49d94](0c49d94)) * add MCP server detection for Copilot CLI and Codex CLI ([#509](#509)) ([#510](#510)) ([ef31649](ef31649)) * add skills detection for Copilot/Codex with grouped UI ([#508](#508)) ([ab89f69](ab89f69)), closes [#507](#507) * remove Codex project trust workaround ([#513](#513)) ([c5a9c45](c5a9c45)), closes [#495](#495) * resolve skill source path correctly for all scopes ([#514](#514)) ([8caf97e](8caf97e)) * show AI provider badge for user scope skills ([#515](#515)) ([760d411](760d411)) ### Documentation * add AI coding tools configuration reference ([#505](#505)) ([f3bd005](f3bd005))
|
🎉 This PR is included in version 3.18.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
When running a workflow with Copilot CLI, users are prompted to copy skills from
.github/skills/to.claude/skills/even though.github/skills/is a native directory for Copilot CLI.Current Behavior
.github/skills/.claude/skills/Expected Behavior
.github/skills/.github/skills/is native for Copilot CLISolution
Added
targetCliparameter to skill normalization functions to dynamically determine which directories are "standard" for each CLI.Standard Directories per CLI
claude.claude/skills/copilot.claude/skills/,.github/skills/,.copilot/skills/codex.claude/skills/,.codex/skills/Changes
File:
src/extension/services/skill-normalization-service.ts.copilot/skills/toNON_STANDARD_SKILL_PATTERNS'copilot'toSkillSourceTypegetStandardSkillPatterns(targetCli)helper functionisSkillFromStandardDir(skillPath, targetCli)helper functiongetSourceType()andgetSourceSkillsDir()to handle.copilot/skills/targetCliparameter (default:'claude') to:hasNonStandardSkills()checkSkillsToNormalize()promptAndNormalizeSkills()normalizeSkillsWithoutPrompt()File:
src/extension/commands/copilot-handlers.ts'copilot'to skill normalization functionsFile:
src/extension/commands/codex-handlers.ts'codex'to skill normalization functionsFile:
src/extension/commands/export-workflow.ts'claude'to skill normalization functionsImpact
.github/skills/or.copilot/skills/.codex/skills/.claude/skills/is standard)'claude')Testing
npm run format && npm run lint && npm run check)npm run build)🤖 Generated with Claude Code