/** * search_docs Tool * * Semantic search over indexed repository documentation. * Returns relevant chunks with file paths for targeted reading. * * Like search (for scars), but for docs. */ import type { Project } from "../types/index.js"; export interface SearchDocsParams { query: string; project?: Project; category?: string; match_count?: number; } export interface SearchDocsResultEntry { id: string; file_path: string; chunk_index: number; title: string; section_title: string; category: string; content: string; similarity: number; } export interface SearchDocsResult { query: string; project: string; results: SearchDocsResultEntry[]; total_found: number; index_stats: { total_chunks: number; total_files: number; }; display: string; } export declare function searchDocsHandler(params: SearchDocsParams): Promise; //# sourceMappingURL=search-docs.d.ts.map