/** * System prompt for the durable-to-YAML compiler. * * Teaches the LLM how to convert procedural durable TypeScript workflows * (Temporal-like API via HotMesh Durable) into equivalent YAML DAGs. */ import type { DurableSourceMetadata } from './types'; /** * Build the system prompt for durable→YAML compilation. * * @param activityTypesRef - Full activity-types.md reference content * @param metadata - Parsed metadata from the source workflow */ export declare function DURABLE_COMPILER_SYSTEM_PROMPT(activityTypesRef: string, metadata: DurableSourceMetadata): string; /** * Build the user message containing the source code and context. */ export declare function buildUserMessage(source: string, metadata: DurableSourceMetadata, activitiesSource?: string): string;