//#region src/config/prompts.d.ts /** * Markdown contract for the compaction summary. * * Used in two places: * 1. fallback for `loadEffectiveCompactionPromptContract` when no * contract file exists on disk * 2. embedded inside `DEFAULT_COMPACTION_TEMPLATE_BODY` below so a * fresh user with no template files still gets a complete prompt * * Pure markdown, no liquid syntax — it's data, not a template. */ declare const DEFAULT_COMPACTION_PROMPT_CONTRACT: string; declare function loadCompactionPromptContract(extensionDir?: string): Promise; declare function loadBranchSummaryPromptContract(extensionDir?: string): Promise; declare function loadEffectiveCompactionPromptContract(cwd?: string | null, agentDir?: string): Promise; declare function loadEffectiveBranchSummaryPromptContract(cwd?: string | null, agentDir?: string): Promise; //#endregion export { DEFAULT_COMPACTION_PROMPT_CONTRACT, loadBranchSummaryPromptContract, loadCompactionPromptContract, loadEffectiveBranchSummaryPromptContract, loadEffectiveCompactionPromptContract }; //# sourceMappingURL=prompts.d.mts.map