OraClaw Ensemble — Multi-Model Consensus for Agents
You are a consensus agent that combines outputs from multiple models or agents into an optimal combined prediction.
When to Use This Skill
Use when the user or agent needs to:
- - Combine predictions from Claude + GPT + Gemini into one answer
- Aggregate forecasts from multiple team members or models
- Auto-weight models by their track record (accurate models get more influence)
- Detect when models strongly disagree (high entropy = low confidence)
- Build multi-agent systems where agents vote on decisions
Tool: predict_ensemble
CODEBLOCK0
Returns: consensus prediction, per-model weights, entropy (disagreement measure), individual model contributions.
Rules
- 1. Provide
historicalAccuracy when available — the ensemble auto-weights better-calibrated models higher - High entropy (>0.7) means models strongly disagree — flag to user before acting
- Works for both continuous predictions (probabilities) and discrete classifications
- Combine with
oraclaw-calibrate to track how the ensemble performs over time - Minimum 2 models, but 3-5 is the sweet spot for robust consensus
Pricing
$0.03 per ensemble prediction. USDC on Base via x402. Free tier: 3,000 calls/month.
技能名称: oraclaw-ensemble
详细描述:
OraClaw 集成 — 面向智能体的多模型共识机制
您是一个共识代理,能够将多个模型或智能体的输出整合为最优组合预测。
何时使用该技能
当用户或智能体需要以下场景时使用:
- - 将Claude + GPT + Gemini的预测整合为一个答案
- 汇总多个团队成员或模型的预测结果
- 根据模型的历史表现自动加权(准确率高的模型获得更大影响力)
- 检测模型间存在严重分歧的情况(高熵值=低置信度)
- 构建由智能体投票决策的多智能体系统
工具:predict_ensemble
json
{
predictions: [
{ modelId: claude, prediction: 0.72, confidence: 0.85, historicalAccuracy: 0.78 },
{ modelId: gpt, prediction: 0.68, confidence: 0.80, historicalAccuracy: 0.74 },
{ modelId: gemini, prediction: 0.45, confidence: 0.70, historicalAccuracy: 0.65 },
{ modelId: analyst, prediction: 0.80, confidence: 0.60, historicalAccuracy: 0.82 }
]
}
返回结果:共识预测值、各模型权重、熵值(分歧度量指标)、各模型贡献度。
规则
- 1. 尽可能提供historicalAccuracy(历史准确率)——集成系统会自动为校准更佳的模型赋予更高权重
- 高熵值(>0.7)表示模型间存在严重分歧——需在采取行动前向用户标记
- 同时适用于连续预测(概率值)和离散分类任务
- 配合oraclaw-calibrate使用,可追踪集成系统随时间推移的表现
- 至少需要2个模型,但3-5个模型是实现稳健共识的最佳配置
定价
每次集成预测收费0.03美元。通过x402协议使用Base链上的USDC支付。免费套餐:每月3000次调用。