From odin
Decomposes tasks into independent concerns executed by parallel agent groups, with automated review of composed results for correctness.
How this skill is triggered — by the user, by Claude, or both
Slash command
/odin:parallel-launchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Decompose the given task into independent agent groups and execute them in broad parallel.
Decompose the given task into independent agent groups and execute them in broad parallel.
Analyze the task and identify independent concerns that can run concurrently.
Design agent groups — for each independent concern:
Launch all independent agents in a single tool call — never sequentially when parallel is possible.
Compose results once all agents complete:
Review composed output — dispatch a review agent to verify:
Report to user only after review passes.
npx claudepluginhub outlinedriven/odin-claude-plugin --plugin odinDispatches parallel subagents for 2+ independent tasks with no shared state. Use when tasks are well-defined and have no sequential dependency.
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.
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.