UNPKG

mcp-adr-analysis-server

Version:

MCP server for analyzing Architectural Decision Records and project architecture

23 lines 1.04 kB
/** * Deployment Readiness Tool - Version 1.0 * * Comprehensive deployment validation with test failure tracking, deployment history analysis, * and hard blocking integration with smart git push. * * IMPORTANT FOR AI ASSISTANTS: This tool provides: * 1. Test Execution Validation: Zero tolerance for test failures * 2. Deployment History Analysis: Pattern detection and success rate tracking * 3. Code Quality Gates: Mock vs production code detection * 4. Hard Blocking: Prevents unsafe deployments via smart git push integration * * Cache Dependencies: * - CREATES/UPDATES: .mcp-adr-cache/deployment-history.json (deployment tracking) * - CREATES/UPDATES: .mcp-adr-cache/deployment-readiness-cache.json (analysis cache) * - INTEGRATES: smart-git-push-tool for deployment blocking * - INTEGRATES: todo-management-tool for automatic task creation */ /** * Main deployment readiness function */ export declare function deploymentReadiness(args: any): Promise<any>; //# sourceMappingURL=deployment-readiness-tool.d.ts.map