langgraph-parallel
LangGraph parallel execution patterns. Use when implementing fan-out/fan-in workflows, map-reduce over tasks, or running independent agents concurrently.
npx skills add majiayu000/claude-skill-registry --skill langgraph-parallel --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# LangGraph Parallel Execution Run independent nodes concurrently for performance. ## When to Use - Independent agents can run together - Map-reduce over task lists - Scatter-gather patterns - Performance optimization ## Fan-Out/Fan-In Pattern ```python from langgraph.graph import StateGraph def fan_out(state): """Split work into parallel tasks.""" state["tasks"] = [{"id": 1}, {"id": 2}, {"id": 3}] return state def worker(state): """Process one task.""" task = state["current_task"] result = process(task) return {"results": [result]} def fan_in(state): """Combine parallel results.""" combined = aggregate(state["results"]) return {"final": combined} workflow = StateGraph(State) workflow.add_node("fan_out", fan_out) workflow.add_node("worker", worker) workflow.add_node("fan_in", fan_in) workflow.add_edge("fan_out", "worker") workflow.add_edge("worker", "fan_in") # Waits for all workers ``` ## Using Send API ```python from langgraph.constants import Send def router(state): """Route to multiple workers in parallel.""" return [ Send("worker", {"task": task}) for task in state["tasks"] ] workflow.add_conditional_edges("router", router) ``` ## Parallel Agent Analysis ```python from typing
- When to Use
- Fan-Out/Fan-In Pattern
- Using Send API
- Parallel Agent Analysis
- Map-Reduce Pattern
- Error Isolation
- Timeout per Branch
- Key Decisions
- Common Mistakes
- Related Skills
- Capability Details
- fanout-pattern
- fanin-pattern
- parallel-template
What does the langgraph-parallel skill do?
LangGraph parallel execution patterns. Use when implementing fan-out/fan-in workflows, map-reduce over tasks, or running independent agents concurrently.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill langgraph-parallel --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
