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

23 lines (22 loc) • 565 B
/** * VERSATIL SDLC Framework - Agent Type Definitions */ export interface AgentContext { projectPath: string; currentPhase: string; activeAgents: string[]; metrics: Record<string, any>; } export interface AgentMessage { from: string; to: string; type: 'request' | 'response' | 'notification'; content: any; timestamp: number; } export interface AgentCapability { name: string; description: string; enabled: boolean; } export { AgentResponse, AgentActivationContext, Issue, Recommendation } from './base-agent.js';