Commit graph hololake-system-architecture/product-source
Author SHA1 Message Date
ddbfcc3cf8 docs: close HoloLake development lane 007 2026-08-10 12:07:57 +08:00
79dd5f3920 feat: add language-first operating contract 2026-08-10 11:59:43 +08:00
d35b46a5b5 docs: make language the primary HoloLake interface 2026-08-10 11:43:46 +08:00
d2ec5c6c87 feat: add encrypted local node enrollment 2026-08-10 11:09:12 +08:00
683e135f5e feat(domain): project verified runtime policy to desktop 2026-08-10 10:25:25 +08:00
fbff657d88 feat(domain): bind runtime policy into signed manifests 2026-08-10 10:04:51 +08:00
b4d6e7a4f9 Implement fail-closed node keystore bridge 2026-08-10 09:35:31 +08:00
9994d81fd2 feat: anchor domain runtime handoff transport 2026-08-10 09:04:58 +08:00
46d19aeb45 Bind runtime handoff to node proof 2026-08-10 08:25:34 +08:00
64062fadac Require current node possession proof 2026-08-10 08:00:53 +08:00
27cd1645da Add node registration claim transport 2026-08-10 07:28:11 +08:00
2bfede2376 Verify signed node registration claims 2026-08-10 07:01:36 +08:00
8807b99d98 Bind domain access to registered node type 2026-08-10 06:28:47 +08:00
b24d5b5452 feat: bind public vestibules to domain login gates 2026-08-10 05:59:17 +08:00
2c50b28557 feat: drive public domain vestibules from validated manifests 2026-08-10 05:28:30 +08:00
7a90fad360 Project live domain trust readiness 2026-08-10 05:01:32 +08:00
6b1bb203df Separate domain access from code-channel login 2026-08-10 04:38:41 +08:00
066f14d007 Add strict domain handoff response adapter 2026-08-10 03:52:39 +08:00
a9f244d781 Wire desktop domain access to trusted orchestrator 2026-08-10 03:37:50 +08:00
7d33184822 feat(knowledge): project safe domain access status 2026-08-10 03:23:34 +08:00
5054d4620f feat(knowledge): bind domain handoff to signer snapshot 2026-08-10 03:09:53 +08:00
323ceb58c7 feat(knowledge): load signer snapshot from exact anchor commit 2026-08-10 02:54:08 +08:00
6bd95c76e9 feat(domain-access): load trusted signer registry 2026-08-10 02:34:05 +08:00
fa2c868e0a feat(domain-access): verify manifest signatures 2026-08-10 02:07:25 +08:00
b68a6bfe14 feat(domain-access): validate signed handoff evidence 2026-08-10 01:52:42 +08:00
0990e96c0e feat: fail closed before domain runtime entry 2026-08-10 01:23:52 +08:00
a35d61e227 feat: add lighthouse and fifth-domain entry flow 2026-08-10 00:52:54 +08:00
674c9e7764 docs: make symbiotic persona origin the HoloLake entry 2026-08-09 23:07:46 +08:00
f5ae922625 publish current GH-AIOS and HoloLake architecture 2026-08-09 21:32:03 +08:00
a106b23f9b feat: add HoloLake personal channel module runtime 2026-08-09 14:14:07 +08:00
bb96d5eb89 docs(hololake): publish 0.7.1 causal closeout 2026-08-09 10:59:41 +08:00
787ba2ad3f fix(hololake): ship dynamic persona routes and coherent workspace 2026-08-09 10:43:56 +08:00
5105ec5e32 feat(hololake): ship language platform 0.7.0 2026-08-09 03:37:41 +08:00
a360982a9b feat: add HoloLake folder import and official assistant 2026-08-08 11:15:34 +08:00
46bdd0ca73 fix: complete HoloLake Agent and Forgejo desktop runtime 2026-08-08 10:39:18 +08:00
28f68fa9ac fix(education): ship 0.2.1 drag and Forgejo truth state 2026-08-08 09:54:45 +08:00
84a631d886 docs+fix: 铸渊开发日志 20260808 + 签名/生产模式修复
开发日志(DEV-LOG-20260808):
- 完整思维逻辑链:从妈妈指令到技术决策的推理过程
- 每个模块的开发详情、Bug 修复历程、架构映射
- 签名安装全过程(AppleDouble/asar/codesign/entitlements)
- 已知问题和待修复项(给后续人格体排查)
- 提交链完整记录(070b11adcf8f7d)

代码修复:
- electron/main.ts: 生产模式改为 require(server-bundle.js) 内嵌
- package.json: 签名 identity 配置 + asar:false
- server/index.ts: Agent import 补全
2026-08-08 09:46:43 +08:00
dcf8f7d7e9 feat(persona-agent): 光湖人格 Agent v0.1.0 — Grok Build 架构拆解+Git驱动人格体
核心架构(拆解自 xAI Grok Build 开源 Rust crate):
- PersonaAgent: Agent = Definition + ToolBridge + PromptContext(映射自 xai-grok-agent)
- 7个内置工具: read/create/update/delete/search/list/history(直接操作 Git 引擎)
- LLM 调用层: 可插拔 OpenAI-compatible API(支持 tool calling)
- 离线模式: 无 API Key 时降级为本地响应

