fix: add missing load_skills parameter to hook-injected delegate_task examples

This commit is contained in:
ewjin
2026-03-27 10:56:49 +09:00
parent 1c9f4148d0
commit 8bde294978
5 changed files with 8 additions and 7 deletions
+3 -3
View File
@@ -34,9 +34,9 @@ RECOMMENDED: Use task with explore/librarian agents for better results:
\`\`\`
// Parallel exploration - fire multiple agents simultaneously
task(agent="explore", prompt="Find all files matching pattern X")
task(agent="explore", prompt="Search for implementation of Y")
task(agent="librarian", prompt="Lookup documentation for Z")
task(subagent_type="explore", load_skills=[], prompt="Find all files matching pattern X")
task(subagent_type="explore", load_skills=[], prompt="Search for implementation of Y")
task(subagent_type="librarian", load_skills=[], prompt="Lookup documentation for Z")
// Then continue your work while they run in background
// System will notify you when each completes