feat: add Roo Code skills integration (export & run)#543
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Feb 7, 2026
feat/roo-code-skills-integrationbreaking-brake/cc-wf-studio:feat/roo-code-skills-integrationCopy head branch name to clipboard
Merged
feat: add Roo Code skills integration (export & run)#543breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom feat/roo-code-skills-integrationbreaking-brake/cc-wf-studio:feat/roo-code-skills-integrationCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
feat/roo-code-skills-integrationbreaking-brake/cc-wf-studio:feat/roo-code-skills-integrationCopy head branch name to clipboard
Conversation
- Add export to .roo/skills/{name}/SKILL.md format
- Add run via Roo Code Extension API (startNewTask)
- Add MCP sync to .roo/mcp.json
- Add Roo Code toggle in More Actions dropdown
- Add 'roo-code' to skill normalization service
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Feb 7, 2026
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
Add Roo Code VSCode extension integration for exporting and running workflows as Roo Code Skills.
Closes #531
Motivation
Roo Code is a popular AI coding agent VSCode extension. Users requested integration (Issue #531) to export workflows to
.roo/skills/format and run them directly via the Roo Code Extension API. This follows the same pattern as the existing Copilot and Codex CLI integrations.Changes
New Files:
src/extension/commands/roo-code-handlers.ts- Export/Run handler functionssrc/extension/services/roo-code-skill-export-service.ts- Export to.roo/skills/{name}/SKILL.mdsrc/extension/services/roo-code-mcp-sync-service.ts- MCP config sync to.roo/mcp.jsonsrc/extension/services/roo-code-extension-service.ts- Roo Code Extension API wrapper (startNewTask)Modified Files:
src/shared/types/messages.ts- Add Roo Code payload types and message typessrc/webview/src/services/vscode-bridge.ts- AddexportForRooCode()/runForRooCode()bridge functionssrc/webview/src/stores/refinement-store.ts- AddisRooCodeEnabledstate with localStorage persistencesrc/webview/src/components/toolbar/MoreActionsDropdown.tsx- Add Roo Code toggle menu itemsrc/webview/src/components/Toolbar.tsx- Add Export/Run buttons and handlerssrc/extension/commands/open-editor.ts- Add message dispatch forEXPORT_FOR_ROO_CODE/RUN_FOR_ROO_CODEsrc/extension/services/skill-normalization-service.ts- Add'roo-code'toTargetCliand.roo/skills/patternpackage.json- Update displayName, description, keywordsREADME.md- Add Roo Code support documentationTesting
npm run format && npm run lint && npm run checkpassednpm run buildpassed🤖 Generated with Claude Code