meta-multi-format-export-pack

Renders one source content into docx, pptx, xlsx, and PDF deliverables.

6.8k|540|Updated May 6, 2026
One-click install
npx skills add https://github.com/opensquilla/opensquilla --skill meta-multi-format-export-pack
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: meta-multi-format-export-pack
Source: https://github.com/opensquilla/opensquilla/tree/main/src/opensquilla/skills/exp/meta-multi-format-export-pack
Command: npx skills add https://github.com/opensquilla/opensquilla --skill meta-multi-format-export-pack

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Turning a single piece of content into multiple document formats for different audiences normally requires repeating the same summarization and formatting work four times. This Skill orchestrates that process so one input produces a report, slides, a data workbook, and a print-ready PDF in a single run.

Core Features & Use Cases

  • Shared summarization step: Runs one structured summary of the source content, then reuses it as the basis for every output format.
  • Four coordinated renderers: Delegates to the docx, pptx, xlsx, and html-to-pdf skills to produce a detailed report, slide deck, data workbook, and A4 public-facing PDF.
  • Sequential execution with fallback: Runs the four renders sequentially after the shared model step, with a documented fallback where the LLM summarizes manually and calls each renderer in order.
  • Use Case: After finishing a project postmortem, trigger the multi-format export to get a Word report for stakeholders, slides for the review meeting, a spreadsheet of the structured data, and a PDF for public distribution.

Quick Start

Export this content into a docx report, pptx slides, an xlsx workbook, and a PDF using the multi-format export pack.

Frequently Asked Questions about meta-multi-format-export-pack

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I export one document into docx, pptx, xlsx, and PDF at once?

Trigger the multi-format export with your source content. The skill first generates a structured summary, then passes it to the docx, pptx, xlsx, and html-to-pdf renderers, producing all four files from one input.

What output formats does the multi-format export pack produce?

It produces four deliverables: a .docx detailed report, a .pptx slide deck, an .xlsx data workbook, and a PDF rendered from an HTML page in A4 page size for public-facing distribution.

Does the export pack render the four formats in parallel?

No. The current version runs the four renders sequentially after the shared summarization step. True parallel fan-out is planned as future work, but each render still reuses the same summary output.

What happens if the multi-format export workflow fails?

The documented fallback is for the LLM to manually summarize the source content first, then call the docx, pptx, xlsx, and html-to-pdf skills in order, reproducing the same four outputs step by step.

Can I customize the titles of the generated docx and pptx files?

Titles are derived automatically from the input message, truncated to 128 characters, with a report or slides suffix. The xlsx workbook name is a slugified version of the input truncated to 64 characters.