/** * Context Enricher Worker (Phase 2) * Explores the codebase to gather enriched context based on the analysis plan * * @deprecated v0.5.0 - No longer used in main pipeline. * The unified codebase-analyzer.ts replaces this agent. * Kept for backward compatibility and reference. */ import { type LanguageModel } from 'ai'; import type { ContextEnricherInput, EnrichedContext } from './types.js'; /** * Run the Context Enricher worker */ export declare function runContextEnricher(model: LanguageModel, modelId: string, input: ContextEnricherInput, verbose?: boolean): Promise; /** * Script name patterns for command detection * Exported for testing */ export declare const SCRIPT_MAPPINGS: Record; /** * Derive commands from package.json scripts when AI fails to discover them * Exported for testing */ export declare function deriveCommandsFromScripts(projectRoot: string): Record;