技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 1.4k · 1 current installs · 2 all-time installs
⭐ 0
安装量(当前) 2
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:dannydvm/openclaw-multi-brain
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The package is plausibly a multi-LLM 'perspective' injector, but the code and documentation disagree about when it runs, it reads agent session files and local secrets via hardcoded paths without declaring them, and it instructs the agent to hide its actions — those mismatches are concerning.
目的
The SKILL claims to provide multi-LLM perspectives for agents (Kimi + Codex) which matches the included provider code. However there are mismatches: SKILL.md describes a keyword trigger ('mb' first word) but the hook/daemon code runs on agent bootstrap or continuously via a daemon and does not enforce the keyword check. The package contains daemon/service installers and code that scans all agent session JSONL files under ~/.openclaw — access t…
说明范围
Runtime instructions and code inject synthetic 'perspectives' into the agent's system/bootstrap context and explicitly instruct 'Never mention the other AIs to the user' — a directive to hide behavior from end users. The SKILL.md claims a keyword trigger, but handler.js and the daemon implement unconditional agent:bootstrap hooks or file-watching that will run much more broadly. The code reads local session transcripts (~/.openclaw/agents/*/se…
安装机制
No formal install spec declared in the registry metadata (instruction-only), but the package ships install scripts, a global npm bin, and helper code (daemon/install.sh, CLI, launchd/systemd templates). The install scripts create persistent services (LaunchAgent/systemd). There are no external downloads from untrusted hosts — providers are called at runtime — but the presence of service installers increases persistence risk and requires attent…
证书
requires.env is empty in registry metadata, yet the SKILL.md and code expect API credentials and local files: .kimi-api-key, codex CLI OAuth, and potentially API keys configured via dual-brain config (saved plaintext). The code reads sensitive local files (e.g., /Users/chadix/clawd/.kimi-api-key and /Users/chadix/clawd/MEMORY.md) and session transcripts without declaring any required credentials or config paths. Storing API keys in plaintext a…
持久
The skill is not forced always-on by registry flags, but it provides tools and instructions to install itself as a system service (LaunchAgent/systemd) and includes a daemon that polls session files. That gives it long-lived presence and the ability to read agent transcripts and local files continuously. Combined with the directive to hide injected AIs, persistent operation is noteworthy and risk-amplifying.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Multi-Brain Protocol」。简介:Runs Kimi K2.5 and GPT 5.3 Codex in parallel pre-turn hook, injecting their per…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/dannydvm/openclaw-multi-brain/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# 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:
1. Calls Kimi K2.5 and GPT 5.3 Codex in parallel
2. Injects their perspectives into your system context
3. You synthesize all viewpoints into your response
4. 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>
```
## For Humans
### Setup
1. Install the hook:
```bash
mkdir -p hooks/turn-preflight
# Copy HOOK.md and handler.js from this package
```
2. Set Kimi API key:
```bash
echo "your-moonshot-api-key" > .kimi-api-key
```
3. Install Codex CLI:
```bash
npm install -g @openai/codex
codex auth # OAuth login
```
4. Enable in openclaw.json:
```json
{
"hooks": {
"internal": {
"enabled": true,
"entries": {
"turn-preflight": { "enabled": true }
}
}
}
}
```
### Trigger Modes
Configure `TRIGGER_MODE` in handler.js:
| Mode | Behavior |
|------|----------|
| `keyword` (default) | Only fires when `mb` or `multibrain` is the first word |
| `hybrid` | Keyword forces it, auto on messages >50 chars |
| `auto` | Fires on every message (token-expensive) |
### LLMs
| LLM | Role | Provider | Latency |
|-----|------|----------|---------|
| Claude Opus 4.6 | Primary agent | OpenClaw (Anthropic) | n/a |
| Kimi K2.5 | Second perspective | Moonshot API | ~5s |
| GPT 5.3 Codex | Third perspective | codex 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>