improvement: split Copilot toggle into Copilot Chat and Copilot CLI#597
Merged
breaking-brake merged 2 commits intomainbreaking-brake/cc-wf-studio:mainfrom Feb 21, 2026
improvement/split-copilot-togglebreaking-brake/cc-wf-studio:improvement/split-copilot-toggleCopy head branch name to clipboard
Merged
improvement: split Copilot toggle into Copilot Chat and Copilot CLI#597breaking-brake merged 2 commits intomainbreaking-brake/cc-wf-studio:mainfrom improvement/split-copilot-togglebreaking-brake/cc-wf-studio:improvement/split-copilot-toggleCopy head branch name to clipboard
breaking-brake merged 2 commits intomainbreaking-brake/cc-wf-studio:mainfrom
improvement/split-copilot-togglebreaking-brake/cc-wf-studio:improvement/split-copilot-toggleCopy head branch name to clipboard
Conversation
- Split single "Copilot" toggle into independent "Copilot Chat" and "Copilot CLI" toggles - Each toggle shows its own toolbar column with Export/Run buttons - Remove CopilotExecutionModeDropdown component (no longer needed) - Add localStorage migration from legacy copilot-beta-enabled key - Rename provider 'copilot-vscode' to 'copilot-chat' across codebase Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Split single GitHub Copilot row into Copilot Chat and Copilot CLI - Update Claude Code link to GitHub repository - Update Copilot CLI link to GitHub repository 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 21, 2026
## [3.24.1](v3.24.0...v3.24.1) (2026-02-21) ### Improvements * move AI agent toggles into submenu and prevent menu auto-close ([#598](#598)) ([5032b9d](5032b9d)) * rename Codex to Codex CLI in UI labels ([#600](#600)) ([34df72e](34df72e)) * split Copilot toggle into Copilot Chat and Copilot CLI ([#597](#597)) ([3f9fe0e](3f9fe0e))
|
🎉 This PR is included in version 3.24.1 🎉 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
Split the single "Copilot" toggle in the More Actions menu into two independent toggles: "Copilot Chat" and "Copilot CLI", each with its own toolbar column. Also update README to reflect the split and fix agent links.
What Changed
Before
CopilotExecutionModeDropdownto switch between CLI and VSCode modesAfter
copilot-vscodetocopilot-chatChanges
src/webview/src/stores/refinement-store.ts- SplitisCopilotEnabledintoisCopilotChatEnabled+isCopilotCliEnabledwith localStorage migrationsrc/webview/src/components/toolbar/MoreActionsDropdown.tsx- Replace single Copilot item with Copilot Chat + Copilot CLI itemssrc/webview/src/components/Toolbar.tsx- Split Copilot column into two, remove CopilotExecutionModeDropdown usagesrc/webview/src/components/chat/McpServerSection.tsx- Update visibility filter for individual toggles, rename label and providersrc/webview/src/components/chat/SettingsDropdown.tsx- Update provider display conditionsrc/webview/src/components/toolbar/CopilotExecutionModeDropdown.tsx- Deleted (no longer needed)src/shared/types/messages.ts- RemoveCopilotExecutionModetype, renamecopilot-vscodetocopilot-chatsrc/extension/services/ai-editing-skill-service.ts- Renamecopilot-vscodetocopilot-chatsrc/extension/services/mcp-server-config-writer.ts- Renamecopilot-vscodetocopilot-chatREADME.md- Split Copilot row, update Claude Code and Copilot CLI links to GitHub reposTesting
🤖 Generated with Claude Code