export interface ProjectInfo { type: 'node' | 'python' | 'go' | 'rust' | 'java' | 'ruby' | 'php' | 'dotnet' | 'unknown'; packageManager?: string; framework?: string; testCommand?: string; lintCommand?: string; buildCommand?: string; runCommand?: string; agentInstructions?: string; } export declare function loadAgentInstructions(cwd: string): Promise; export declare function detectProject(cwd: string): Promise; export declare function projectSummary(p: ProjectInfo): string; //# sourceMappingURL=project.d.ts.map