fix(vscode): replace opencode references with kilo.jsonc in settings UI#7845
Open
kilo-code-bot[bot] wants to merge 2 commits intomainfrom
Open
fix(vscode): replace opencode references with kilo.jsonc in settings UI#7845kilo-code-bot[bot] wants to merge 2 commits intomainfrom
kilo-code-bot[bot] wants to merge 2 commits intomainfrom
Conversation
…UI i18n strings Replace 'opencode.json' and 'opencode config file' references with 'kilo.jsonc' across all 18 i18n locale files for MCP empty state, plugins empty state, error config check, and workflow description/empty state messages. Also add text suggesting users can ask the agent to add an MCP server for them.
| "settings.agentBehaviour.addMcp.url.placeholder": "e.g. http://localhost:3000/sse", | ||
| "settings.agentBehaviour.mcpEmpty": "No MCP servers configured. Edit the opencode config file to add MCP servers.", | ||
| "settings.agentBehaviour.mcpEmpty": | ||
| "No MCP servers configured. Edit kilo.jsonc to add MCP servers, or ask the agent to add one for you.", |
Contributor
Author
There was a problem hiding this comment.
WARNING: This hard-codes the wrong config filename for the VS Code extension
The extension still resolves and detects MCP config from kilo.json (packages/kilo-vscode/src/services/marketplace/paths.ts and packages/kilo-vscode/src/services/marketplace/detection.ts), so telling users here to edit kilo.jsonc can send them to a file that this UI will not pick up. This same mcpEmpty copy was changed in every locale, so the mismatch will be user-visible across all translations.
Contributor
Author
Code Review SummaryStatus: 1 Issues Found | Recommendation: Address before merge Overview
Fix these issues in Kilo Cloud Issue Details (click to expand)WARNING
Other Observations (not in diff)None. Files Reviewed (19 files)
Reviewed by gpt-5.4-20260305 · 1,049,271 tokens |
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
opencode.json/opencode config filereferences withkilo.jsoncin the VS Code extension settings UI i18n strings across all 18 locale filessettings.agentBehaviour.mcpEmpty,settings.agentBehaviour.workflows.description,settings.agentBehaviour.workflows.empty,dialog.plugins.empty,error.chain.checkConfigRelated: #7839