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
15 lines • 443 B
JavaScript
// Session manager stub for compatibility
export class SessionManager {
sessions = new Map();
createSession(sessionId, config) {
this.sessions.set(sessionId, config);
}
getSession(sessionId) {
return this.sessions.get(sessionId);
}
removeSession(sessionId) {
this.sessions.delete(sessionId);
}
}
export const sessionManager = new SessionManager();
//# sourceMappingURL=session-manager.js.map