Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计通过

agent-orchestratorAgent 协调器

Agent Skill

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

总安装

20,967

周安装

801

GitHub Stars

公开资料未说明

下载量

11,196
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/eddiebe147/claude-settings --skill 'Agent Orchestrator'

简介

该技能作为多代理系统的协调中枢,负责任务分解、工具调用与结果整合的全流程管理。

  • 适用于需要分布式专业知识协作的复杂任务场景,如跨代理通信与失败处理。
  • 通过智能委派子任务、管理依赖关系并合成统一输出,确保最终结果的一致性。
  • 安装前需确认权限范围与维护状态,注意可能触发联网、命令执行或文件读写操作。
  • 建议根据实际代理能力动态调整任务分配策略,避免过度依赖单一代理类型。

SKILL.md

Agent Orchestrator

The Agent Orchestrator skill coordinates multiple specialized AI agents, skills, and tools to accomplish complex tasks that benefit from distributed expertise. It acts as a conductor, delegating subtasks to appropriate agents, managing dependencies, integrating results, and ensuring coherent final outputs.

This skill understands the capabilities of available agents (general-purpose, operations-manager, specialized skills), determines optimal task decomposition, manages inter-agent communication, handles failures, and synthesizes diverse outputs into unified results. It's the meta-layer that makes multi-agent collaboration effective.

Use this skill for complex projects requiring diverse expertise, tasks that benefit from parallel execution, or workflows where specialized agents outperform general-purpose approaches.

Core Workflows

Workflow 1: Decompose Task & Delegate

  1. Analyze the complex task:

- What's the end goal? - What are the components? - What expertise is needed?

  1. Map to available agents/skills:

- Which agents have relevant capabilities? - What's each agent's specialty? - What tools/MCPs do they access?

  1. Decompose into subtasks:

- Break along expertise boundaries - Identify dependencies - Determine execution order

  1. Delegate to appropriate agents:

- Assign subtasks with clear instructions - Provide necessary context - Set success criteria - Specify output format

  1. Monitor execution:

- Track progress - Identify blockers - Handle failures

  1. Integrate results:

- Collect agent outputs - Resolve conflicts - Synthesize into coherent whole

  1. Validate final result

Workflow 2: Parallel Agent Execution

  1. Identify parallelizable subtasks:

- Which tasks are independent? - Which share no dependencies? - Which can run concurrently?

  1. Prepare parallel execution:

- Assign subtasks to agents - Provide isolated contexts - Set timeout limits

  1. Launch agents in parallel:

- Initiate all at once - Maintain separate contexts - Monitor all executions

  1. Coordinate completion:

- Wait for all to finish - Handle stragglers - Manage timeout failures

  1. Aggregate results:

- Collect all outputs - Merge related findings - Resolve inconsistencies

  1. Synthesize final output

Workflow 3: Sequential Agent Pipeline

  1. Design pipeline flow:

- Order agents by dependencies - Define handoff points - Specify data transformations

  1. Execute pipeline sequentially:

- Agent 1: Process initial input → Output A - Validate Output A - Agent 2: Process Output A → Output B - Validate Output B - Agent N: Process Output (N-1) → Final Output

  1. Manage state between agents:

- Pass relevant data forward - Maintain context where needed - Discard temporary artifacts

  1. Handle pipeline failures:

- Identify failed stage - Retry or use fallback - Don't propagate bad data

  1. Validate end-to-end result

Workflow 4: Adaptive Agent Selection

  1. Assess task requirements dynamically:

- What capabilities are needed? - What's the complexity level? - What constraints exist?

  1. Select best-fit agent:

- Match capabilities to requirements - Consider agent availability - Factor in performance history - Choose specialist over generalist when appropriate

  1. Delegate with context:

- Provide task-specific instructions - Include relevant background - Set clear expectations

  1. Evaluate agent performance:

- Did it meet criteria? - Was quality sufficient? - Was time acceptable?

  1. Learn for future selection:

- Track which agents excel at what - Note failure patterns - Refine selection logic

Workflow 5: Error Recovery & Fallback

  1. Detect agent failure:

- Task not completed - Output quality insufficient - Timeout exceeded - Error thrown

  1. Diagnose failure cause:

- Was task unclear? - Was agent wrong choice? - Was input malformed? - Was dependency unavailable?

  1. Attempt recovery:

- Retry with same agent (if transient error) - Retry with different agent (if capability mismatch) - Simplify task and retry (if too complex) - Escalate to human (if unrecoverable)

  1. Log failure and recovery
  2. Continue workflow if recovered

Quick Reference

