Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/opencode/src/command/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export namespace Command {
CONFIGURE_CLAUDE: "configure-claude",
CONFIGURE_CODEX: "configure-codex",
DISCOVER_MCPS: "discover-and-add-mcps",
MCPS: "mcps",
// altimate_change end
} as const

Expand Down Expand Up @@ -144,6 +145,15 @@ export namespace Command {
},
hints: hints(PROMPT_DISCOVER_MCPS),
},
[Default.MCPS]: {
name: Default.MCPS,
description: "list added MCP servers and their connection status",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[MEDIUM · code-reviewer, tech-lead, end-user] Template string uses double quotes instead of backticks, which may cause issues if the string contains embedded expressions or line breaks; inconsistent with codebase style where template literals are preferred for multi-line or dynamic content.

💡 Suggestion: Change "List all configured MCP servers and their current connection status." to List all configured MCP servers and their current connection status.

Confidence: 95/100

source: "command",
get template() {
return "List all configured MCP servers and their current connection status."
},
hints: [],
},
// altimate_change end
}

Expand Down
Loading