Install
openclaw skills install wechat-openclaw-skill提供微信中一键安装并绑定OpenClaw助手,实现多会话管理和文本、图片、文件等消息的微信端AI聊天功能。
openclaw skills install wechat-openclaw-skill基于B站视频《终于可以在微信中和你的 OpenClaw 聊天了,保姆级一键安装教程》的学习,提供完整的微信集成OpenClaw解决方案。实现一键安装、扫码绑定、微信聊天功能。
# 运行一键安装
node scripts/install.js
# 或使用官方命令
npx -y @tencent-weixin/openclaw-weixin-cli@latest install
wechat-openclaw-skill/
├── SKILL.md # 技能说明
├── scripts/ # 安装脚本
│ ├── install.js # 一键安装脚本
│ ├── check.js # 环境检查脚本
│ └── monitor.js # 连接监控脚本
├── configs/ # 配置文件
│ └── wechat-config.json # 微信插件配置
├── docs/ # 文档
│ └── WEIXIN-GUIDE.md # 完整集成指南
└── examples/ # 示例
└── usage-example.js # 使用示例
node scripts/check.js
node scripts/install.js
A: 前往微信设置 → 关于微信 → 检查更新,升级到8.0.70或更高版本。
A: 尝试备用安装命令:
openclaw plugins install "@tencent-weixin/openclaw-weixin"
A: 检查OpenClaw网关是否运行:
openclaw gateway status
openclaw gateway start
A: Windows用户使用:
openclaw plugins install "@tencent-weixin/openclaw-weixin"
openclaw config set plugins.entries.openclaw-weixin.enabled true
openclaw channels login --channel openclaw-weixin
node scripts/monitor.js
# 查看插件状态
openclaw plugins list
# 更新插件
openclaw plugins update "@tencent-weixin/openclaw-weixin"
# 禁用插件
openclaw config set plugins.entries.openclaw-weixin.enabled false
# 查看连接日志
openclaw logs --channel openclaw-weixin
# 查看错误日志
openclaw logs --level error
基于MIT许可证开源,遵循微信开放平台规范。