Some checks are pending
CI / install-check (push) Waiting to run
CI / checks (bunx tsc -p tsconfig.json, bun, build) (push) Waiting to run
CI / checks (bunx vitest run, bun, test) (push) Waiting to run
CI / checks (pnpm build, node, build) (push) Waiting to run
CI / checks (pnpm format, node, format) (push) Waiting to run
CI / checks (pnpm lint, node, lint) (push) Waiting to run
CI / checks (pnpm protocol:check, node, protocol) (push) Waiting to run
CI / checks (pnpm test, node, test) (push) Waiting to run
CI / secrets (push) Waiting to run
CI / checks-windows (pnpm build, node, build) (push) Waiting to run
CI / checks-windows (pnpm lint, node, lint) (push) Waiting to run
CI / checks-windows (pnpm protocol:check, node, protocol) (push) Waiting to run
CI / checks-windows (pnpm test, node, test) (push) Waiting to run
CI / checks-macos (pnpm test, test) (push) Waiting to run
CI / macos-app (set -euo pipefail
for attempt in 1 2 3; do
if swift build --package-path apps/macos --configuration release; then
exit 0
fi
echo "swift build failed (attempt $attempt/3). Retrying…"
sleep $((attempt * 20))
done
exit 1
, build) (push) Waiting to run
CI / macos-app (set -euo pipefail
for attempt in 1 2 3; do
if swift test --package-path apps/macos --parallel --enable-code-coverage --show-codecov-path; then
exit 0
fi
echo "swift test failed (attempt $attempt/3). Retrying…"
sleep $((attempt *… (push) Waiting to run
CI / macos-app (swiftlint --config .swiftlint.yml
swiftformat --lint apps/macos/Sources --config .swiftformat
, lint) (push) Waiting to run
CI / ios (push) Waiting to run
CI / android (./gradlew --no-daemon :app:assembleDebug, build) (push) Waiting to run
CI / android (./gradlew --no-daemon :app:testDebugUnitTest, test) (push) Waiting to run
Docker Release / build-amd64 (push) Waiting to run
Docker Release / build-arm64 (push) Waiting to run
Docker Release / create-manifest (push) Blocked by required conditions
Install Smoke / install-smoke (push) Waiting to run
Workflow Sanity / no-tabs (push) Waiting to run
- Implement QQ Bot API client with token caching - Add WebSocket monitor for event handling - Support C2C (single chat) and group messages - Include pairing mechanism for DM authorization Also fix memory-core peerDependencies to use workspace:*
Moltbot QQ Channel Plugin
QQ 机器人官方 API 渠道插件,支持:
- 单聊 (C2C) 消息
- 群聊 @机器人 消息
- 频道消息 (可选)
配置
在 ~/.clawdbot/clawdbot.json 中添加:
{
channels: {
qq: {
appId: "YOUR_APP_ID",
appSecret: "YOUR_APP_SECRET",
enabled: true
}
}
}
或使用环境变量:
export QQ_APP_ID=your_app_id
export QQ_APP_SECRET=your_secret
获取凭据
- 访问 QQ 开放平台
- 创建机器人应用
- 获取 AppID 和 AppSecret
事件订阅
需要在 QQ 开放平台配置 WebSocket 事件订阅 Intents。