name: File Export description: Use this skill when creating downloadable files (PDF, DOCX, PPTX, XLSX, CSV, etc.). Provides patterns for the file_export MCP server.
File Export
Critical Rules
- Single File: Always use
create_file. - Multiple Files: Use
create_filemultiple times. - Archive: Only use
generate_and_archiveif the user says "zip", "archive", or "compress". - Links: Return the exact
urlfrom the tool's response.
Payloads
- PDF/DOCX: Use
content: [{"type": "paragraph", "text": "..."}] - XLSX/CSV: Use
content: [["Header1"], ["Value1"]] - PPTX: Use
slides_data: [{"title": "...", "content": ["..."]}]