Best use case
eo-ability-multi-expert is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
多专家编排能力(Multi-Expert Orchestrator),协调多个专家并行/串行工作,结果自动汇流
Teams using eo-ability-multi-expert should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/eo-ability-multi-expert/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How eo-ability-multi-expert Compares
| Feature / Agent | eo-ability-multi-expert | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
多专家编排能力(Multi-Expert Orchestrator),协调多个专家并行/串行工作,结果自动汇流
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# eo-ability-multi-expert
> 多专家编排能力 (Multi-Expert Orchestrator) - 协调多个专家并行/串行工作
## 一句话介绍
EO核心编排能力,多专家并行启动、结果自动汇流、依赖管理、冲突解决。
## 核心功能
- **多专家并行**: 多个专家同时启动
- **结果汇流**: 专家输出自动合并
- **依赖管理**: 专家执行顺序控制
- **冲突解决**: 多专家结果冲突处理
- **Checkpoint**: 每N个专家后自动Checkpoint
## 使用方法
```bash
# 启动多专家协作
/dream "开发博客系统"
// 或通过 Team Manager
创建团队: 博客开发团队
添加专家: Architect, Backend, Frontend, QA
启动协作: parallel
```
## 与EO插件的协同
- 被所有 eo-workflow-* 调用
- 是 EO 的核心差异化能力
## 独立运行模式(有EO vs 无EO)
| 模式 | 能力 |
|------|------|
| **有EO插件** | 真实多Agent并行、sessions API调用、结果汇流 |
| **无插件(基础)** | LLM模拟多专家、串行执行 |
## 执行流程
```
用户: /dream "开发博客系统"
│
▼
┌─────────────────────────────────────┐
│ Multi-Expert Orchestrator │
│ 解析任务 → 分解 → 调度 │
└─────────────────┬───────────────────┘
│
┌─────────────┼─────────────┐
▼ ▼ ▼
┌────────┐ ┌────────┐ ┌────────┐
│Architect│ │Backend │ │Frontend│
│ Agent │ │ Agent │ │ Agent │
└────┬────┘ └────┬────┘ └────┬────┘
│ │ │
└────────────┼────────────┘
▼
┌──────────────┐
│ Result Merge │
│ + Checkpoint │
└──────────────┘
```
## Interface
### Input
```typescript
interface MultiExpertInput {
experts: ExpertRequest[]
strategy: 'parallel' | 'sequential' | 'pipeline'
checkpointAfter?: number // 每 N 个专家后 Checkpoint
timeout?: number // 超时时间(ms)
}
```
### Output
```typescript
interface MultiExpertOutput {
results: ExpertResult[]
checkpoints: CheckpointResult[]
summary: string
duration: number
}
```
---
*🦞⚙️ 钢铁龙虾军团*Related Skills
afrexai-observability-engine
Complete observability & reliability engineering system. Use when designing monitoring, implementing structured logging, setting up distributed tracing, building alerting systems, creating SLO/SLI frameworks, running incident response, conducting post-mortems, or auditing system reliability. Covers all three pillars (logs/metrics/traces), alert design, dashboard architecture, on-call operations, chaos engineering, and cost optimization.
ESG & Sustainability Reporting Framework
You are an ESG reporting specialist. Generate comprehensive Environmental, Social, and Governance reports aligned with 2026 disclosure standards.
Agent Observability & Monitoring
Score, monitor, and troubleshoot AI agent fleets in production. Built for ops teams running 1-100+ agents.
stability-ai
Generate high-quality images via Stability AI API (SDXL, SD3, Stable Image Core). Use when user asks to "generate image", "make a picture", or "draw this".
eo-ability-rag
RAG知识共享能力,跨项目共享专家经验和最佳实践,基于语义搜索快速检索
eo-ability-plan
项目规划能力,调用Planner专家生成WBS任务分解、里程碑计划、团队组成
eo-ability-memory
主动记忆能力(Proactive Memory),跨会话延续用户偏好、项目上下文,记住导师要求和格式规范
eo-ability-dream
自我进化能力(Dream Module),空闲时自动分析失败案例,学习新模式,更新Pattern库
eo-ability-code-review
代码审查能力,调用CodeReviewer专家进行安全、性能、风格全面审查,输出问题列表和改进建议
eo-ability-architect
架构设计能力,调用Architect专家设计系统架构、技术选型、风险评估
multi-agent-status
Cross-agent health monitoring for multi-host OpenClaw deployments. Each agent pushes structured status reports (JSON) to a central location. A PM/monitoring agent reads them and alerts on failures. Works across Windows, Linux, and mixed environments.
agent-portability-checker
Audit agent skills for platform lock-in and cross-agent compatibility. Use when checking if a skill is portable, making a skill work across multiple agents (OpenClaw, Claude Code, Codex, etc.), fixing hardcoded paths, or preparing a skill for multi-platform distribution. Checks for hardcoded platform paths, missing env var support, and platform-specific dependencies.