Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

parallel-coordinator并行协调器

Agent Skill

parallel-coordinator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

256

周安装

11

GitHub Stars

5

下载量

90
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:parallel-coordinator(并行协调器)
来源仓库:https://github.com/dangeles/claude
仓库路径:skills/parallel-coordinator
安装命令:
npx skills add https://github.com/dangeles/claude --skill parallel-coordinator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dangeles/claude --skill parallel-coordinator

简介

用于查找、检索和筛选相关信息,支持基于关键词或任务场景快速定位候选结果。

  • 适用于需要信息收集、线索追踪或研究支持的场景,帮助 Agent 高效获取目标内容。
  • 通过 npx skills add 命令从指定仓库安装,建议结合原始 README 核验具体用法。
  • 使用前需确认权限范围、维护状态,并评估是否涉及联网、命令执行或文件读写操作。
  • parallel-coordinator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Parallel Coordinator

Purpose

The Parallel Coordinator skill enables orchestration of multiple independent agents executing simultaneously. By leveraging Claude's native capability to execute multiple tool calls in a single message, this skill maximizes throughput when users present requests containing multiple independent tasks.

This skill transforms sequential bottlenecks into parallel workflows, reducing overall completion time and improving user experience when handling complex, multi-faceted requests.

When to Use This Skill

Invoke the Parallel Coordinator when:

  1. Multiple Independent Tasks: The user's request contains 2 or more tasks that can be completed without interdependencies
  2. Parallelizable Operations: Tasks involve I/O-bound operations (file reading, web searches, API calls) that benefit from concurrent execution
  3. Multi-Domain Requests: The request spans different domains or contexts (e.g., "analyze this dataset AND review that codebase AND research this topic")
  4. Batch Operations: The user needs the same operation performed on multiple independent targets

Clear Indicators for Use

  • User employs conjunctions suggesting independence: "and also", "separately", "in parallel"
  • Request contains numbered or bulleted lists of distinct tasks
  • Tasks operate on different files, datasets, or domains
  • No shared mutable state between tasks
  • Results can be aggregated after completion without cross-dependencies

When NOT to Use

Do not use this skill when:

  • Tasks have sequential dependencies (Task B requires output from Task A)
  • Tasks modify shared resources that could create race conditions
  • A single cohesive task that happens to involve multiple steps
  • User explicitly requests sequential execution
  • Tasks are trivial and parallelization overhead exceeds benefits

Core Workflow

The Parallel Coordinator follows a structured four-phase approach:

Phase 1: Task Decomposition and Analysis

Objective: Break down the user's request into discrete, analyzable units.

  1. Parse the Request: Identify all distinct tasks within the user's message
  2. Extract Requirements: For each task, determine:

- Inputs required - Expected outputs - Resources needed (files, APIs, tools) - Estimated complexity

  1. Document Task Boundaries: Clearly define where one task ends and another begins

Phase 2: Dependency Verification

Objective: Ensure tasks are truly independent and can safely execute in parallel.

  1. Check Data Dependencies: Verify no task requires output from another
  2. Identify Shared Resources: Flag any files, databases, or APIs used by multiple tasks
  3. Assess Resource Conflicts: Determine if shared resources are read-only (safe) or mutable (unsafe)
  4. Validate Independence: Confirm each task can complete successfully without waiting for others

Decision Point: If dependencies exist, either:

  • Restructure into independent phases (Phase 1 tasks run parallel, then Phase 2 tasks run parallel)
  • Abort parallelization and execute sequentially

Phase 3: Parallel Execution

Objective: Launch all independent tasks simultaneously using Claude's parallel tool execution.

  1. Create Task Definitions: Use TaskCreate to define each independent task with:

- Clear, actionable subject in imperative form - Detailed description including context and acceptance criteria - Present continuous activeForm for progress tracking

  1. Execute in Single Message: Make all TaskCreate calls within one function_calls block to ensure true parallel execution
  2. Monitor Progress: Track task completion status without blocking

Technical Implementation: Execute multiple tool calls simultaneously in a single function_calls block. This is Claude's key strength - the ability to fire off multiple independent operations at once.

Phase 4: Result Integration

Objective: Aggregate outputs from parallel tasks into a cohesive response.

  1. Collect Results: Gather outputs from all completed tasks
  2. Identify Cross-Task Insights: Look for patterns, contradictions, or synergies across results
  3. Synthesize Response: Combine individual results into a unified, coherent answer
  4. Validate Completeness: Ensure all original user requirements are addressed

Parallel Execution Patterns

Pattern 1: Homogeneous Batch Processing

Use Case: Apply the same operation to multiple independent targets.

Example: "Analyze code quality in files A.py, B.py, and C.py"

