From ad8360665ecf5437f2eb26dce3ca808612769eed Mon Sep 17 00:00:00 2001 From: Harald Kirschner Date: Tue, 24 Feb 2026 13:41:29 -0800 Subject: [PATCH] Enable subagent custom agent setting by default (#297499) --- src/vs/workbench/contrib/chat/browser/chat.contribution.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts index 1f0c66b25c4..c9f4f1d02f5 100644 --- a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts +++ b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts @@ -1227,8 +1227,7 @@ configurationRegistry.registerConfiguration({ [ChatConfiguration.SubagentToolCustomAgents]: { type: 'boolean', description: nls.localize('chat.subagentTool.customAgents', "Whether the runSubagent tool is able to use custom agents. When enabled, the tool can take the name of a custom agent, but it must be given the exact name of the agent."), - default: false, - tags: ['experimental'], + default: true, experiment: { mode: 'auto' }