Help us improve
Share bugs, ideas, or general feedback.
From hotl
Dispatches parallel subagents for 2+ independent tasks with no shared state. Crafts self-contained prompts, merges results, verifies changes, and requests code review.
npx claudepluginhub yimwoo/hotl-plugin --plugin hotlHow 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)
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.
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.
Spawns parallel subagents using Task tool with run_in_background for coordinating multiple independent tasks, dynamic subagent spawning, and parallelizing features.
Share bugs, ideas, or general feedback.
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.