Oraclaw Ensemble

v1.0.0

Multi-model consensus for AI agents. Combine predictions from multiple LLMs, models, or sources into a mathematically optimal consensus. Auto-weights by hist...

0· 99·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for whatsonyourmind/oraclaw-ensemble.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Oraclaw Ensemble" (whatsonyourmind/oraclaw-ensemble) from ClawHub.
Skill page: https://clawhub.ai/whatsonyourmind/oraclaw-ensemble
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: ORACLAW_API_KEY
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install oraclaw-ensemble

ClawHub CLI

Package manager switcher

npx clawhub@latest install oraclaw-ensemble
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The skill claims to call an external ensemble service and only requests a single API key (ORACLAW_API_KEY), which is appropriate for a hosted ensemble/aggregation service. There are no unrelated environment variables, binaries, or config paths requested.
Instruction Scope
SKILL.md stays on-topic (describes ensemble inputs, outputs, rules, and pricing). It does not instruct the agent to read arbitrary files, environment variables, or system paths. One missing detail: the doc does not show the network endpoints, request/response schema, or explicit guidance on how/when to transmit user data to the external service — so the agent will need to use ORACLAW_API_KEY to call some external API, but that call is not specified here.
Install Mechanism
Instruction-only skill (no install spec, no code files). This is the lowest-risk install posture — nothing is written to disk by the skill itself.
Credentials
Only a single credential (ORACLAW_API_KEY) is required and declared as the primary credential, which is proportionate for a hosted API. No unrelated secrets or broad system credentials are requested.
Persistence & Privilege
always is false and the skill does not request system-wide persistence or modify other skills. It does permit normal autonomous invocation (platform default).
Assessment
This skill appears coherent for a hosted ensemble service but the SKILL.md omits implementation details about network calls and data handling. Before installing or enabling it for sensitive tasks: 1) Confirm where requests are sent (official oraclaw.dev API endpoints) and what data is transmitted/stored. 2) Use a least-privilege ORACLAW_API_KEY (scoped/revocable) and monitor its usage. 3) Verify billing details (USDC on Base address) if you expect production traffic. 4) Avoid sending highly sensitive PII/credentials to third-party ensemble services until you’ve confirmed their retention and privacy policies. If you want stronger assurance, ask the publisher for an example request/response format and a data handling/privacy statement.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🤝 Clawdis
EnvORACLAW_API_KEY
Primary envORACLAW_API_KEY
latestvk97cpmm7kpxq1689bx1qa3nvah83qdae
99downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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

{
  "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 }
  ]
}

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
  2. High entropy (>0.7) means models strongly disagree — flag to user before acting
  3. Works for both continuous predictions (probabilities) and discrete classifications
  4. Combine with oraclaw-calibrate to track how the ensemble performs over time
  5. 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.

Comments

Loading comments...