/** * YAML workflow generator — slim orchestrator for the compilation pipeline. * * Coordinates five stages: * extract → analyze → compile → build → validate * * Each stage is a dedicated module in ./pipeline/ that receives and returns * a shared PipelineContext. */ import type { GenerateYamlOptions, GenerateYamlResult } from './types'; export { capToolArguments } from './pipeline/build'; export type { GenerateYamlOptions, GenerateYamlResult } from './types'; export type { EnhancedCompilationPlan as CompilationPlan } from './types'; /** * Generate a HotMesh YAML workflow from a completed execution's tool call sequence. * * Analyzes the execution events, extracts the ordered tool calls, compiles * them through an LLM-powered intent analysis, and produces a deterministic * YAML DAG that replaces the LLM with direct tool-to-tool piping. */ export declare function generateYamlFromExecution(options: GenerateYamlOptions): Promise;