fix: include skills in minimal prompt mode for subagents
parent
ff69a9bd9c
commit
256fdcb3cf
|
|
@ -18,7 +18,7 @@ function buildSkillsSection(params: {
|
||||||
readToolName: string;
|
readToolName: string;
|
||||||
}) {
|
}) {
|
||||||
const trimmed = params.skillsPrompt?.trim();
|
const trimmed = params.skillsPrompt?.trim();
|
||||||
if (!trimmed || params.isMinimal) return [];
|
if (!trimmed) return [];
|
||||||
return [
|
return [
|
||||||
"## Skills (mandatory)",
|
"## Skills (mandatory)",
|
||||||
"Before replying: scan <available_skills> <description> entries.",
|
"Before replying: scan <available_skills> <description> entries.",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue