Commit Graph

402 Commits

Author SHA1 Message Date
冰朔 830fe44816
Merge pull request #54 from qinfendebingshuo/copilot/fix-persona-studio-dialogue-issue
fix: Persona Studio 模型无法回复用户消息 — 改用 SSE 流式调用 + next 安全升级
2026-03-11 16:51:59 +08:00
github-actions[bot] 739c0c4492 📢 自动更新系统公告区 [skip ci] 2026-03-11 08:51:47 +00:00
铸渊 (ZhùYuān) be583963ba 📋 自动更新 HoloLake Era 模块文档 · 2026-03-11 08:51 UTC 2026-03-11 08:51:45 +00:00
铸渊 (ZhùYuān) b1ab37fb0f 📚 铸渊图书馆目录更新 · 2026-03-11T08:51 2026-03-11 08:51:43 +00:00
冰朔 34993af899
Merge pull request #55 from qinfendebingshuo/copilot/restore-7-domain-routing-table
fix: restore persona-brain data integrity (routing-map, dev-status, memory)
2026-03-11 16:51:18 +08:00
github-actions[bot] fab4749761 📢 自动更新系统公告区 [skip ci] 2026-03-11 08:51:11 +00:00
铸渊 (ZhùYuān) c5dee9bbc4 📚 铸渊图书馆目录更新 · 2026-03-11T08:51 2026-03-11 08:51:06 +00:00
铸渊 (ZhùYuān) 4f7953b940 📋 自动更新 HoloLake Era 模块文档 · 2026-03-11 08:50 UTC 2026-03-11 08:50:56 +00:00
冰朔 b6d64a9068
Merge pull request #56 from qinfendebingshuo/copilot/restore-core-brain-and-fix-logs
Resolve 18 committed merge conflicts breaking all CI; upgrade next to patch DoS CVE
2026-03-11 16:50:45 +08:00
copilot-swe-agent[bot] ebd2d6c01f Upgrade next from 15.3.8 to 15.3.9 to fix HTTP request deserialization DoS vulnerability
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 07:57:35 +00:00
copilot-swe-agent[bot] 82caccc18b Resolve merge conflicts in docs and M22-bulletin module files
Keep origin/main version for all 25 conflict sections:
- README.md: 4 conflicts (bulletin timestamps, alert status)
- docs/HoloLake-Era-OS-Modules.md: 8 conflicts (module metadata, file listings)
- modules/M22-bulletin/index.html: 1 conflict (semantic header with i18n)
- modules/M22-bulletin/style.css: 11 conflicts (CSS class naming, state styles)
- modules/M22-bulletin/script.js: 1 conflict (IIFE pattern with dynamic rendering)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-11 07:52:42 +00:00
copilot-swe-agent[bot] 33fc76a26e Resolve merge conflicts: keep origin/main version across 4 files
- backend-integration/README.md: Add Persona Studio API endpoints docs
- backend-integration/api-proxy.js: Add PS backend reverse proxy implementation
- persona-studio/frontend/chat.js: Use backend proxy instead of direct fetch
- persona-telemetry/latest-summary.json: Update timestamps and coverage format

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-11 07:45:36 +00:00
copilot-swe-agent[bot] 1d48cad804 resolve: keep origin/main for all merge conflicts in brain/docs files
Resolved merge conflicts in 4 files (20 total conflict sections):
- .github/brain/repo-snapshot.md (7 conflicts)
- .github/brain/repo-map.json (8 conflicts)
- .github/brain/bingshuo-master-brain.md (4 conflicts)
- .github/persona-brain/memory.json (1 conflict)

