/** * openlore run — programmatic API * * Runs the full pipeline: init → analyze → generate. * Smart defaults skip unnecessary steps. * No side effects (no process.exit, no console.log). */ import type { RunApiOptions, RunResult } from './types.js'; /** * Run the full openlore pipeline: init → analyze → generate. * * Uses smart defaults to skip unnecessary steps (e.g., skips init * if config exists, skips analysis if recent). * * @throws Error if no LLM API key found * @throws Error if pipeline fails */ export declare function openloreRun(options?: RunApiOptions): Promise; //# sourceMappingURL=run.d.ts.map