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

22 lines • 921 B
/** * Session Registry - Multi-Project Resource Coordination * * Main exports for the session registry system that provides: * - Multi-project resource isolation * - Automatic port management * - Resource monitoring and cleanup * - Project-scoped temporary directories */ export { SessionRegistry } from './session-registry.js'; export { PortAllocator } from './port-allocator.js'; export { ResourceMonitor } from './resource-monitor.js'; export { CleanupCoordinator } from './cleanup-coordinator.js'; export { PersistentSessionStorage } from './persistent-storage.js'; export { DEFAULT_CONFIG, DEFAULT_QUOTAS } from './types.js'; // Re-export SessionRegistry constructor import { SessionRegistry as SessionRegistryClass } from './session-registry.js'; // Convenience factory function export function createSessionRegistry(config) { return new SessionRegistryClass(config); } //# sourceMappingURL=index.js.map