export interface ProjectContext { name: string; repo?: string; } export type DetectedIDE = 'vscode' | 'cursor' | 'windsurf' | 'jetbrains' | 'claude' | 'codex' | 'unknown'; export interface IDEInfo { id: DetectedIDE; name: string; reloadInstructions: string; } /** * Detect which IDE/tool is running this process based on environment variables */ export declare function detectIDE(): IDEInfo; export declare function detectContext(cwd?: string): ProjectContext; //# sourceMappingURL=detect.d.ts.map