From 256fdcb3cf4da93160b0ed231284c0e5b1c7f6f0 Mon Sep 17 00:00:00 2001 From: Robby Date: Thu, 22 Jan 2026 08:28:55 +0000 Subject: [PATCH] fix: include skills in minimal prompt mode for subagents --- src/agents/system-prompt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/system-prompt.ts b/src/agents/system-prompt.ts index 9716fed0d..4260c96ab 100644 --- a/src/agents/system-prompt.ts +++ b/src/agents/system-prompt.ts @@ -18,7 +18,7 @@ function buildSkillsSection(params: { readToolName: string; }) { const trimmed = params.skillsPrompt?.trim(); - if (!trimmed || params.isMinimal) return []; + if (!trimmed) return []; return [ "## Skills (mandatory)", "Before replying: scan entries.",