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

39 lines (36 loc) 882 B
/** * Convoy Module Exports * * Provides convoy tracking and observation capabilities for the * Gas Town Bridge Plugin. Convoys are work-order groups that track * related beads (issues) through their lifecycle. * * @module gastown-bridge/convoy */ // Convoy Tracker export { ConvoyTracker, createConvoyTracker, // Types type ConvoyEventType, type ConvoyEvent, type ConvoyTrackerConfig, type ConvoyLogger, } from './tracker.js'; // Convoy Observer export { ConvoyObserver, createConvoyObserver, // Lazy loading support (defers observer initialization until first watch) createLazyConvoyObserver, getLazyObserverStats, // Types type WasmGraphModule, type CompletionCallback, type WatchHandle, type ConvoyObserverConfig, type BlockerInfo, type ReadyIssueInfo, type CompletionCheckResult, type ObserverLogger, } from './observer.js';