/** * Project Detection Module * * Detects project type and framework based on configuration files and directory structure. */ export interface ProjectDetection { type: ProjectType[]; frameworks: string[]; hasGit: boolean; hasVSCode: boolean; hasCursor: boolean; } export type ProjectType = "nodejs" | "python" | "rust" | "go" | "java" | "dotnet" | "ruby" | "unknown"; /** * Detect project type(s) and frameworks in the given directory */ export declare function detectProject(projectRoot: string): ProjectDetection; /** * Get human-readable project description */ export declare function describeProject(detection: ProjectDetection): string;