claude-flow
Version:
Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration
19 lines • 702 B
JavaScript
/**
* V3 Core Module - Public API
* Domain-Driven Design with Clean Architecture
*
* This module provides the core architecture for claude-flow v3:
* - Decomposed orchestrator (task, session, health, lifecycle management)
* - Event-driven architecture with event bus and coordinator
* - Type-safe configuration with Zod validation
* - Clean interfaces following DDD principles
*/
// Interfaces (Domain contracts)
export * from './interfaces/index.js';
// Event system
export { EventBus, createEventBus } from './event-bus.js';
// Orchestrator components (decomposed)
export * from './orchestrator/index.js';
// Configuration
export * from './config/index.js';
//# sourceMappingURL=index.js.map