fix: include skills in minimal prompt mode for subagents

This commit is contained in:
Robby 2026-01-22 08:28:55 +00:00 committed by Peter Steinberger
parent 0e17e55be9
commit 13bedc3f05

View File

@ -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 <available_skills> <description> entries.",