feat(qqbot): 定时提醒技能与主动消息系统

**新增提醒技能**
- 新增 skills/qqbot-cron/SKILL.md 定时提醒技能定义
- 支持一次性提醒(--at)和周期性提醒(--cron)
- 支持设置、查询、取消提醒操作

**主动消息系统**
- 新增 src/proactive.ts 主动消息发送模块
- 新增 src/known-users.ts 已知用户管理
- 新增 src/session-store.ts 会话存储
- 支持主动向用户/群组发送消息

**工具脚本**
- 新增 scripts/proactive-api-server.ts 主动消息API服务
This commit is contained in:
rianli
2026-02-01 17:10:55 +08:00
parent 50422aac14
commit a3e87f2f37
15 changed files with 4639 additions and 52 deletions

View File

@@ -1,6 +1,14 @@
{
"id": "qqbot",
"name": "QQ Bot Channel",
"description": "QQ Bot channel plugin with streaming message support, cron jobs, and proactive messaging",
"channels": ["qqbot"],
"skills": ["qqbot-cron"],
"capabilities": {
"proactiveMessaging": true,
"cronJobs": true,
"streamingMessages": true
},
"configSchema": {
"type": "object",
"additionalProperties": false,