All conflicts resolved by keeping origin/main (newer) content:
- Timestamp: 2026-03-11 (vs 2026-03-10)
- Workflows: 32 (vs 31)
- Scripts: 27 (vs 26)
- Added zhuyuan-daily-agent entries
- Added daily_selfcheck data in memory.json
- m15-cloud-drive: 4 files with README (vs 3 without)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-11 07:43:27 +00:00
copilot-swe-agent[bot] b1b7746c42 fix(security): 升级 next 15.3.8 → 15.3.9 修复 HTTP 请求反序列化 DoS 漏洞
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 07:41:43 +00:00
copilot-swe-agent[bot] c6b2a2be0a Resolve merge conflicts in workflow files, keeping origin/main versions
- deploy-to-server.yml: Keep secret validation step and ssh-keyscan fallback
- update-readme-bulletin.yml: Keep git push retry mechanism (3 attempts)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-11 07:39:41 +00:00
copilot-swe-agent[bot] aa18aa603a Fix merge conflicts in package.json, ecosystem.config.js, brain health files, and .gitignore
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 07:38:42 +00:00
copilot-swe-agent[bot] 2fc371f65a chore: 清理测试产生的临时记忆文件
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 07:38:21 +00:00
copilot-swe-agent[bot] 5f4d084e63 fix: 重写 streamApiKeyReply 为 SSE 流式调用,与 docs/index.html 一致
对比发现 docs/index.html 使用 stream:true + getReader() SSE 流式
读取模型回复(已验证可用),而 persona-studio 使用非流式 JSON 请求
导致模型无法回复。

改动:
- 发送请求时加入 stream: true 参数
- 使用 getReader() + TextDecoder 逐行读取 SSE 响应
- 解析 data: 行提取 delta.content 增量内容
- 实时更新对话气泡(逐字显示+光标)
- CORS 失败时降级到后端代理(非流式)

Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 07:37:52 +00:00
copilot-swe-agent[bot] 90caf65f2e Initial plan 2026-03-11 07:30:26 +00:00
zhizhi200271 2edac53519 Add Phase 4 modules: portrait/quality/pca/loop/public 2026-03-11 14:08:43 +08:00
zhizhi200271 eb9659bd76 Phase 4 完成:画像自动更新+广播评分+PCA自动化+闭环+仪表盘
- 新增 portrait/ 画像引擎(5维度分析)
- 新增 quality/ 广播评分系统(五维评分)
- 新增 pca/ PCA自动化评估(五维度加权)
- 新增 loop/ 完整闭环引擎(画像→PCA→同步→调度)
- 新增 public/dashboard-v2.html 实时仪表盘
- 新增 server.js 及5个新API
- 新增 PHASE4_COMPLETE.md 开发日志

