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
40 lines • 1.11 kB
TypeScript
/**
* Core types for ai-debug handlers
*/
export interface AgentFinding {
id: string;
agentId: string;
timestamp: Date;
severity: 'info' | 'warning' | 'error' | 'critical';
category: string;
title: string;
description: string;
context?: any;
actionable: boolean;
autoFixAvailable: boolean;
humanEscalationNeeded: boolean;
}
export interface EscalationContext {
sessionId?: string;
toolName?: string;
currentPhase: string;
userExperience: 'beginner' | 'intermediate' | 'expert';
timeConstraint: 'none' | 'moderate' | 'urgent';
projectComplexity: 'simple' | 'moderate' | 'complex';
lastActions: string[];
errorHistory: any[];
}
export interface ContextMessage {
type: 'discovery' | 'decision' | 'progress' | 'error' | 'insight' | 'state_change';
agentId: string;
timestamp: Date;
content: any;
priority: 'low' | 'medium' | 'high' | 'critical';
scope: 'local' | 'project' | 'global';
}
export interface Tool {
name: string;
description: string;
inputSchema: any;
}
//# sourceMappingURL=types.d.ts.map