ActionCommand/Trigger
Delegate complex task"Orchestrate agents for [task]"
Run agents in parallel"Run these tasks in parallel: [tasks]"
Create agent pipeline"Create pipeline: [agent1] → [agent2] → [agent3]"
Select best agent"Which agent should handle [task]?"
Coordinate workflow"Coordinate [workflow] across agents"
Handle agent failure"Agent [X] failed on [task], recover"
Integrate agent outputs"Synthesize outputs from [agents]"

Best Practices

  • Match Expertise to Task: Use specialized agents for specialized work

- Operations Manager for project coordination - UI Builder for component design - Database Designer for schema work - Don't use general-purpose for everything

  • Provide Clear Context: Each agent needs to understand its role

- What's the larger goal? - What's this agent's specific responsibility? - What's the expected output? - How does it fit in the workflow?

  • Manage Dependencies: Make execution order explicit

- Agent B needs Agent A's output - Agent C can run parallel to A and B - Agent D waits for B and C

  • Validate Handoffs: Don't pass bad data between agents

- Check output format - Verify completeness - Validate against schema - Fail fast if something's wrong

  • Handle Failures Gracefully: Agents will fail sometimes

- Have fallback agents - Implement retry logic - Don't cascade failures - Log for post-mortem

  • Optimize Communication: Minimize inter-agent chatter

- Pass only necessary data - Use structured formats - Avoid redundant information - Compress when appropriate

  • Monitor Progress: Know what's happening

- Track which agents are active - Identify bottlenecks - Detect failures early - Provide status updates

  • Synthesize Thoughtfully: Integrate diverse outputs coherently

- Resolve conflicts - Maintain consistency - Preserve important details - Create unified narrative

Agent Capabilities Map

Available Agents/Skills

Agent/SkillSpecialtyBest ForAvoid For
General-PurposeBroad tasksQuick tasks, general codingComplex orchestration
Operations ManagerProject coordinationWorkflows, timelines, resourcesWriting code
UI BuilderFrontend designComponents, layouts, stylingBackend logic
Database DesignerSchema designTables, relationships, RLSFrontend work
API DesignerEndpoint designRESTful APIs, validationUI/UX
Testing QATest creationE2E tests, test plansFeature development
Performance OptimizerSpeed optimizationMetrics, caching, lazy loadingInitial development
Deployment AutomationCI/CDVercel, environments, pipelinesCoding features
Prompt EngineerAI optimizationImproving prompts, AI workflowsNon-AI tasks
Skill CreatorSkill developmentBuilding new skillsDaily tasks
Workflow DesignerProcess designComplex workflowsSimple tasks
Chain BuilderPrompt sequencesMulti-step AI tasksSingle prompts

MCP/Tool Access

AgentAvailable MCPs/Tools
General-PurposeAll (Playwright, Supabase, GitHub, Firecrawl, Memory)
Operations ManagerGitHub (PRs, issues), Memory (tracking)
UI BuilderPlaywright (testing), Memory (design decisions)
Database DesignerSupabase (migrations, queries), Memory (schema)
Testing QAPlaywright (E2E), GitHub (test runs)

Orchestration Patterns

Pattern 1: Expert Panel

Task → [Expert A, Expert B, Expert C] → Synthesize → Decision

Use when: Need diverse perspectives on same problem Example: Architecture decision → [Performance expert, Security expert, Maintainability expert] → Recommendation

Pattern 2: Assembly Line

Task → Agent A → Agent B → Agent C → Output

Use when: Sequential transformations needed Example: Design → Implement → Test → Deploy

Pattern 3: Divide & Conquer

Task → Split → [Agent 1: Part A, Agent 2: Part B, Agent N: Part N] → Merge → Output

Use when: Large task divisible into independent parts Example: Multi-page app → [Agent per page] → Integrate

Pattern 4: Supervisor-Worker

Supervisor analyzes → Delegates to Workers → Workers execute → Supervisor integrates

Use when: Central coordination needed Example: Project manager → [Feature developers] → Integration

Pattern 5: Collaborative Refinement

Agent A: Draft → Agent B: Critique → Agent A: Revise → Validate → Output

Use when: Quality improves through iteration Example: Writer → Reviewer → Writer → Final

Pattern 6: Specialist Routing

Analyze task → Route to appropriate specialist → Specialist executes → Return

Use when: Different task types need different agents Example: Issue triage → [Bug to QA | Feature to Developer | Ops to DevOps]

Delegation Templates

Standard Delegation

