From hotl
Dispatches parallel subagents for 2+ independent tasks with no shared state. Use when tasks are well-defined and have no sequential dependency.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hotl:dispatch-agentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Tasks are truly independent (no shared files, no sequential dependency)
requesting-code-review to dispatch the code-reviewer agent on merged result, then handle findings via receiving-code-reviewNever dispatch agents for tasks involving shared state — race conditions and conflicts will waste more time than sequential execution saves.
npx claudepluginhub yimwoo/hotl-plugin --plugin hotlPatterns and principles for orchestrating parallel subagent execution: work decomposition (fan-out/fan-in, map-reduce), isolation, result synthesis, and failure handling. Use when a task splits into independent subtasks.
Dispatches parallel subagents for 2+ independent tasks without file or state conflicts or dependencies. Triggers on 'run these in parallel', plans with separate domains, includes prompt templates and verification.
Parallelizes independent work (N slices, reviews, or tasks) across subagents using worktree isolation. Directs fan-out, scatter-gather, and comprehensive review workflows without agent confusion.