/** * Composer functions that assemble prompt parts into complete prompt documents. * * @module prompts/compose */ import { PromptContext } from './types'; /** * Full babysit skill prompt -- equivalent to the current SKILL.md content. * Used to generate SKILL.md files for each harness plugin. */ export declare function composeBabysitSkillPrompt(ctx: PromptContext): string; /** * Process creation instructions only -- for phase 1 agents. */ export declare function composeProcessCreatePrompt(ctx: PromptContext): string; /** * Orchestration loop instructions -- for phase 2 agents. */ export declare function composeOrchestrationPrompt(ctx: PromptContext): string; /** * Breakpoint handling instructions -- for breakpoint-specific contexts. */ export declare function composeBreakpointPrompt(ctx: PromptContext): string; /** * Join non-empty sections with separator. */ export declare function joinNonEmpty(sections: string[]): string; //# sourceMappingURL=compose.d.ts.map