/** * Prompt building for the "docspec generate" command (create docspec + LLM prompts). * Docspec file creation from template: create.ts. */ export interface DocspecGenerateOptions { /** Path to the markdown file (repo-relative, e.g. README.md or docs/deploy.md). */ markdownPath: string; /** If true, overwrite existing docspec. If false and docspec exists, throws. */ overwrite?: boolean; /** Repo root (default process.cwd()). */ repoRoot?: string; } /** * Generate the docspec file (if missing or overwrite), then build plan and implementation prompts. * Returns combined prompt (implementation prompt with {{PLAN}} placeholder) and optional paths to write. */ export declare function buildDocspecGeneratePrompts(options: DocspecGenerateOptions & { outputPromptPath?: string; outputPlanPath?: string; }): Promise<{ planPrompt: string; implPrompt: string; outputPromptPath?: string; outputPlanPath?: string; }>; //# sourceMappingURL=generate.d.ts.map