@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),
49 lines (48 loc) • 1 kB
TypeScript
/**
* VERSATIL Type Definitions
*/
export interface AgentResponse {
agentId: string;
message: string;
suggestions: any[];
priority: string;
handoffTo: string[];
context: any;
data?: any;
analysis?: any;
}
export interface AgentActivationContext {
trigger?: any;
filePath?: string;
content?: string;
[key: string]: any;
}
export interface ValidationResults {
score: number;
issues: any[];
warnings: string[];
recommendations: any[];
crossFileAnalysis?: {
inconsistencies: any[];
suggestions: string[];
};
performanceMetrics?: {
analysisTime: number;
filesAnalyzed: number;
};
securityConcerns?: any[];
}
export interface Issue {
type: string;
severity: string;
message: string;
file: string;
}
export interface Recommendation {
type: string;
priority: string;
message: string;
actions?: string[];
estimatedEffort?: string;
autoFixable?: boolean;
}