Approach:

  • Create identical task templates
  • Parameterize by target (file, dataset, etc.)
  • Execute all instances simultaneously
  • Compare results in aggregation phase

Benefits:

  • Reduces total time from 3T to T (where T is single task duration)
  • Enables comparative analysis across targets

Pattern 2: Heterogeneous Multi-Domain

Use Case: Perform different operations across unrelated domains.

Example: "Research quantum computing papers, analyze sales data, and review frontend code"

Approach:

  • Define domain-specific tasks with unique requirements
  • Ensure no shared resources between domains
  • Execute all tasks simultaneously
  • Present results in structured, domain-separated format

Benefits:

  • Maximizes throughput on diverse requests
  • Reduces context switching for user

Pattern 3: Fork-Join with Independent Forks

Use Case: Parallel exploration followed by synthesis.

Example: "Search for solutions in documentation, Stack Overflow, and GitHub issues, then summarize"

Approach:

  • Fork Phase: Launch parallel search tasks
  • Join Phase: After all complete, synthesize findings
  • Ensure fork tasks are truly independent

Benefits:

  • Comprehensive exploration in minimal time
  • Enables better synthesis from multiple sources

Pattern 4: Pipeline Parallelism

Use Case: Multiple independent pipelines executing simultaneously.

Example: "Process Dataset A (load, clean, analyze) AND Dataset B (load, clean, analyze) AND Dataset C (load, clean, analyze)"

Approach:

  • Each pipeline is a sequential chain within itself
  • Pipelines are independent of each other
  • Execute all pipelines simultaneously
  • Each pipeline maintains internal order while running parallel to others

Benefits:

  • Parallelizes at pipeline level, not step level
  • Maintains data integrity within each pipeline

Handling Shared Resources

Read-Only Resources (Safe for Parallel Access)

When multiple tasks read from the same resource without modification:

Acceptable Scenarios:

  • Multiple tasks reading the same configuration file
  • Parallel web searches using the same search API
  • Multiple analyses of the same immutable dataset

Best Practices:

  • Document shared read dependencies
  • Verify resource won't change during execution
  • Consider caching if resource access is expensive

Mutable Resources (Unsafe - Requires Coordination)

When tasks might modify shared state:

Problematic Scenarios:

  • Multiple tasks editing the same file
  • Parallel writes to the same database
  • Concurrent modifications to shared data structures

Mitigation Strategies:

  • Partition Resources: Divide mutable resource into independent sections
  • Sequence Critical Sections: Parallelize non-conflicting parts, sequence conflicting parts
  • Abort Parallelization: Execute sequentially if conflicts are unavoidable

Examples of Effective Parallelization

Example 1: Multi-Modal Research Task

User Request: "Research recent advances in transformer architectures, analyze sentiment in customer reviews dataset, and create a visualization of our Q4 sales data"

Parallelization Strategy:

Task 1 - Research Agent:

  • Subject: "Research transformer architecture advances"
  • Actions: Web search, documentation review, summarization
  • Resources: Web search API (read-only, shared safe)

Task 2 - Analysis Agent:

  • Subject: "Analyze sentiment in customer reviews"
  • Actions: Load dataset, apply sentiment analysis, generate statistics
  • Resources: reviews.csv (read-only)

Task 3 - Visualization Agent:

  • Subject: "Create Q4 sales visualization"
  • Actions: Load sales data, generate charts, export images
  • Resources: sales_q4.csv (read-only)

Independence Verification:

  • No data dependencies between tasks
  • All resources are read-only
  • Results can be aggregated independently

Expected Outcome: Completion in time T (single task duration) vs. 3T (sequential)

Example 2: Parallel Literature Review

User Request: "Find papers on: neural architecture search, federated learning, and explainable AI"

Parallelization Strategy:

Three Parallel Search Agents:

  • Each conducts independent literature search on one topic
  • No shared mutable state
  • Results aggregated for comparative analysis

Benefits:

  • Comprehensive coverage in 1/3 the time
  • Enables cross-topic insights during synthesis

Example 3: Multi-Codebase Analysis

User Request: "Review code quality in our auth service, payment service, and notification service"

Parallelization Strategy:

Three Parallel Review Agents:

  • Each analyzes one service codebase
  • Independent file systems (no conflicts)
  • Consistent evaluation criteria across all agents

Synthesis Phase:

  • Compare quality metrics across services
  • Identify common patterns and anti-patterns
  • Prioritize remediation efforts

Anti-Patterns and Common Pitfalls

Anti-Pattern 1: Premature Parallelization

Problem: Attempting to parallelize tasks with hidden dependencies.

