UNPKG

@versatil/sdlc-framework

Version:

🚀 AI-Native SDLC framework with 11-MCP ecosystem, RAG memory, OPERA orchestration, and 6 specialized agents achieving ZERO CONTEXT LOSS. Features complete CI/CD pipeline with 7 GitHub workflows (MCP testing, security scanning, performance benchmarking),

14 lines (13 loc) • 355 B
export interface ProjectContext { projectInfo?: any; technology?: any; structure?: any; quality?: any; patterns?: any; codebase?: any; } export declare const environmentScanner: { scanEnvironment(): Promise<ProjectContext>; getLatestScan(): Promise<ProjectContext | null>; watchForChanges(callback: Function): void; };