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),

30 lines (29 loc) • 916 B
export interface ConfigValidator { validate(context: any): Promise<any>; } export interface QualityDashboard { overallScore: number; issueBreakdown?: any; } export interface EnhancedValidationResults { score: number; issues: any[]; warnings: string[]; recommendations: any[]; configurationScore: number; } export declare class RouteConfigValidator implements ConfigValidator { validate(context: any): Promise<any>; } export declare class NavigationValidator implements ConfigValidator { validate(context: any): Promise<any>; } export declare class ProfileContextValidator implements ConfigValidator { validate(context: any): Promise<any>; } export declare class ProductionCodeValidator implements ConfigValidator { validate(context: any): Promise<any>; } export declare class CrossFileValidator implements ConfigValidator { validate(context: any): Promise<any>; }