devflow-ai
Version:
Enterprise-grade AI agent orchestration with swarm management UI dashboard
25 lines (20 loc) • 757 B
text/typescript
/**
* Hive Mind Module Export
*
* Main entry point for the Hive Mind collective intelligence system
*/
// Core classes
export { HiveMind } from './core/HiveMind.js';
export { Queen } from './core/Queen.js';
export { Agent } from './core/Agent.js';
export { Memory } from './core/Memory.js';
export { Communication } from './core/Communication.js';
export { DatabaseManager } from './core/DatabaseManager.js';
// Integration layer
export { MCPToolWrapper } from './integration/MCPToolWrapper.js';
export { SwarmOrchestrator } from './integration/SwarmOrchestrator.js';
export { ConsensusEngine } from './integration/ConsensusEngine.js';
// Types
export * from './types.js';
// Default export
export { HiveMind as default } from './core/HiveMind.js';