43b7aa809b
Project CI / AI game creator shell Rust crates (push) Successful in 1m6s
Project CI / AI game creator shell Rust smoke (push) Successful in 1m16s
Project CI / Backend tests (push) Successful in 4m49s
Project CI / AI game creator shell Rust lane 2/2 (push) Successful in 8m1s
Project CI / AI game creator shell Rust lane 1/2 (push) Successful in 8m50s
Project CI / Native shell tests (push) Successful in 6m5s
Project CI / Frontend tests (push) Successful in 2m6s
Project CI / AI game creator shell web tests (push) Successful in 1m19s
Project CI / Repository checks (push) Successful in 1m43s
- 删除一次性 schema guard 退役表白名单、isApprovedRetiredTableDeletion 导出与专属测试,compareTables 收回为内部函数 - 删除 shared-contracts 未挂载的旧玩法契约模块、api-server 旧 story 模块与旧压测资源 scripts/loadtest/ 及对应忽略/排除配置 - 清理 decision-log、pitfalls 中旧表退役、两阶段清表窗口与旧玩法过程记录,保留改写后的通用条目 - 移除权威文档、模块 README 与运维文档中的旧模板、历史表与旧压测叙述 Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/489 Co-authored-by: kdletters <kdletters@qq.com> Co-committed-by: kdletters <kdletters@qq.com>
module-runtime 独立模块 package 占位说明
日期:2026-04-20
1. package 职责
module-runtime 是运行时状态基座模块 package,后续负责:
runtime_snapshot、runtime_setting等主状态模型- profile dashboard、browse history、save archive 相关读写模型
- 运行时状态归一化与兼容聚合快照策略
- 与
apps/api-server的 runtime facade 对接 - 与
apps/spacetime-module的运行时表与 view 聚合对接
2. 当前阶段说明
当前已进入 DDD 分层拆分阶段,但仍以小切片推进,不提前改动未冻结的表结构、projection 与接口实现。
后续与本 package 直接相关的任务包括:
- 设计
runtime_snapshot、runtime_setting - 设计
profile_dashboard_state、profile_wallet_ledger - 设计
profile_played_world、profile_save_archive、user_browse_history - 落地存档、设置、资料页兼容接口
已落地的拆分切片:
runtime settings的默认值、平台主题值对象与设置聚合已迁入src/domain.rs,根入口通过pub use domain::*保持原有 crate API。- runtime snapshot、profile dashboard、wallet、recharge、referral、played world、play stats、save archive 的快照、输入、过程结果与记录投影类型已迁入
src/domain.rs。 - settings、browse history、profile/save 三组字段错误和中文错误文案已迁入
src/errors.rs。 - settings、browse history、profile/save 等输入构造和写入归一化函数已迁入
src/commands.rs。 - settings、browse history、profile/save 等记录投影 builder 已迁入
src/application.rs。 - checkpoint、profile/save archive meta、充值/邀请/兑换/钱包等剩余纯规则已迁入
src/application.rs,spacetime-module只保留表事务读写,api-server只保留 HTTP/BFF 映射。 - 详细边界与验收记录见:
docs/【玩法创作】平台入口与玩法链路-2026-05-15.mddocs/【后端架构】server-rs与SpacetimeDB数据契约-2026-05-15.mddocs/【后端架构】server-rs与SpacetimeDB数据契约-2026-05-15.mddocs/【后端架构】server-rs与SpacetimeDB数据契约-2026-05-15.mddocs/【后端架构】server-rs与SpacetimeDB数据契约-2026-05-15.mddocs/【后端架构】server-rs与SpacetimeDB数据契约-2026-05-15.md
3. 边界约束
module-runtime负责运行时状态真相与模块级 facade 编排,不把主状态继续留在旧式大 JSON repository 中。- 兼容快照可以作为聚合产物保留,但不能再次成为唯一真相。
- 前端兼容接口由
apps/api-server暴露,状态表与 view 最终由apps/spacetime-module聚合。