Tools
His Backup
OpenClaw HIS Team Configuration and Custom Plugins Backup
README
# OpenClaw HIS Team Configuration Backup
This repository contains the configuration, custom plugins, and source patches for the HIS team's OpenClaw deployment.
## Directory Structure
```
โโโ config/ # OpenClaw main configuration
โ โโโ openclaw.json
โโโ extensions/ # Custom plugins
โ โโโ bot-mention-dispatcher/ # Bot-to-bot mention dispatcher
โ โโโ letta-memory/ # Letta memory integration
โ โโโ mission-control/ # Mission control dashboard
โโโ patches/ # Source code patches for OpenClaw
โ โโโ 001-probe-botname-fix.patch # Fix bot name extraction
โ โโโ 002-monitor-namematch-fix.patch # Add name matching for mentions
โโโ agents/ # Agent configurations
โ โโโ zhugeliang/
โ โโโ liubei/
โ โโโ guanyu/
โ โโโ zhaoyun/
โ โโโ zhangfei/
โ โโโ xunyu/
โ โโโ huatuo/
โ โโโ chenlin/
โโโ skills/ # Custom skills
โโโ team-dispatch/ # Team dispatch workflow
โโโ zentao/ # Zentao integration
```
## Agents
| Agent ID | Name | Model | Role |
|----------|------|-------|------|
| zhugeliang | ่ฏธ่ไบฎ | qwen3.5-plus | System Architect |
| liubei | ๅๅค | kimi-k2.5 | Project Manager |
| guanyu | ๅ
ณ็พฝ | qwen3-coder-next | Backend Developer |
| zhaoyun | ่ตตไบ | qwen3-coder-next | Frontend Developer |
| zhangfei | ๅผ ้ฃ | qwen3-coder-next | Backend Developer |
| xunyu | ่ๅฝง | qwen3.5-plus | System Analyst |
| huatuo | ๅไฝ | qwen3.5-plus | Medical Expert |
| chenlin | ้็ณ | glm-5 | Documentation Expert |
## Patches Applied
### 001-probe-botname-fix.patch
Fixes bot name extraction from Feishu API. The API returns `app_name` but the code was looking for `bot_name`.
### 002-monitor-namematch-fix.patch
Adds name matching for bot mentions in group chats. This allows bots to be mentioned by name when the open_id doesn't match.
## Installation
1. Copy configuration:
```bash
cp config/openclaw.json ~/.openclaw/
```
2. Install extensions:
```bash
cp -r extensions/* ~/.openclaw/extensions/
```
3. Apply patches:
```bash
cd /path/to/openclaw/dist
patch -p1 < /path/to/patches/001-probe-botname-fix.patch
patch -p1 < /path/to/patches/002-monitor-namematch-fix.patch
```
## Bot Mention Dispatcher
The `bot-mention-dispatcher` plugin enables bots to dispatch messages to other bots when mentioned:
1. Bot A receives a message with @BotB
2. Plugin intercepts and triggers BotB's agent
3. BotB responds in the same conversation
Note: Due to platform limitations, bots cannot trigger other bots via @mentions. The dispatcher works around this by directly invoking the target agent.
## Date
Backup created: 2026-04-09
tools
Comments
Sign in to leave a comment