Add --vscode flag to init CLI for MCP configuration#81
Merged
Conversation
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.
PR Auto Describe
Summary
Added VS Code (MCP) support to the CLI init command.
Introduces a
--vscodeflag, updates help text, interactive menu, and default option handling to include “VS Code (MCP)”.All logic paths now recognize the new flag and add
"vscode"to the list of configuration IDs.Key Changes
--vscodeCLI flag and help entry."vscode".Detailed Breakdown
print_help): added line--vscodewith cyan formatting.run_init):is_vscodeset byargs.iter().any(|a| a == "--vscode").&& !is_vscode.println!(" [{}] VS Code (MCP)", "13".cyan());.[1-13, q]."13" => is_vscode = true."vscode"to the vector of IDs when no specific flags are supplied.idsvector): addedif is_vscode { ids.push("vscode"); }after existing checks.Notes
None beyond the new flag; all integration points now handle
"vscode"consistently.Breaking Changes
No breaking changes. The new flag is additive and does not alter existing behavior unless explicitly requested.
Last updated: 2026-05-07 16:45:28