/** * `orient` — composite orientation tool. * * Given a natural-language task description, returns in ONE call: * - Relevant functions (semantic search or BM25 fallback) * - Unique source files involved * - Spec domains that cover those files * - Depth-1 call neighbourhood for each top function * - Top insertion point candidates * - Matching spec sections (if spec index is available) * * Designed as the single entry point agents use at the start of any task, * replacing the need to chain analyze_codebase → search_code → search_specs * → suggest_insertion_points manually. */ export declare function handleOrient(directory: string, task: string, limit?: number, tokenBudget?: number, lean?: boolean, rankBy?: 'distance' | 'pagerank'): Promise; //# sourceMappingURL=orient.d.ts.map