feat: 微信公众号技能包重命名(weixin_public_account)并增强功能

- 将 wechat_official_account 重命名为 weixin_public_account,符合中文命名规范
- 新增 DOCX 文档生成技能、聊天历史、请求 ID 中间件
- 增强工作流、热点服务、文章服务等模块功能
- 前端同步重命名组件和 API
- 新增架构文档 AR13/AR14、专员文档更新
- 补充测试用例(seed_specialists_test, db_migration_test)

Co-Authored-AI: yes
This commit is contained in:
eaiadmin
2026-09-24 21:13:19 +08:00
parent 593323a934
commit 89ae31c998
60 changed files with 7251 additions and 967 deletions
@@ -31,6 +31,12 @@ func main() {
cfg := config.Load()
// 启动前校验 AI 路由配置:若 ai_config.json 不可解析或默认路由无效,
// 立刻失败而不是等用户聊天时才爆"AI 模型不可用"。
if err := config.ValidateAIConfig(); err != nil {
log.Fatalf("AI 路由配置校验失败(请检查 config/ai_config.json): %v", err)
}
db, err := store.Init(cfg.DBPath)
if err != nil {
log.Fatalf("数据库初始化失败: %v", err)