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

37 lines (36 loc) • 973 B
export interface SimulationScenario { id: string; name: string; status: string; featureName?: string; evidence?: any; confidence?: number; testCases?: TestCase[]; promise?: string; expectedBehavior?: string; actualBehavior?: string; } export interface TestCase { id: string; name: string; description?: string; timestamp?: number; passed?: boolean; actualResult?: any; executionTime?: number; action?: string; expectedResult?: any; } export interface CapabilityMatrix { [key: string]: any; } export { SimulationQa as SimulationQA }; import { BaseAgent, AgentResponse, AgentActivationContext } from './base-agent.js'; export declare class SimulationQa extends BaseAgent { name: string; id: string; specialization: string; systemPrompt: string; activate(context: AgentActivationContext): Promise<AgentResponse>; getCapabilityMatrix(): Promise<CapabilityMatrix | null>; }