← 返回
AI智能 中文

Openclaw Model Orchestrator

Multi-LLM orchestration for OpenClaw with fan-out, pipeline, and consensus patterns. Dispatches tasks across 40+ models using AAHP v3 inspired handoffs.
面向OpenClaw的多模型编排,支持扇出、管道和共识模式;通过AAHP v3启发的交接机制在40+模型间调度任务。
homeofe
AI智能 clawhub v0.1.1 2 版本 100000 Key: 无需
★ 0
Stars
📥 516
下载
💾 14
安装
2
版本
#latest

概述

OpenClaw Model Orchestrator

Dispatch tasks across multiple LLMs from chat. Uses AAHP v3 structured handoffs for minimal token overhead.

Orchestration Modes

Fan-Out

Split a task into parallel subtasks, each executed by a different model.

A planner model decomposes the task, workers execute in parallel, a reviewer merges results.

/orchestrate --mode fan-out --task "Build a REST API with auth" --planner copilot-opus --workers copilot52c,grokfast --reviewer copilot-sonnet46

Pipeline

Chain models sequentially. Each model refines the previous model's output.

Ideal for plan -> implement -> review -> polish workflows.

/orchestrate --mode pipeline --task "Design and implement a caching layer" --planner copilot-opus --workers copilot52c,copilot-sonnet46 --reviewer copilot-opus

Consensus

Send the same question to multiple models, then synthesize the best answer.

Identifies agreement, disagreement, and unique insights across models.

/orchestrate --mode consensus --task "What are the security risks of this API design?" --workers copilot-opus,gemini25,sonnet --reviewer copilot-opus

Smart Recommendations

The orchestrator auto-classifies tasks and recommends optimal model combinations:

/orchestrate recommend "Build a REST API with JWT auth"

Returns: task classification, recommended planner/workers/reviewer, reasoning, and a ready-to-run command.

Use help as any flag value for context-aware recommendations:

/orchestrate --task "Audit security" --planner help

Task Profiles

Pre-configured model combinations optimized for common task types:

ProfilePlannerWorkersReviewerUse Case
-----------------------------------------------
codingcopilot-opuscopilot52c, grokfastcopilot-sonnet46Feature development
researchgemini25gemini-flash, copilot-flashcopilot-opusAnalysis, investigation
securitycopilot-opuscopilot-sonnet46, gemini25sonnetSecurity audits
reviewcopilot-opuscopilot-sonnet46, copilot-sonnetcopilot-opusCode/design review
bulkhaikucopilot-flash, gemini25-flash, gpt5minihaikuMass operations

AAHP v3 Integration

All model-to-model communication uses structured AAHP v3 handoff objects instead of raw chat history. This achieves up to 98% token reduction compared to naive context passing. Each handoff contains:

  • Task context (only relevant information)
  • Routing metadata (source/target model, mode)
  • Differential state (only what changed)
  • Constraints (output format, scope limits)

Commands

CommandDescription
----------------------
/orchestrate helpShow help and available modes
/orchestrate modelsList all available models with aliases
/orchestrate recommend "task"Get model recommendations for a task
/orchestrate --task "..." [flags]Execute orchestration

Configuration

In openclaw.plugin.json:

{
  "config": {
    "defaultPlanner": "copilot-opus",
    "defaultReviewer": "copilot-sonnet46",
    "defaultWorkers": ["copilot52c", "grokfast", "copilot51"],
    "maxConcurrent": 4,
    "taskProfiles": { ... }
  }
}

版本历史

共 2 个版本

  • v0.1.1 当前
    2026-05-20 04:59 安全 安全
  • v0.1.0
    2026-03-30 05:39 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Openclaw Homeassistant

homeofe
通过 Home Assistant 控制智能家居设备:灯光、气候、媒体、窗帘、场景、传感器、自动化等。34 个工具,具有只读和域级权限。
★ 1 📥 1,788
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 712 📥 243,903
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,358 📥 318,511