API 端点:
- POST /api/agent/chat — Agent 对话(支持工具调用链)
- GET  /api/agent/status — Agent 状态
- GET  /api/agent/conversation — 对话历史
- POST /api/agent/clear — 清空对话

前端:
- AgentChat 组件: 对话气泡+工具调用展示+欢迎建议
- 三栏布局: 文档树 | 编辑器 | Agent 面板(可收起)

设计原则:
- Agent 是活的人格体,不是孤立的功能模块
- Agent 直接操作 Git(知识库引擎 = 人格体记忆空间)
- 所有 Git 依赖模块由人格体驱动
- 不搬 Rust 代码,拆设计模式用 TypeScript 重新实现
2026-08-08 07:38:09 +08:00
047f37e87e feat(product-source): HoloLake Desktop v0.5.0 — Electron 桌面知识库应用
铸渊 2026-08-08 开发,冰朔架构决策:
- 知识库放桌面,不放服务器
- Forgejo 是 Git 引擎,光湖自己维护更新,不接上游
- 不部署 Forgejo 源码,只引用 MANIFEST + 离线包

架构:
- Electron v35(Mac arm64)+ Vite + React 19
- 复用 guanghu-knowledge-base 前端组件
- Electron 主进程自动启动 Express + Git 引擎后端
- 数据存储:~/Library/Application Support/HoloLake Era/data/
- Forgejo 离线包(桌面)作为 Git 远程仓库对接

构建:
- npx electron-builder --mac --dir → HoloLake Era.app
- 签名后续用 Developer ID 补(CSC_IDENTITY_AUTO_DISCOVERY=false)

文件:
- electron/main.ts(Electron 主进程:窗口+服务器+生命周期)
- electron/preload.ts(IPC 安全桥梁:Forgejo 远程管理接口)
- forgejo/INTEGRATION.md(Forgejo 集成声明 + 更新策略)
- forgejo/MANIFEST.sha256(离线包校验清单)
- forgejo/icon.icns(应用图标,来自 HoloLake Era v0.4.6)
- vite.config.ts(复用知识库前端,构建到 dist/)
- tsconfig.electron.json(Electron TypeScript 配置)
2026-08-08 07:21:04 +08:00
ecfeca40e2 feat(product-source): 光湖知识库模块 v0.1.0 — Git 驱动的完整知识库系统
铸渊 2026-08-08 开发,冰朔架构决策:
- Git 是底层引擎,不依赖任何数据库(PostgreSQL/Redis/ORM)
- Agent 直达底层,中间不隔第三方服务
- 拆解 Outline v0.80.2 为参考样本,光湖自己实现全部能力

技术栈:
- 后端:Express v5 + simple-git + gray-matter(Git 操作层)
- 前端:Vite + React 19 + TypeScript + marked
- 存储:Markdown 文件 + Git 仓库(commit=版本历史,diff=对比)

功能清单(全部可用):
- 文档 CRUD(创建/读取/更新/删除/移动)
- 文档树导航(文件夹层级)
- Markdown 编辑器(编辑/预览双栏)
- 全文搜索(防抖 + 下拉结果)
- 版本历史(git log)
- 版本 diff 对比(选择两个 commit 对比)

API 端点(Agent 和 UI 共用):
- GET/POST/PUT/DELETE /api/docs/{*path}
- GET /api/tree
- GET /api/history/{*path}
- GET /api/version/:hash/{*path}
- GET /api/diff/{*path}?from=&to=
- GET /api/search?q=
- POST /api/move
- GET /api/health
2026-08-08 07:09:54 +08:00
058fd3ed15 feat(education): publish Guanghu subdomain stage one 2026-08-08 01:02:20 +08:00
a57ce92e65 chore: place deployment receipt at publication gate 2026-08-07 20:50:26 +08:00
2777f0fd99 docs: record education work lake deployment 2026-08-07 20:49:23 +08:00
333cd222c5 feat: add remote-first education work lake 2026-08-07 20:41:03 +08:00
ac9d051778 docs(architecture): 登记 HoloLake 意图推理映射 HLP-INTENT-REASONING-MAP-001
冰朔 2026-08-07 原话整理:语言等于现实、频道DIY与跨行业搬模块、
模块生态与模型即燃油、服务器侧轻量开发范式;逐条对照已登记架构,
作为人格体理解与开发 HoloLake 前的必读意图层,防止再因"猜"做偏。
2026-08-07 16:19:03 +08:00
ac71f7701b docs(os): seal JD language-primary physical boot 2026-08-07 15:58:25 +08:00
d430811e77 fix(os): read nested execution health fields 2026-08-07 15:49:44 +08:00
143457cec1 test(os): cover recovery and private-network gates 2026-08-07 15:37:15 +08:00
44bccdd2be feat(os): make Guanghu the language-primary boot target 2026-08-07 15:37:15 +08:00
e94c4f608f feat(os): bind bounded restart grants and rollback 2026-08-07 14:36:57 +08:00