# [OpenClaw](https://github.com/openclaw/openclaw) ## 信息 - [Moltbot Channels](https://docs.openclaw.ai/channels) - wecom.ai.szis.com.cn - glm api-key(moltbot ): 65a739c69f8549538f52b6878d2518cd.Rr979rpfuchGF1EL - moltbot api-key: 35f9edf4b0e898b43ebf72be9280546746460954290ea5ac█ - Gateway password: Arno2026!1522 - [OpenClaw 的独特之处](https://zread.ai/openclaw/openclaw) ## 部署 - [MoltBot(原moltbot)安装指南,接入企微、飞书、钉钉、QQ四大主流社交软件](https://www.cnblogs.com/runyuai/p/19547053) - [玩转Lighthouse|Moltbot一键秒级部署指南](https://cloud.tencent.com/developer/article/2624003) - [云上Moltbot接入企业微信完全指南](https://cloud.tencent.com/developer/article/2625147) - [云上Moltbot接入QQ完全指南](https://cloud.tencent.com/developer/article/2625097) - [云上Moltbot接入飞书保姆级教程](https://cloud.tencent.com/developer/article/2625073) - [云上Moltbot接入钉钉完全指南](https://cloud.tencent.com/developer/article/2625121) - [Moltbot Connector](https://github.com/Tokeii0/moltbot_connector_qqbot) - [让 Mac mini 一夜卖断货的开源项目,到底有多邪门?拆解 moltbot / Moltbot 的技术架构](https://juejin.cn/post/7599951933594484746) ```bash CONFIG_PATH=/workspace/arno/moltbot/.member/moltbot.json npm install -g moltbot@2026.1.27-beta.1 # 查看版本: moltbot --version # 初始化配置信息 moltbot onboard --install-daemon # 1. 安装插件 moltbot plugins install @william.qian/simple-wecom # 2. 启用插件 moltbot plugins enable simple-wecom # 3. 配置企业微信(必需) moltbot config set channels.simple-wecom.corpid "ww1234567890abcdef" moltbot config set channels.simple-wecom.corpsecret "your-corp-secret" moltbot config set channels.simple-wecom.token "your-token" moltbot config set channels.simple-wecom.encodingAESKey "your-aes-key" moltbot config set channels.simple-wecom.enabled true # 4. 配置 Gateway moltbot config set gateway.mode "local" moltbot config set gateway.bind "0.0.0.0" moltbot config set gateway.port 18789 # 5. 重启 Gateway moltbot gateway status moltbot gateway restart # 6. 验证 moltbot channels status ``` ```json "wecom": { "enabled": true, "webhookPath": "/wecom", "token": "填入创建企业微信机器人的页面,生成的Token", "encodingAESKey": "填入创建企业微信机器人的页面,生成的encodingAESKey", "receiveId": "", "dm": { "policy": "pairing" } } ```