**Agent**: [Agent name]
**Task**: [Clear, specific task description]
**Context**: [Relevant background information]
**Inputs**: [Provided data/resources]
**Expected Output**: [Format and content requirements]
**Success Criteria**: [How to know it's done well]
**Constraints**: [Limitations or requirements]
**Deadline**: [If time-sensitive]

Parallel Delegation

**Parallel Execution**: [N agents]

**Agent 1**: [Agent name]
- Task: [Task 1]
- Output: [Output 1]

**Agent 2**: [Agent name]
- Task: [Task 2]
- Output: [Output 2]

**Integration**: [How to combine outputs]

Pipeline Delegation

**Pipeline**: [Agent A] → [Agent B] → [Agent C]

**Stage 1**: [Agent A]
- Input: [Initial data]
- Task: [Transform 1]
- Output: [Intermediate 1]

**Stage 2**: [Agent B]
- Input: [Intermediate 1]
- Task: [Transform 2]
- Output: [Intermediate 2]

**Stage 3**: [Agent C]
- Input: [Intermediate 2]
- Task: [Transform 3]
- Output: [Final output]

Coordination Strategies

Real-Time Coordination

  • When: Agents need to interact during execution
  • How: Shared context, message passing, state updates
  • Trade-off: More complex but more flexible

Batch Coordination

  • When: Agents work independently, integrate at end
  • How: Collect all outputs, then merge
  • Trade-off: Simpler but less adaptive

Hierarchical Coordination

  • When: Clear authority structure
  • How: Supervisor delegates, workers report back
  • Trade-off: Clear but potentially bottlenecked

Peer-to-Peer Coordination

  • When: Agents are equals collaborating
  • How: Shared workspace, mutual awareness
  • Trade-off: Flexible but needs clear protocols

Conflict Resolution

When agents produce conflicting outputs:

  1. Identify the conflict:

- What's inconsistent? - Which agents disagree? - What's the nature of disagreement?

  1. Evaluate sources:

- Which agent is more authoritative for this? - What's the confidence level? - What's the reasoning?

  1. Resolve using strategy:

- Authority: Trust the specialist - Voting: Majority wins (if multiple agents) - Synthesis: Combine best of both - Escalate: Ask human to decide

  1. Document resolution:

- What was the conflict? - How was it resolved? - Why this choice?

Performance Optimization

Reduce Overhead

  • Don't orchestrate when single agent suffices
  • Minimize handoffs and data passing
  • Use parallel execution for independent tasks
  • Cache repeated computations

Load Balancing

  • Distribute work evenly across agents
  • Avoid bottlenecks at single agent
  • Consider agent capacity and speed
  • Use queuing for burst workloads

Failure Isolation

  • Don't let one agent failure crash workflow
  • Use circuit breakers for unreliable agents
  • Have fallback options
  • Implement timeout limits

Monitoring & Observability

Track these metrics:

  • Agent utilization: How busy is each agent?
  • Task completion time: How long per agent?
  • Success rate: Which agents succeed/fail?
  • Handoff efficiency: How smooth are transitions?
  • Integration quality: How well do outputs combine?
  • Error rate: Where do failures occur?
  • Cost: Token usage per agent

Example Orchestrations

Feature Development Workflow

**Orchestrator**: Coordinate feature development

1. **Requirements Analysis** (Operations Manager)
   - Clarify requirements
   - Define scope
   - Identify constraints

2. **Parallel Design Phase**
   - **UI Builder**: Design components
   - **Database Designer**: Design schema
   - **API Designer**: Design endpoints

3. **Integration Review** (Orchestrator)
   - Ensure designs are compatible
   - Resolve conflicts
   - Approve for implementation

4. **Implementation** (General-Purpose)
   - Build based on approved designs

5. **Quality Assurance** (Testing QA)
   - Generate E2E tests
   - Run test suite
   - Report issues

6. **Fix Issues** (General-Purpose)
   - Address failing tests

7. **Deployment** (Deployment Automation)
   - Deploy to staging
   - Verify deployment
   - Deploy to production

Content Creation Pipeline

**Orchestrator**: Create technical blog post

1. **Research** (General-Purpose + Firecrawl)
   - Gather sources
   - Extract key information

2. **Parallel Analysis**
   - **Prompt Engineer**: Analyze for clarity
   - **Workflow Designer**: Identify structure
   - **Output Formatter**: Determine format

3. **Draft** (General-Purpose)
   - Write based on research and analysis

4. **Review & Edit** (Prompt Engineer)
   - Review for quality
   - Suggest improvements

5. **Revise** (General-Purpose)
   - Apply feedback

6. **Format** (Output Formatter)
   - Format for target platform

7. **Generate Metadata** (General-Purpose)
   - SEO metadata
   - Social snippets

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.31%
按下载量换算3,170

OpenCode

24.86%
按下载量换算2,783

Gemini CLI

18.39%
按下载量换算2,059

Antigravity

13.62%
按下载量换算1,525

Cursor

7.26%
按下载量换算813

windsurf

3.35%
按下载量换算375

安全审计

Gen Agent Trust Hub

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills