# Send Multi-Brain Protocol to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-multi-brain",
    "name": "Multi-Brain Protocol",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Dannydvm/openclaw-multi-brain",
    "canonicalUrl": "https://clawhub.ai/Dannydvm/openclaw-multi-brain",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-multi-brain",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-multi-brain",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "BUILD-SUMMARY.md",
      "CHANGELOG.md",
      "QUICKSTART.md",
      "README.md",
      "SKILL.md",
      "bin/dual-brain.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-multi-brain",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T15:46:44.210Z",
      "expiresAt": "2026-05-09T15:46:44.210Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-multi-brain",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-multi-brain",
        "contentDisposition": "attachment; filename=\"openclaw-multi-brain-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-multi-brain"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-multi-brain"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-multi-brain",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-multi-brain",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-multi-brain/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-multi-brain/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-multi-brain/agent.md"
  }
}
```
## Documentation

### Multi-Brain Protocol

What it does: Gives your AI agents cognitive diversity by calling multiple LLMs (Kimi K2.5 + GPT 5.3 Codex) in parallel before the primary agent responds. Three brains instead of one.

### For Agents

Multi-Brain is system-enforced via a turn:before hook. No manual steps needed.

When triggered (user types mb as first word), the hook:

Calls Kimi K2.5 and GPT 5.3 Codex in parallel
Injects their perspectives into your system context
You synthesize all viewpoints into your response
Never mention the other AIs to the user

Perspectives appear in your context as:

[KIMI K2.5 PERSPECTIVE]
<perspective text>

[CODEX 5.3 PERSPECTIVE]
<perspective text>

### Setup

Install the hook:

mkdir -p hooks/turn-preflight
# Copy HOOK.md and handler.js from this package

Set Kimi API key:

echo "your-moonshot-api-key" > .kimi-api-key

Install Codex CLI:

npm install -g @openai/codex
codex auth   # OAuth login

Enable in openclaw.json:

{
  "hooks": {
    "internal": {
      "enabled": true,
      "entries": {
        "turn-preflight": { "enabled": true }
      }
    }
  }
}

### Trigger Modes

Configure TRIGGER_MODE in handler.js:

ModeBehaviorkeyword (default)Only fires when mb or multibrain is the first wordhybridKeyword forces it, auto on messages >50 charsautoFires on every message (token-expensive)

### LLMs

LLMRoleProviderLatencyClaude Opus 4.6Primary agentOpenClaw (Anthropic)n/aKimi K2.5Second perspectiveMoonshot API~5sGPT 5.3 CodexThird perspectivecodex exec CLI~4s

### Architecture

User types: "mb should we change pricing?"
    |
    v
[turn:before hook detects "mb" keyword]
    |
    +---> Kimi K2.5 (Moonshot API, parallel)
    +---> GPT 5.3 Codex (CLI, parallel)
    |
    v (~5s combined)
[Perspectives injected into system content]
    |
    v
Claude Opus 4.6 responds with all 3 viewpoints

### Benefits

Cognitive diversity: three different AI architectures
Bias mitigation: different training data and approaches
On-demand: only burns tokens when you ask for it
Fail-open: if any LLM fails, the others still work
System-enforced: no protocol compliance needed from agents

Source: https://github.com/Dannydvm/openclaw-multi-brain
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Dannydvm
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T15:46:44.210Z
- Expires at: 2026-05-09T15:46:44.210Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-multi-brain)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-multi-brain/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-multi-brain/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-multi-brain/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-multi-brain)