Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 0 additions & 5 deletions .opencode/opencode.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,4 @@
"github-triage": false,
"github-pr-search": false,
},
// altimate_change start — disable auto MCP discovery for altimate-code
"experimental": {
"auto_mcp_discovery": false,
},
// altimate_change end
}
4 changes: 2 additions & 2 deletions packages/opencode/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1294,8 +1294,8 @@ export namespace Config {
// altimate_change start - auto MCP discovery toggle
auto_mcp_discovery: z
.boolean()
.optional()
.describe("Auto-discover MCP servers from VS Code, Claude Code, Copilot, and Gemini configs at startup (default: true). Set to false to disable."),
.default(true)
.describe("Auto-discover MCP servers from VS Code, Claude Code, Copilot, and Gemini configs at startup. Set to false to disable."),
// altimate_change end
})
.optional(),
Expand Down
2 changes: 2 additions & 0 deletions packages/opencode/test/tool/skill.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ Use this skill.
config: {
experimental: {
env_fingerprint_skill_selection: false,
auto_mcp_discovery: true,
},
},
init: async (dir) => {
Expand Down Expand Up @@ -225,6 +226,7 @@ Use this skill.
config: {
experimental: {
env_fingerprint_skill_selection: true,
auto_mcp_discovery: true,
},
},
init: async (dir) => {
Expand Down
Loading