name: qqbot-multi-account slug: qqbot-multi-account version: 1.0.1 author: OpenClaw Community description: QQBot 多账号运维排障技能。用于 OpenClaw 多 Bot、多 Agent 场景下的账号绑定检查、重复会话诊断、主动发送与本地插件打包导出。触发词:QQBot多账号、双机器人、双Agent、账号绑定、重复会话、appId隔离。 metadata: openclaw: emoji: 🤖 tags: [qqbot, multi-account, multi-agent, routing, troubleshooting, diagnostics]
A publishable skill for OpenClaw operators who run QQBot in multi-account, multi-agent environments.
Install the QQBot plugin first:
openclaw plugins install @tencent-connect/openclaw-qqbot@latest
K1 -> main, K2 -> agent2 style deploymentsbindings, accounts, appId, gateway port, and runtime stateqqbot plugin as a portable archive for handoff or backup{
"bindings": [
{
"agentId": "main",
"match": {
"channel": "qqbot",
"accountId": "K1"
}
},
{
"agentId": "agent2",
"match": {
"channel": "qqbot",
"accountId": "K2"
}
}
],
"channels": {
"qqbot": {
"enabled": true,
"accounts": {
"K1": {
"appId": "YOUR_APP_ID_1",
"clientSecretFile": "/path/to/qqbot_k1.secret",
"name": "K1"
},
"K2": {
"appId": "YOUR_APP_ID_2",
"clientSecretFile": "/path/to/qqbot_k2.secret",
"name": "K2"
}
}
}
}
}
If one QQ message reaches two agents, do not assume the bindings are wrong first. In multi-account deployments, the plugin runtime must isolate account state by appId, especially:
If these are global instead of account-scoped, one account can consume another account's event stream and create duplicate sessions.
bash {baseDir}/scripts/inspect-qqbot.sh
references/multi-account-routing.mdreferences/proactive-send.md小葱技能站7w4.net每天更新,海量AI技能等你发现。
bash {baseDir}/scripts/export-local-qqbot.sh
By default this writes a portable archive into {baseDir}/dist/.
这个 Skill 整体质量良好,文档结构清晰、配置示例详细,能有效帮助运维人员理解多账号路由和会话隔离的核心逻辑。脚本工具简单实用,适合快速检查部署状态。美中不足的是内容覆盖面较窄,缺少常见问题的汇总解答,对新手用户的引导还可以更友好。总体而言,这是一个专注于特定场景的实用技能,适合有 OpenClaw 运维经验的用户使用。