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
65 lines (59 loc) • 1.55 kB
text/typescript
/**
* V3 CLI Services Index
* Central registry for all background services
*/
export {
WorkerDaemon,
getDaemon,
startDaemon,
stopDaemon,
type WorkerType,
} from './worker-daemon.js';
export {
HeadlessWorkerExecutor,
HEADLESS_WORKER_TYPES,
HEADLESS_WORKER_CONFIGS,
LOCAL_WORKER_TYPES,
LOCAL_WORKER_CONFIGS,
ALL_WORKER_CONFIGS,
isHeadlessWorker,
isLocalWorker,
getModelId,
getWorkerConfig,
type HeadlessWorkerType,
type LocalWorkerType,
type HeadlessWorkerConfig,
type HeadlessExecutionResult,
type HeadlessExecutorConfig,
type HeadlessOptions,
type PoolStatus,
type SandboxMode,
type ModelType,
type OutputFormat,
type ExecutionMode,
type WorkerPriority,
type WorkerConfig,
} from './headless-worker-executor.js';
// Container Worker Pool (Phase 3)
export {
ContainerWorkerPool,
type ContainerInfo,
type ContainerPoolConfig,
type ContainerExecutionOptions,
type ContainerPoolStatus,
type ContainerState,
} from './container-worker-pool.js';
// Worker Queue (Phase 4)
export {
WorkerQueue,
type QueueTask,
type WorkerQueueConfig,
type QueueStats,
type WorkerRegistration,
type TaskStatus,
} from './worker-queue.js';
// Re-export types
export type { default as WorkerDaemonType, DaemonConfig } from './worker-daemon.js';
export type { default as HeadlessWorkerExecutorType } from './headless-worker-executor.js';
export type { default as ContainerWorkerPoolType } from './container-worker-pool.js';
export type { default as WorkerQueueType } from './worker-queue.js';