From 7ac1b1a520265e4fc16e0b6df13862beb6cdd5d2 Mon Sep 17 00:00:00 2001 From: starry <115192496+sky22333@users.noreply.github.com> Date: Sat, 31 Jan 2026 00:44:40 +0800 Subject: [PATCH] Update README.md --- openclaw/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/openclaw/README.md b/openclaw/README.md index 787d15d..9afe27d 100644 --- a/openclaw/README.md +++ b/openclaw/README.md @@ -37,3 +37,24 @@ go mod tidy ``` go build -o installer.exe . ``` + +### windows版本QQ机器人插件 +安装插件 +``` +git clone https://github.com/sliverp/qqbot.git "$env:USERPROFILE\.openclaw\extensions\qqbot" + +cd "$env:USERPROFILE\.openclaw\extensions\qqbot" + +npm i +``` +添加QQ机器人参数 +``` +openclaw channels add --channel qqbot --token "AppID的值:AppSecret的值" +``` +然后重启`openclaw`即可。 + +卸载插件要先停止`openclaw`,然后删除插件 +``` +Remove-Item "$env:USERPROFILE\.openclaw\extensions\qqbot" -Recurse -Force +``` +然后重启`openclaw`即可。