UNPKG

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

29 lines 1.48 kB
/** * @claude-flow/swarm/workers * Worker Dispatch Module (agentic-flow@alpha compatible) * * Provides background worker functionality with 12 trigger types * for analysis, optimization, and automation tasks. * * Triggers: * - ultralearn: Deep pattern learning * - optimize: Code/performance optimization * - consolidate: Memory consolidation * - predict: Predictive analysis * - audit: Security/quality audit * - map: Codebase mapping * - preload: Context preloading * - deepdive: Deep code analysis * - document: Documentation generation * - refactor: Code refactoring suggestions * - benchmark: Performance benchmarking * - testgaps: Test coverage analysis * * @module @claude-flow/swarm/workers * @version 3.0.0-alpha.1 */ export { WorkerDispatchService, getWorkerDispatchService, createWorkerDispatchService, type WorkerTrigger, type WorkerStatus, type WorkerConfig, type WorkerInstance, type WorkerResult, type WorkerMetrics, type WorkerArtifact, type DispatchOptions, type TriggerDetectionResult, } from './worker-dispatch.js'; export declare const WORKER_TRIGGERS: readonly ["ultralearn", "optimize", "consolidate", "predict", "audit", "map", "preload", "deepdive", "document", "refactor", "benchmark", "testgaps"]; export declare const WORKER_PRIORITIES: readonly ["low", "normal", "high", "critical"]; export declare const WORKER_STATUSES: readonly ["pending", "running", "completed", "failed", "cancelled"]; //# sourceMappingURL=index.d.ts.map