improvement: simplify Skill node description in exported MD files#547
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Feb 7, 2026
improvement/simplify-skill-node-export-descriptionbreaking-brake/cc-wf-studio:improvement/simplify-skill-node-export-descriptionCopy head branch name to clipboard
Merged
improvement: simplify Skill node description in exported MD files#547breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom improvement/simplify-skill-node-export-descriptionbreaking-brake/cc-wf-studio:improvement/simplify-skill-node-export-descriptionCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
improvement/simplify-skill-node-export-descriptionbreaking-brake/cc-wf-studio:improvement/simplify-skill-node-export-descriptionCopy head branch name to clipboard
Conversation
- Remove verbose metadata (Description, Scope, ValidationStatus, SkillPath, ExecutionMode) - Use concise prompt-style format for Skill nodes - load mode: skill "name" load-skill-knowledge-into-context-only - execute mode: skill "name" or skill "name" "executionPrompt" Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Merged
braking-brake-semantic-release Bot
pushed a commit
that referenced
this pull request
Feb 7, 2026
## [3.20.0](v3.19.2...v3.20.0) (2026-02-07) ### Features * add Roo Code skills integration (export & run) ([#543](#543)) ([913eba0](913eba0)) ### Improvements * add persistent memory setting to SubAgent and SubAgentFlow nodes ([#541](#541)) ([b48acd7](b48acd7)) * add Roo Code skills detection and documentation ([#545](#545)) ([5db6252](5db6252)) * simplify Skill node description in exported MD files ([#547](#547)) ([3fc1f6c](3fc1f6c))
|
🎉 This PR is included in version 3.20.0 🎉 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.
Summary
Simplify Skill node output in exported MD files to prevent AI coding agents from misinterpreting verbose descriptions.
What Changed
Skill node descriptions in exported slash command / skill MD files were too verbose, causing some AI agents to read the MD file content instead of executing the Skill properly.
Before
After
skill "name",skill "name" "prompt", orskill "name" load-skill-knowledge-into-context-onlyChanges
src/extension/services/workflow-prompt-generator.ts- Simplified Skill node section ingenerateExecutionInstructions()from ~30 lines to ~6 lines per nodeTesting
npm run format && npm run lint && npm run check && npm run build)🤖 Generated with Claude Code