/** * Search-First Workflow — Research before implementation. * Builds prompts that force the AI to understand existing code patterns * before proposing new implementations. */ /** * Build a prompt that tells the AI to research existing code first */ export declare function buildSearchFirstPrompt(task: string, cwd: string): string; /** * Build a prompt for looking up documentation */ export declare function buildDocsLookupPrompt(query: string, cwd: string): string; /** * Print a summary of the research workflow */ export declare function printSearchFirstSummary(): void;