agentsclimarketplace

Creating presentations

Skill telagod/code-abyss/skills/creating-presentations

Processes PowerPoint presentation files (.pptx). Creates slides, rewrites templates, converts HTML to presentations, validates thumbnails, swaps layouts, and performs deep OOXML editing. Use when working with presentation files or slide decks. Do NOT use for Word documents, spreadsheets, or PDF files.From its SKILL.md

Install
npx -y skills add telagod/code-abyss --skill creating-presentations

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • runs commandsInstructs the agent to run 8 commands, including `scripts/html2pptx.js` and 7 more.

SKILL.md

3.8 KB, 904 tokens by cl100k_base, as published. Nobody here has run it

PPTX Processing

.pptx is a ZIP archive of XML and resources. Choose workflow by intent.

Workflow Decision

IntentWorkflowReference
Read textmarkitdown → markdownthumbnails-and-conversion.md
Analyze layout / comments / themeunpack → raw XMLthumbnails-and-conversion.md
Create new from scratchhtml2pptxhtml2pptx.md + design-patterns.md
Create using templaterearrange + inventory + replacetemplate-workflow.md
Edit existing slidesunpack → OOXML → packooxml.md
Visual reviewthumbnail gridsthumbnails-and-conversion.md

Iron Rules

  • Color choice is design — see palettes.md, state your approach BEFORE code.
  • Web-safe fonts only — Arial, Helvetica, Times New Roman, Georgia, Courier New, Verdana, Tahoma, Trebuchet MS, Impact.
  • Layout matches content count — 2 items → 2 columns; 3 → 3; never force.
  • Validate visually — always generate thumbnails after creation, inspect for cutoff/overlap/contrast.

Create New (without template) — html2pptx

  1. MANDATORY — READ ENTIRE FILE: html2pptx.md. NEVER set range limits.
  2. Create HTML per slide (e.g., 720pt × 405pt for 16:9)
    • Use <p>, <h1><h6>, <ul>, <ol>
    • class="placeholder" for chart/table areas (gray bg for visibility)
    • CRITICAL: Rasterize gradients & icons as PNG via Sharp first, then reference in HTML
    • Use full-slide or two-column layout for charts/tables — never vertical stack
  3. Run scripts/html2pptx.js to convert
    • html2pptx() per HTML file
    • Charts/tables via PptxGenJS API on placeholders
    • pptx.writeFile() to save
  4. Visual validationpython scripts/thumbnail.py output.pptx workspace/thumbnails --cols 4
    • Inspect for: text cutoff, overlap, positioning, contrast
    • Adjust HTML margins/spacing/colors, regenerate, repeat

Create with Template

See template-workflow.md for full 7-step workflow (extract → inventory → outline → rearrange → inventory text → generate replacements → apply).

Edit Existing Presentation

  1. MANDATORY — READ ENTIRE FILE: ooxml.md (~500 lines). NEVER set range limits.
  2. python ooxml/scripts/unpack.py <file> <dir>
  3. Edit XML (primarily ppt/slides/slide{N}.xml)
  4. CRITICAL — validate after each edit: python ooxml/scripts/validate.py <dir> --original <file>
  5. python ooxml/scripts/pack.py <dir> <file>

Code Style

Concise code, no verbose names, no unnecessary print statements.

Dependencies

PackageInstallPurpose
markitdownpip install "markitdown[pptx]"Text extraction
pptxgenjsnpm i -g pptxgenjsCreate via html2pptx
playwrightnpm i -g playwrightHTML rendering
react-iconsnpm i -g react-icons react react-domIcons
sharpnpm i -g sharpSVG rasterization
LibreOfficeapt install libreofficePDF conversion
Popplerapt install poppler-utilspdftoppm
defusedxmlpip install defusedxmlSecure XML

What ships with it: 58 files

1188.5 KB alongside SKILL.md, 13 of them executable

ooxml/

18 more files not listed here. See all 58 in the repository.

Gives 0 of the 12 instructions most pdf office docs skills give in 904 tokens

Counted across 569 of the 585 authors here whose files we hold, read 2026-09-06

  • Ensure every slide fits inside one viewportin 20 of 569, across 11 files
  • Check for product marketing context firstin 15 of 569, across 5 files
  • Ask for the minimum neededin 15 of 569, across 5 files
  • Set the API key environment variablein 15 of 569, across 10 files
  • Support keyboard and touch navigationin 14 of 569, across 5 files
  • Match the buyer stagein 13 of 569, across 3 files
  • Split overflowing content into multiple slidesin 12 of 569, across 3 files
  • Set page size explicitly for consistent resultsin 12 of 569, across 5 files
  • Convert documents to markdown using pandocin 12 of 569, across 6 files
  • Read STYLE_PRESETS.md before generatingin 12 of 569, across 7 files
  • Send multipart POST requests to the APIin 12 of 569, across 7 files
  • Use smart quotes for new contentin 11 of 569, across 4 files

Said here and by no other author read

  • Choose workflow by intent
  • State your color approach before code
  • Validate visually using thumbnails
  • Run html2pptx script to convert

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.