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
30 lines (27 loc) • 650 B
text/typescript
/**
* Gas Town Formula Module Exports
*
* Provides formula execution with WASM acceleration:
* - FormulaExecutor: Hybrid WASM/CLI executor
* - Molecule generation from cooked formulas
* - Step dependency resolution
* - Progress tracking and cancellation
*
* @module v3/plugins/gastown-bridge/formula
*/
// Main executor
export {
FormulaExecutor,
createFormulaExecutor,
// Types
type IWasmLoader,
type ExecuteOptions,
type StepContext,
type StepResult,
type Molecule,
type ExecutionProgress,
type ExecutorEvents,
type ExecutorLogger,
} from './executor.js';
// Default export
export { default } from './executor.js';