بنقرة واحدة
document-export
Render a document to a requested output format and return a download path.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Render a document to a requested output format and return a download path.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate a Word document from ingested source documents using the agnostic Document tree (CommonMark/Pandoc-aligned)
Generate a single Document (Word/PowerPoint) from all source documents in a collection, with attributions back to each source
Generate a PDF from ingested source documents using the agnostic Document tree
Generate a PowerPoint deck from ingested source documents using the agnostic Document tree (parametrised by slide_count, style, audience, tone)
Generate an Excel workbook (.xlsx) from ingested source documents — tabular with charts, formulas, KPI cells
Find PII (emails, phones, SSN, credit cards, IBANs, names, addresses, DOB) in an ingested document; return redaction plan
| name | document-export |
| description | Render a document to a requested output format and return a download path. |
| inputs | [{"name":"document_id","type":"string","required":true,"description":"UUID of the Document to export."},{"name":"format","type":"string","required":true,"description":"Output format — one of \"docx\", \"pdf\", \"pptx\", or \"html\"."},{"name":"version","type":"integer","required":false,"description":"Version number to export. Defaults to current version."}] |
| outputs | [{"name":"export_path","type":"string","description":"Filesystem or object-store path to the rendered output file."},{"name":"export_size_bytes","type":"integer","description":"Size of the exported file in bytes."}] |
| tools | ["file-render"] |
Use this skill when the user explicitly requests a file download or asks to convert a
document to a specific format. It should always be the last skill in a chain — run
document-redact first if a sanitized version is needed.
Document, Chapter, Section, and Page rows (for the requested version
via DocumentInstance if specified) from the DB to reconstruct content.file-render, which calls
LibreOffice or the HTML renderer as appropriate.DocumentInstance row that
records the exported artifact for later retrieval.Emits one ExecutionHistory row with event_type=DOCUMENT_EXPORTED and actor_type=agent
after the rendered file is confirmed written.