import type { ParsedSkill } from "./transformers/index.js"; export interface ClipboardBlob { /** The text the user will paste into the cloud tool. */ blob: string; /** URL of the tool's docs page explaining where to paste. */ pasteInstructionsUrl: string; /** Optional landing page for the tool itself. */ docsUrl?: string; } /** * Build a clipboard-ready blob for a Tier-3 agent. * * The blob is a self-contained text payload: skill name, description, and * full body separated by horizontal rules. ChatGPT-style cloud tools all * accept arbitrary markdown into their custom-instruction boxes, so the * same shape works for all current Tier-3 destinations. If a future * destination needs a different shape, branch on `agentId` here. */ export declare function buildClipboardBlob(skill: ParsedSkill, agentId: string): ClipboardBlob;