parallel-launch

Installation
SKILL.md

Parallel Launch

Decompose the given task into independent agent groups and execute them in broad parallel.

Process

  1. Analyze the task and identify independent concerns that can run concurrently.

    • Each concern must be self-contained: no shared mutable state, no ordering dependency.
    • If concerns have dependencies, sequence the dependent batch after the independent batch completes.
    • Consult delegation scenarios for parallelism decisions.
  2. Design agent groups — for each independent concern:

    • Assign a clear, scoped objective (one concern per agent).
    • Select the appropriate agent type (Explore, Plan, general-purpose, or domain specialist).
    • Define expected output format so results can be composed.
  3. Launch all independent agents in a single tool call — never sequentially when parallel is possible.

Installs
1
GitHub Stars
17
First Seen
Apr 5, 2026
parallel-launch — outlinedriven/odin-claude-plugin