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

@@ -23,6 +23,8 @@ export interface ResolvedQQBotAccount {
imageServerBaseUrl?: string;
/** 是否支持 markdown 消息 */
markdownSupport?: boolean;
/** 是否启用流式消息(仅 c2c 私聊支持),默认 true */
streamEnabled?: boolean;
config: QQBotAccountConfig;
}
@@ -43,6 +45,8 @@ export interface QQBotAccountConfig {
imageServerBaseUrl?: string;
/** 是否支持 markdown 消息,默认 true */
markdownSupport?: boolean;
/** 是否启用流式消息,默认 true仅 c2c 私聊支持) */
streamEnabled?: boolean;
}
/**