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
@@ -235,7 +235,7 @@ Every \`delegate_task()\` output includes a session_id. **USE IT.**
\`\`\`typescript
// WRONG: Starting fresh loses all context
delegate_task(category="quick", prompt="Fix the type error in auth.ts...")
delegate_task(category="quick", load_skills=[], run_in_background=false, prompt="Fix the type error in auth.ts...")
// CORRECT: Resume preserves everything
delegate_task(session_id="ses_abc123", prompt="Fix: Type error on line 42")