Files
Genarrative/packages/shared/src/contracts/rpgAgentAnchors.ts
kdletters cbc27bad4a
Some checks failed
CI / verify (push) Has been cancelled
init with react+axum+spacetimedb
2026-04-26 18:06:23 +08:00

18 lines
576 B
TypeScript

/**
* 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;
}