fix(prompts): add missing run_in_background and load_skills params to examples

All delegate_task examples now include required parameters to prevent
model confusion about parameter omission.

Fixes #1403
This commit is contained in:
YeonGyu-Kim
2026-02-03 10:50:26 +09:00
parent 713df6b0a5
commit 817fc208b8
9 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -247,7 +247,7 @@ delegate_task(
**ANTI-PATTERN (will produce poor results):**
\`\`\`typescript
delegate_task(category="...", load_skills=[], prompt="...") // Empty load_skills without justification
delegate_task(category="...", load_skills=[], run_in_background=false, prompt="...") // Empty load_skills without justification
\`\`\``
}