Implement scene-based chapter quest progression
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-04-08 11:58:47 +08:00
parent 9d2fc9e4b8
commit bd9fdcbe31
170 changed files with 18259 additions and 1049 deletions

View File

@@ -0,0 +1,17 @@
import { mkdirSync, writeFileSync } from 'node:fs';
import { dirname, resolve } from 'node:path';
import { buildCurrentGameStoryAuditMarkdown } from '../src/services/storyEngine/storyAuditReport.ts';
const defaultOutputPath = resolve(
process.cwd(),
'docs/audits/text/CURRENT_GAME_STORY_SOURCE_REVIEW_2026-04-07.md',
);
const outputPath = process.argv[2]
? resolve(process.cwd(), process.argv[2])
: defaultOutputPath;
mkdirSync(dirname(outputPath), { recursive: true });
writeFileSync(outputPath, buildCurrentGameStoryAuditMarkdown(), 'utf8');
console.log(`[story-audit] wrote ${outputPath}`);