/**
* Dramatic arc & pacing orchestrator (Phase I).
*
* `schema.ts` is the pure arc model + resolution helpers (current act,
* act-eligible secret ids, the built-in default arc). `load.ts` reads a
* universe's optional `arc.json`. `conductor.ts` is the runtime showrunner pass
* (schema / prompt / pure apply) that paces the drama. `chronicle.ts` is the
* chapter-close sheet evolution (conservative, bounded stat/resource changes),
* fired when the conductor advances the act. See each file's header.
*/
export * from "./schema.js";
export * from "./load.js";
export * from "./conductor.js";
export * from "./chronicle.js";