snow-flow
Version:
Snow-Flow v3.2.0: Complete ServiceNow Enterprise Suite with 180+ MCP Tools. ATF Testing, Knowledge Management, Service Catalog, Change Management with CAB scheduling, Virtual Agent chatbots with NLU, Performance Analytics KPIs, Flow Designer automation, A
21 lines • 1.39 kB
TypeScript
/**
* Snow-Flow: ServiceNow Hive-Mind Intelligence Framework
* Built with Claude Code integration
*/
export * from './types/index.js';
export { ServiceNowOAuth } from './utils/snow-oauth.js';
export { ServiceNowClient } from './utils/servicenow-client.js';
export { Logger } from './utils/logger.js';
export { ServiceNowMCPServer } from './mcp/servicenow-mcp-server.js';
export { SnowFlowSystem, snowFlowSystem } from './snow-flow-system.js';
export { SnowFlowConfig, snowFlowConfig } from './config/snow-flow-config.js';
export { MemorySystem } from './memory/memory-system.js';
export { ErrorRecovery, FALLBACK_STRATEGIES } from './utils/error-recovery.js';
export { PerformanceTracker } from './monitoring/performance-tracker.js';
export { SystemHealth } from './health/system-health.js';
export type { SwarmSession, AgentInfo, SwarmOptions, SwarmResult, SystemStatus } from './snow-flow-system.js';
export type { ISnowFlowConfig } from './config/snow-flow-config.js';
export type { ErrorContext, RecoveryStrategy, RecoveryResult, ErrorMetrics } from './utils/error-recovery.js';
export type { PerformanceMetric, AggregateMetrics, SessionMetrics, PerformanceReport, Bottleneck } from './monitoring/performance-tracker.js';
export type { HealthCheckResult, SystemHealthStatus, SystemResources, HealthThresholds } from './health/system-health.js';
//# sourceMappingURL=index.d.ts.map