/** * init scaffolding — copies the plugin's starter template files into a new * project. * * Two destinations: * - Functional files go to the PROJECT ROOT, where the tools read them: * style-targets.yml → `analyze style` * STRUCTURAL_STYLE_GUIDE.md → Copy Editor agent * COMPOSITIONAL_STYLE_GUIDE.md → Developmental / Line Editor agents * - Entity templates go to `/templates/`, a reference library the * user copies into the content dirs (characters/, locations/, …) and edits. * They live OUTSIDE the content dirs so `sync` never imports them as junk. * * Source templates ship with the plugin under `/templates/`. * Never overwrites an existing destination file. */ /** * Scaffold the plugin's template files into a project directory. Never * overwrites an existing file. Returns the list of project-relative paths * actually written (e.g. "style-targets.yml", "templates/character.yml"). */ export declare function scaffoldStyleFiles(cwd: string): Promise; //# sourceMappingURL=init-scaffold.d.ts.map