← Back to Plugins
Tools

His Backup

paskaa By paskaa 👁 45 views ▲ 0 votes

OpenClaw HIS Team Configuration and Custom Plugins Backup

GitHub

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

Loading comments...