From 2d8e10c9ffd7f394439252696c5397231ae4ff93 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Thu, 19 Feb 2026 12:44:22 +1100 Subject: [PATCH] Support /skills for background agents --- .../chat/browser/widget/input/editor/chatInputCompletions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.ts b/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.ts index fa0b91cd448b6..a2764515013be 100644 --- a/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.ts +++ b/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.ts @@ -79,7 +79,7 @@ class SlashCommandCompletions extends Disposable { return null; } - if (widget.lockedAgentId) { + if (widget.lockedAgentId && !widget.attachmentCapabilities.supportsPromptAttachments) { return null; }