diff --git a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts index 655d80a3b2e..3b2b018f81a 100644 --- a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts +++ b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts @@ -698,8 +698,8 @@ configurationRegistry.registerConfiguration({ }, [PromptsConfig.USE_AGENT_MD]: { type: 'boolean', - title: nls.localize('chat.useAgentMd.title', "Use AGENTS.MD file",), - markdownDescription: nls.localize('chat.useAgentMd.description', "Controls whether instructions from `AGENTS.MD` file found in a workspace roots are attached to all chat requests.",), + title: nls.localize('chat.useAgentMd.title', "Use AGENTS.md file",), + markdownDescription: nls.localize('chat.useAgentMd.description', "Controls whether instructions from `AGENTS.md` file found in a workspace roots are attached to all chat requests.",), default: true, restricted: true, disallowConfigurationDefault: true, @@ -707,8 +707,8 @@ configurationRegistry.registerConfiguration({ }, [PromptsConfig.USE_NESTED_AGENT_MD]: { type: 'boolean', - title: nls.localize('chat.useNestedAgentMd.title', "Use nested AGENTS.MD files",), - markdownDescription: nls.localize('chat.useNestedAgentMd.description', "Controls whether instructions from nested `AGENTS.MD` files found in the workspace are listed in all chat requests. The language model can load these skills on-demand if the `read` tool is available.",), + title: nls.localize('chat.useNestedAgentMd.title', "Use nested AGENTS.md files",), + markdownDescription: nls.localize('chat.useNestedAgentMd.description', "Controls whether instructions from nested `AGENTS.md` files found in the workspace are listed in all chat requests. The language model can load these skills on-demand if the `read` tool is available.",), default: false, restricted: true, disallowConfigurationDefault: true,