Example: "Analyze file A, then use those insights to process file B" - These tasks appear independent but have implicit data dependency.

Solution: Always perform explicit dependency analysis before parallelizing.

Anti-Pattern 2: Over-Granular Parallelization

Problem: Creating too many tiny parallel tasks with high coordination overhead.

Example: Parallelizing 20 tasks that each take 2 seconds - coordination overhead exceeds benefits.

Solution: Aim for 2-5 substantial tasks. Batch small operations into larger tasks.

Anti-Pattern 3: Ignoring Shared Mutable State

Problem: Multiple tasks modifying the same resource concurrently.

Example: Three tasks appending to the same output file without coordination.

Solution: Either partition the resource or sequence the conflicting operations.

Anti-Pattern 4: False Independence

Problem: Tasks appear independent but share implicit coupling.

Example: Two tasks analyzing the same dataset where first performs cleaning that second assumes - if second runs before first, results are incorrect.

Solution: Make all dependencies explicit. If implicit coupling exists, tasks are not independent.

Integration and Result Synthesis

Collecting Results

After all parallel tasks complete:

  1. Verify Completion: Confirm all tasks reached completion state
  2. Check for Errors: Identify any failures or partial completions
  3. Gather Outputs: Collect all results, maintaining task identity

Synthesis Strategies

Aggregation: When results are similar in nature:

  • Combine into unified list or table
  • Calculate summary statistics
  • Identify outliers or anomalies

Comparison: When results should be evaluated against each other:

  • Highlight similarities and differences
  • Rank or prioritize based on criteria
  • Identify best practices or concerns

Integration: When results form parts of a larger whole:

  • Identify connections between findings
  • Construct comprehensive narrative
  • Address user's original intent holistically

Presenting Results

Structure the final response to:

  1. Summarize Overall Findings: High-level overview addressing user's request
  2. Detail Individual Results: Present each task's output with clear attribution
  3. Highlight Cross-Task Insights: Note patterns, contradictions, or synergies discovered
  4. Provide Actionable Recommendations: Based on complete picture from all tasks

Technical Considerations

Claude Parallel Execution

Claude has native support for executing multiple tool calls in a single message. Key characteristics:

  • True Parallelism: When multiple independent tool calls are provided in one function_calls block, they execute concurrently
  • I/O Optimization: Particularly effective for I/O-bound operations (file reads, web requests)
  • No Explicit Threading: Parallelism is handled automatically by the execution environment
  • Result Ordering: Results return in completion order, not call order

Best Practices for Tool Calls

  1. Batch Independent Calls: Group all independent tool calls in one function_calls block
  2. Avoid Sequential Calls: Don't make a call, wait for result, then make another if they could be parallel
  3. Use TaskCreate for Complex Work: For substantial tasks that may involve multiple steps, use Task tools to maintain coordination
  4. Monitor, Don't Block: Check task status without waiting synchronously

Performance Expectations

Ideal Scenarios (near-linear speedup):

  • File reading operations (Read tool)
  • Web searches (WebSearch tool)
  • Independent code analysis tasks
  • Parallel API calls

Limited Speedup Scenarios:

  • CPU-bound operations (computation)
  • Tasks with hidden dependencies
  • Very short tasks (coordination overhead dominates)

Skill Invocation Contract

When this skill is invoked:

Input Requirements:

  • User request containing 2+ potentially independent tasks
  • Clear specification of what each task should accomplish
  • Sufficient context to identify dependencies

Skill Responsibilities:

  1. Analyze request for parallelization opportunities
  2. Verify task independence through dependency analysis
  3. Create and launch parallel tasks using appropriate tools
  4. Monitor execution progress
  5. Integrate results into cohesive response
  6. Present findings in structured, actionable format

Output Guarantees:

  • All independent tasks executed in parallel
  • Results from all tasks included in final response
  • Dependencies respected (no race conditions)
  • Clear attribution of results to tasks
  • Synthesis that addresses original user intent

Failure Modes:

  • If dependencies detected: Restructure or abort parallelization
  • If task fails: Report failure, continue with successful tasks
  • If resources conflict: Sequence conflicting operations

Conclusion

The Parallel Coordinator skill unlocks Claude's ability to execute multiple independent operations simultaneously. By carefully analyzing task dependencies, structuring parallel execution, and synthesizing results, this skill dramatically reduces completion time for multi-faceted requests.

Use this skill when independence is clear, dependencies are absent, and the user's request naturally decomposes into concurrent operations. The result is faster, more efficient responses that maintain quality while maximizing throughput.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.76%
按下载量换算30

Claude

31.18%
按下载量换算28

Cursor

20.21%
按下载量换算18

Gemini CLI

8.63%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills