← ClaudeAtlas

parallel-agentslisted

Orchestration of parallel agents to maximize efficiency. Trigger when a task can be decomposed into independent sub-tasks that can run in parallel.
christopherlouet/claude-base · ★ 4 · AI & Automation · score 80
Install: claude install-skill christopherlouet/claude-base
# Parallel Agents Orchestration ## Goal Decompose complex tasks into independent sub-tasks and run them in parallel via specialized sub-agents to maximize efficiency. ## When to use parallelism ``` ┌──────────────────────────────────────────────────────────────────┐ │ DECISION: PARALLEL OR SEQUENTIAL ? │ ├──────────────────────────────────────────────────────────────────┤ │ │ │ PARALLEL if: │ │ - INDEPENDENT sub-tasks (no data dependency) │ │ - MERGEABLE results (combinable without conflict) │ │ - Task DECOMPOSABLE into distinct parts │ │ │ │ SEQUENTIAL if: │ │ - Result A required to start B │ │ - Modifications on the SAME files │ │ - Execution order MATTERS │ │ │ └──────────────────────────────────────────────────────────────────┘ ``` ## Parallelization patterns ### 1. Fan-Out / Fan-In ``` ┌─→ [Agent A: security audit] ─→┐ │ │ [Task] ─┼─→ [Agent B: perf audit] ─→┼─→ [Combined report] │