/** * Analyze Command * * Indexes a repository and stores the knowledge graph in .gitnexus/ * * Delegates core analysis to the shared runFullAnalysis orchestrator. * This CLI wrapper handles: heap management, progress bar, SIGINT, * skill generation (--skills), summary output, and process.exit(). */ export interface AnalyzeOptions { force?: boolean; embeddings?: boolean; skills?: boolean; verbose?: boolean; /** Skip AGENTS.md and CLAUDE.md gitnexus block updates. */ skipAgentsMd?: boolean; /** Index the folder even when no .git directory is present. */ skipGit?: boolean; } export declare const analyzeCommand: (inputPath?: string, options?: AnalyzeOptions) => Promise;