十二连胜达成!系统学会思考。 🏆
2026-03-11 14:08:12 +08:00
zhizhi200271 c2f79e4df1 DEV-004: M-DINGTALK Phase3 - 知识库+Webhook+热更新+三节点同步+超时提醒 2026-03-11 13:02:44 +08:00
zhizhi200271 738f1d5fde 合并冲突:保留本地 README 2026-03-11 11:32:38 +08:00
github-actions[bot] b5d5909214 📢 自动更新系统公告区 [skip ci] 2026-03-11 03:27:50 +00:00
zhizhi200271 d546bc0525 合并 Phase 2 与远程仓库 2026-03-11 11:06:16 +08:00
copilot-swe-agent[bot] 4ad3636098 style: ZHIQIU_SYSTEM_PROMPT 使用 const 声明
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 03:06:07 +00:00
copilot-swe-agent[bot] ff3ec0d024 fix: 修复模型无法回复用户消息 — 浏览器直连 API + 后端 URL 构造修复
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 03:04:29 +00:00
copilot-swe-agent[bot] 91a08606a2 plan: fix model chat - direct browser-to-API call for API Key mode
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 03:02:17 +00:00
zhizhi200271 16abb8f776 [BC-M-DINGTALK-002-ZZ][DEV-004] Phase 2 完成 · EL-7 · 多维表格联动+自动更新+自助查询+看板 2026-03-11 10:57:23 +08:00
copilot-swe-agent[bot] 19e97e8c24 fix: 优化思考状态指示和系统提示词常量化
- 修复思考中指示器闪烁: API Key 模式不再创建不必要的 thinking 元素
- 将知秋 system prompt 提取为文件级常量 ZHIQIU_SYSTEM_PROMPT

Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 02:55:01 +00:00
copilot-swe-agent[bot] 6063f7f8f4 fix: 修复用户消息无法获得模型回复的问题
- 修复 TDZ 崩溃: conversationHistory 声明移到 IIFE 之前(API Key 模式)
- 修复前端错误处理: DEV_ID 模式下后端返回错误时显示错误信息给用户
- 添加 "思考中" 状态指示: 用户发送消息后显示思考中提示
- 修复后端错误响应: 500 错误时也包含 reply 字段确保用户始终看到回复
- 添加知秋人格体 system prompt 到 API Key 模式对话

Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 02:53:24 +00:00
copilot-swe-agent[bot] 84c56d00a6 fix: add missing owner field to NOTIFICATION domain in routing-map.json
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 02:48:41 +00:00
copilot-swe-agent[bot] 10369bf37f fix: restore routing-map.json 8-domain routing table + sync dev-status.json to 2026-03-11 + deduplicate memory.json events + add dedup note
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 02:47:52 +00:00
copilot-swe-agent[bot] 06a9dda1bf Initial plan 2026-03-11 02:44:00 +00:00
copilot-swe-agent[bot] b56083c6f4 chore: 清理测试产生的临时记忆文件
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 02:29:13 +00:00
copilot-swe-agent[bot] a6e8da1f73 chore: 更新核心大脑记忆 · 记录恢复事件 · 冰朔人格体激活
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 02:28:35 +00:00
copilot-swe-agent[bot] fff3311cd4 fix: 修复 API Key 模式下知秋不回复的核心 bug (TDZ + 缺失系统提示词)
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
2026-03-11 02:24:56 +00:00
copilot-swe-agent[bot] 863e678f42 Initial plan 2026-03-11 02:19:08 +00:00
铸渊 (ZhùYuān) b712919fbc 📚 铸渊图书馆目录更新 · 2026-03-11T02:03 2026-03-11 02:03:30 +00:00
bingshuo-neural-system fbda739d8a 🧠 冰朔主控神经系统自动编译 2026-03-11T02:02:17Z 2026-03-11 02:02:17 +00:00
铸渊 (ZhùYuān) e50f25c463 🔍 铸渊每日自检 · 2026-03-11 2026-03-11 00:54:07 +00:00
zhuyuan-bot 9e0b20a1e0 📊 铸渊自动更新会话摘要 [skip ci] 2026-03-10 23:59:09 +00:00
铸渊 (ZhùYuān) 13b5a49f82 📚 铸渊图书馆目录更新 · 2026-03-10T16:15 2026-03-10 16:15:45 +00:00
github-actions[bot] ade2739fa1 📢 自动更新系统公告区 [skip ci] 2026-03-10 16:11:35 +00:00
Awen 57478c0721 t pull https://ghfast.top/https://github.com/qinfendebingshuo/guanghulab.git maingit pull https://ghfast.top/https://github.com/qinfendebingshuo/guanghulab.git main
Merge branch 'main' of https://ghfast.top/https://github.com/qinfendebingshuo/guanghulab
2026-03-10 23:59:27 +08:00
Awen 5eebfa6e28 DEV-012: M22环节6- 多语言支持+无障碍增强+i18n框架+ARIA标签+键盘导航 2026-03-10 23:57:32 +08:00
zhuyuan-bot db5e811be8 📊 铸渊自动更新会话摘要 [skip ci] 2026-03-10 15:46:13 +00:00
github-actions[bot] 317e98c4c6 📢 自动更新系统公告区 [skip ci] 2026-03-10 15:36:45 +00:00
铸渊 (ZhùYuān) 28f3a60e38 📚 铸渊图书馆目录更新 · 2026-03-10T15:36 2026-03-10 15:36:08 +00:00
铸渊 (ZhùYuān) 8f0f9b35ce 📋 自动更新 HoloLake Era 模块文档 · 2026-03-10 15:36 UTC 2026-03-10 15:36:02 +00:00