init with react+axum+spacetimedb
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-04-26 18:06:23 +08:00
commit cbc27bad4a
20199 changed files with 883714 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
* RPG 创作八锚点契约。
* 每个锚点只保留一段凝练文本;细分关注点由 Agent prompt 负责,不再进入存储结构。
*/
export type RpgCreationAnchorText = string | null;
export interface RpgCreationAnchorContent {
worldPromise: RpgCreationAnchorText;
playerFantasy: RpgCreationAnchorText;
themeBoundary: RpgCreationAnchorText;
playerEntryPoint: RpgCreationAnchorText;
coreConflict: RpgCreationAnchorText;
keyRelationships: RpgCreationAnchorText;
hiddenLines: RpgCreationAnchorText;
iconicElements: RpgCreationAnchorText;
}