chore: 收口 review 执行清单与 runtime 验证

- 补齐 design/10-review 执行清单、验收标准与相关设计治理记录

- 迁移已完成的 tree、mindmap、runtime fallback、AI kernel 等设计和缺陷条目

- 推进 Rust Web runtime、tree/sidebar、page aggregate、mindmap 与 OnlyOffice 路由侧验证支撑

- 增加 task177-task180 smoke/audit 脚本及前端相关测试覆盖
This commit is contained in:
lix-2026
2026-05-14 05:52:08 +08:00
parent b4a452a8b7
commit 96e03645f7
69 changed files with 4780 additions and 979 deletions
+15 -2
View File
@@ -474,7 +474,11 @@ export default defineSchema({
.index("by_command_log_id", ["id"])
.index("by_workspace_request", ["workspace_id", "request_id"])
.index("by_workspace_trace", ["workspace_id", "trace_id"])
.index("by_workspace_command", ["workspace_id", "command_id"]),
.index("by_workspace_command", ["workspace_id", "command_id"])
.index("by_workspace_created_at", ["workspace_id", "created_at", "id"])
.index("by_workspace_status_created_at", ["workspace_id", "status", "created_at", "id"])
.index("by_workspace_target_page_created_at", ["workspace_id", "target_page_id", "created_at", "id"])
.index("by_workspace_target_block_created_at", ["workspace_id", "target_block_id", "created_at", "id"]),
domain_events: defineTable({
id: v.string(),
@@ -495,5 +499,14 @@ export default defineSchema({
.index("by_domain_event_id", ["id"])
.index("by_workspace_request", ["workspace_id", "request_id"])
.index("by_workspace_trace", ["workspace_id", "trace_id"])
.index("by_workspace_command", ["workspace_id", "command_id"]),
.index("by_workspace_command", ["workspace_id", "command_id"])
.index("by_workspace_created_at", ["workspace_id", "created_at", "id"])
.index("by_workspace_status_created_at", ["workspace_id", "status", "created_at", "id"])
.index("by_workspace_aggregate_created_at", [
"workspace_id",
"aggregate_type",
"aggregate_id",
"created_at",
"id",
]),
});