import type { AdapterExecutionContext } from "@penclipai/adapter-utils"; import { type PaperclipSkillEntry } from "@penclipai/adapter-utils/server-utils"; type SkillEntry = PaperclipSkillEntry; export interface ClaudePromptBundle { bundleKey: string; rootDir: string; addDir: string; instructionsFilePath: string | null; } export declare function prepareClaudePromptBundle(input: { companyId: string; skills: SkillEntry[]; instructionsContents: string | null; onLog: AdapterExecutionContext["onLog"]; }): Promise; export {}; //# sourceMappingURL=prompt-cache.d.ts.map