/** * Externalized prompts for the workflow builder. * * The system prompt teaches the LLM how to construct HotMesh YAML DAGs * directly from tool schemas — no execution trace needed. */ export declare function BUILDER_SYSTEM_PROMPT(toolInventory: string, activitySuffix?: string): string; export declare const REFINE_PROMPT = "The workflow was tested and produced errors or incorrect results. Review the execution trace below and fix the YAML.\n\nCommon issues:\n- Missing .png extension on screenshot paths\n- Field name mismatch between output and input (e.g., producer outputs \"path\" but consumer expects \"image\")\n- Missing _scope or workflowName in input.maps\n- Wrong activity ID references in mappings\n- Missing job.maps on the final activity\n\nReturn the same JSON format as before with corrected yaml, activity_manifest, etc.";