UNPKG

ai-debug-local-mcp

Version:

🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh

44 lines • 1.67 kB
/** * Professional Standards Development & Architecture Module * * Phase 4 of Professional Standards Handler modularization following the proven * AI Test Enhancement pattern. This module contains code quality, clean architecture, * and development workflow functionality. * * Contains 5 tools: * - enforce_code_quality * - implement_clean_architecture * - setup_dev_workflows * - integrate_ai_debug_standards * - implement_premium_support * * @module professional-standards-development * @since Cycle 21 - July 13, 2025 */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { AuditEngine } from '../audit-engine.js'; import { LocalDebugEngine } from '../local-debug-engine.js'; import { DebugSession } from '../types.js'; export declare class ProfessionalStandardsDevelopment { private auditEngine; private localEngine; constructor(auditEngine: AuditEngine, localEngine: LocalDebugEngine); getTools(): Tool[]; handleTool(toolName: string, args: any, sessions: Map<string, DebugSession>): Promise<any>; private enforceCodeQuality; private implementCleanArchitecture; private setupDevWorkflows; private integrateAIDebugStandards; private implementPremiumSupport; private initializeCodeQuality; private deployCodeQualityStandards; private initializeCleanArchitecture; private deployCleanArchitecture; private initializeDevWorkflows; private deployDevWorkflows; private initializeAIDebugIntegration; private deployAIDebugIntegration; private initializePremiumSupport; private deployPremiumSupport; } //# sourceMappingURL=professional-standards-development.d.ts.map