Files
clawdbot/extensions/qq/package.json
empty 79b946584e
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
feat(qq): add QQ Bot channel plugin (Official Bot API)
- 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:*
2026-01-28 00:05:33 +08:00

33 lines
858 B
JSON

{
"name": "@moltbot/qq",
"version": "2026.1.27",
"type": "module",
"description": "Moltbot QQ channel plugin (Official Bot API)",
"moltbot": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "qq",
"label": "QQ",
"selectionLabel": "QQ (Official Bot API)",
"docsPath": "/channels/qq",
"docsLabel": "qq",
"blurb": "QQ 机器人官方 API 渠道插件",
"aliases": [
"qq"
],
"order": 85,
"quickstartAllowFrom": true
},
"install": {
"npmSpec": "@moltbot/qq",
"localPath": "extensions/qq",
"defaultChoice": "npm"
}
},
"dependencies": {
"moltbot": "workspace:*",
"ws": "^8.18.0"
}
}