improvement: add disable-model-invocation configuration UI for Slash Command export#443
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Jan 13, 2026
improvement/add-disable-model-invocation-optionbreaking-brake/cc-wf-studio:improvement/add-disable-model-invocation-optionCopy head branch name to clipboard
Merged
improvement: add disable-model-invocation configuration UI for Slash Command export#443breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom improvement/add-disable-model-invocation-optionbreaking-brake/cc-wf-studio:improvement/add-disable-model-invocation-optionCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
improvement/add-disable-model-invocation-optionbreaking-brake/cc-wf-studio:improvement/add-disable-model-invocation-optionCopy head branch name to clipboard
Conversation
…Command export - Added disableModelInvocation property to SlashCommandOptions type - Added submenu UI with default/true options and Shield icon - Added translations for all 5 languages - Added serialization and export support 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 13, 2026
## [3.14.3](v3.14.2...v3.14.3) (2026-01-13) ### Bug Fixes * ensure consistent left-side submenu positioning ([#434](#434)) ([0679f7d](0679f7d)), closes [#433](#433) ### Improvements * add disable-model-invocation configuration UI for Slash Command export ([#443](#443)) ([8eac0a0](8eac0a0)) * reorganize SlashCommandOptions dropdown and add help link ([#444](#444)) ([d39a702](d39a702))
|
🎉 This PR is included in version 3.14.3 🎉 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
Currently, there is no way to configure the
disable-model-invocationoption in the Slash Command export settings. This option prevents the Skill tool from invoking the command, which is useful for controlling automated command execution.Current Behavior
disable-model-invocationExpected Behavior
Disable Model Invocationtotruevia submenu in SlashCommandOptions dropdowndisable-model-invocation: truein frontmatterSolution
Added
disableModelInvocationconfiguration option to SlashCommandOptions with full UI support, serialization, and export functionality.Changes
File:
src/shared/types/workflow-definition.ts@seelink to Claude Code docs in SlashCommandOptions interface JSDocdisableModelInvocation?: booleanproperty with documentationFile:
src/extension/services/export-service.tsdisable-model-invocation: truewhen enabledFile:
src/webview/src/stores/workflow-store.tssetSlashCommandDisableModelInvocationactionFile:
src/webview/src/components/toolbar/SlashCommandOptionsDropdown.tsxdefault/trueradio optionsFile:
src/webview/src/components/Toolbar.tsxdisableModelInvocationstate to dropdown componentFile:
src/webview/src/services/workflow-service.tsdisableModelInvocationto serialization logichasNonDefaultOptionscheckFiles: Translation files (en.ts, ja.ts, ko.ts, zh-CN.ts, zh-TW.ts)
toolbar.disableModelInvocation.tooltiptranslationsImpact
Testing
npm run format && npm run lint && npm run check)npm run build)Closes #426
🤖 Generated with Claude Code