Agent skill

langgraph-parallel

LangGraph parallel execution patterns. Use when implementing fan-out/fan-in workflows, map-reduce over tasks, or running independent agents concurrently.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill langgraph-parallel --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.0.0
Declared author: SkillForge
Path: skills/agent/langgraph-parallel/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Fan-Out/Fan-In Pattern
  3. Using Send API
  4. Parallel Agent Analysis
  5. Map-Reduce Pattern
  6. Error Isolation
  7. Timeout per Branch
  8. Key Decisions
  9. Common Mistakes
  10. Related Skills
  11. Capability Details
  12. fanout-pattern
  13. fanin-pattern
  14. parallel-template
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going