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

19 lines • 1.06 kB
/** * 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'; export { PortAllocator } from './port-allocator'; export { ResourceMonitor } from './resource-monitor'; export { CleanupCoordinator } from './cleanup-coordinator'; export { PersistentSessionStorage } from './persistent-storage'; export { ProjectSession, SessionStatus, ResourceSummary, OptimizationSuggestion, SessionRegistryConfig, SessionEvent, PortRange, ResourceMetrics, ResourceQuotas, ProjectMetadata, DEFAULT_CONFIG, DEFAULT_QUOTAS } from './types'; import { SessionRegistry as SessionRegistryClass } from './session-registry'; import { SessionRegistryConfig } from './types'; export declare function createSessionRegistry(config?: Partial<SessionRegistryConfig>): SessionRegistryClass; //# sourceMappingURL=index.d.ts.map