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

9 lines (8 loc) • 300 B
export declare const vectorMemoryStore: { initialize(): Promise<void>; storeMemory(memory: any): Promise<void>; searchMemories(query: string | any): Promise<any[]>; queryMemories(query: string | any): Promise<any>; getAllMemories(): Promise<any[]>; }; export type RAGQuery = any;