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 hotlCoordinates parallel subagent execution for independent tasks, with decision checks and conflict resolution.
Patterns 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.
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.