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
17 lines (14 loc) • 544 B
text/typescript
/**
* SONA Learning Modes Index
*
* Exports all learning mode implementations and the common interface.
*/
// Re-export base types and class (defined separately to avoid circular deps)
export type { ModeImplementation } from './base.js';
export { BaseModeImplementation } from './base.js';
// Export mode implementations
export { RealTimeMode } from './real-time.js';
export { BalancedMode } from './balanced.js';
export { ResearchMode } from './research.js';
export { EdgeMode } from './edge.js';
export { BatchMode } from './batch.js';