feat: 新增 clawdbot 兼容支持
This commit is contained in:
16
clawdbot.plugin.json
Normal file
16
clawdbot.plugin.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"id": "qqbot",
|
||||
"name": "QQ Bot Channel",
|
||||
"description": "QQ Bot channel plugin with message support, cron jobs, and proactive messaging",
|
||||
"channels": ["qqbot"],
|
||||
"skills": ["skills/qqbot-cron", "skills/qqbot-media"],
|
||||
"capabilities": {
|
||||
"proactiveMessaging": true,
|
||||
"cronJobs": true
|
||||
},
|
||||
"configSchema": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {}
|
||||
}
|
||||
}
|
||||
16
moltbot.plugin.json
Normal file
16
moltbot.plugin.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"id": "qqbot",
|
||||
"name": "QQ Bot Channel",
|
||||
"description": "QQ Bot channel plugin with message support, cron jobs, and proactive messaging",
|
||||
"channels": ["qqbot"],
|
||||
"skills": ["skills/qqbot-cron", "skills/qqbot-media"],
|
||||
"capabilities": {
|
||||
"proactiveMessaging": true,
|
||||
"cronJobs": true
|
||||
},
|
||||
"configSchema": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {}
|
||||
}
|
||||
}
|
||||
17
package.json
17
package.json
@@ -1,14 +1,17 @@
|
||||
{
|
||||
"name": "@openclaw/qqbot",
|
||||
"version": "2026.1.31",
|
||||
"name": "qqbot",
|
||||
"version": "1.3.0",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"description": "OpenClaw QQ Bot channel plugin with streaming message support",
|
||||
"clawdbot": {
|
||||
"extensions": ["./index.ts"]
|
||||
},
|
||||
"moltbot": {
|
||||
"extensions": ["./index.ts"]
|
||||
},
|
||||
"openclaw": {
|
||||
"extensions": [
|
||||
"./index.ts"
|
||||
]
|
||||
"extensions": ["./index.ts"]
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc || true",
|
||||
@@ -27,6 +30,8 @@
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"clawdbot": "*",
|
||||
"moltbot": "*",
|
||||
"openclaw": "*"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,15 +1,33 @@
|
||||
#!/bin/bash
|
||||
# QQBot 插件升级脚本
|
||||
# 用于清理旧版本插件并重新安装
|
||||
# 兼容 clawdbot 和 openclaw 两种安装
|
||||
|
||||
set -e
|
||||
|
||||
OPENCLAW_DIR="$HOME/.openclaw"
|
||||
CONFIG_FILE="$OPENCLAW_DIR/openclaw.json"
|
||||
EXTENSION_DIR="$OPENCLAW_DIR/extensions/qqbot"
|
||||
|
||||
echo "=== QQBot 插件升级脚本 ==="
|
||||
|
||||
# 检测使用的是 clawdbot 还是 openclaw
|
||||
detect_installation() {
|
||||
if [ -d "$HOME/.clawdbot" ]; then
|
||||
echo "clawdbot"
|
||||
elif [ -d "$HOME/.openclaw" ]; then
|
||||
echo "openclaw"
|
||||
else
|
||||
echo ""
|
||||
fi
|
||||
}
|
||||
|
||||
# 清理指定目录的函数
|
||||
cleanup_installation() {
|
||||
local APP_NAME="$1"
|
||||
local APP_DIR="$HOME/.$APP_NAME"
|
||||
local CONFIG_FILE="$APP_DIR/$APP_NAME.json"
|
||||
local EXTENSION_DIR="$APP_DIR/extensions/qqbot"
|
||||
|
||||
echo ""
|
||||
echo ">>> 处理 $APP_NAME 安装..."
|
||||
|
||||
# 1. 删除旧的扩展目录
|
||||
if [ -d "$EXTENSION_DIR" ]; then
|
||||
echo "删除旧版本插件: $EXTENSION_DIR"
|
||||
@@ -51,12 +69,38 @@ if [ -f "$CONFIG_FILE" ]; then
|
||||
else
|
||||
echo "未找到配置文件: $CONFIG_FILE"
|
||||
fi
|
||||
}
|
||||
|
||||
# 检测并处理所有可能的安装
|
||||
FOUND_INSTALLATION=""
|
||||
|
||||
# 检查 clawdbot
|
||||
if [ -d "$HOME/.clawdbot" ]; then
|
||||
cleanup_installation "clawdbot"
|
||||
FOUND_INSTALLATION="clawdbot"
|
||||
fi
|
||||
|
||||
# 检查 openclaw
|
||||
if [ -d "$HOME/.openclaw" ]; then
|
||||
cleanup_installation "openclaw"
|
||||
FOUND_INSTALLATION="openclaw"
|
||||
fi
|
||||
|
||||
# 如果都没找到
|
||||
if [ -z "$FOUND_INSTALLATION" ]; then
|
||||
echo "未找到 clawdbot 或 openclaw 安装目录"
|
||||
echo "请确认已安装 clawdbot 或 openclaw"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 使用检测到的安装类型作为命令
|
||||
CMD="$FOUND_INSTALLATION"
|
||||
|
||||
echo ""
|
||||
echo "=== 清理完成 ==="
|
||||
echo ""
|
||||
echo "接下来请执行以下命令重新安装插件:"
|
||||
echo " cd /path/to/qqbot"
|
||||
echo " openclaw plugins install ."
|
||||
echo " openclaw channels add --channel qqbot --token \"AppID:AppSecret\""
|
||||
echo " openclaw gateway restart"
|
||||
echo " $CMD plugins install ."
|
||||
echo " $CMD channels add --channel qqbot --token \"AppID:AppSecret\""
|
||||
echo " $CMD gateway restart"
|
||||
|
||||
Reference in New Issue
Block a user