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
31 lines (27 loc) • 657 B
text/typescript
/**
* Swarm Application Layer - Public Exports
*
* @module v3/swarm/application
*/
// Commands
export {
SpawnAgentCommandHandler,
TerminateAgentCommandHandler,
type SpawnAgentInput,
type SpawnAgentResult,
type TerminateAgentInput,
type TerminateAgentResult,
} from './commands/spawn-agent.command.js';
export {
CreateTaskCommandHandler,
CancelTaskCommandHandler,
type CreateTaskInput,
type CreateTaskResult,
type CancelTaskInput,
type CancelTaskResult,
} from './commands/create-task.command.js';
// Application Service
export {
SwarmApplicationService,
type SwarmConfig,
} from './services/swarm-application-service.js';