Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

PPTX Creation, Editing & Analysis

An end-to-end skill for generating, editing, extracting from, and visually QA-ing PowerPoint .pptx/.potx files.

Docs & OfficeIntermediate1,148109AI score 10/10Last updated: Sep 20, 2026

What it does

  • Creates decks with pptxgenjs, front-loading ~20 real-world footguns that silently corrupt files (hex colors without #, negative shadow offsets, stacked-bar label positions, combo-chart axis declarations, and more).
  • Edits existing decks and templates by unzipping the package, editing ppt/slides/slideN.xml, and repacking — with helper scripts for slide duplication (add_slide.py) and orphan cleanup (clean.py).
  • Reads content via markitdown per-slide text dumps and thumbnail.py labeled slide grids for picking template layouts.
  • Guides design with 10 curated color palettes, a QA-safe font list, type-size and spacing rules, and an explicit "avoid" list (no accent stripes, no underlines beneath titles, no text-only slides).
  • Enforces QA: schema/relationship/chart validation plus PDF→JPEG rendering so overflow, overlap, and contrast defects get caught before delivery.

Who it's for

  • Consultants, founders, and PMs who build pitch decks and reports regularly
  • Teams filling corporate .potx templates over and over
  • Anyone extracting text from old presentations for summaries or emails
  • Developers automating slide generation pipelines

Example uses

  1. "Turn this business plan into a 12-slide investor deck" → picks a palette, generates with pptxgenjs, validates, renders images, fixes defects.
  2. "Fill our company template.potx with this quarter's numbers" → thumbnails the template, duplicates layouts, edits XML, validates with --original.
  3. "Summarize last year's three decks into one email" → markitdown extracts slide-by-slide text for synthesis.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/fcakyon/claude-codex-settings/HEAD/plugins/anthropic-office-skills/skills/pptx/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the plugins/anthropic-office-skills/skills/pptx folder from the GitHub repo fcakyon/claude-codex-settings into my ~/.claude/skills/fcakyon-pptx/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/fcakyon/claude-codex-settings.git /tmp/claude-codex-settings && mkdir -p ~/.claude/skills && cp -r /tmp/claude-codex-settings/plugins/anthropic-office-skills/skills/pptx ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repository: git clone https://github.com/fcakyon/claude-codex-settings.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r claude-codex-settings/plugins/anthropic-office-skills/skills/pptx ~/.claude/skills/
  5. Install library deps: pip install "markitdown[pptx]" Pillow defusedxml lxml and npm install -g pptxgenjs
  6. Install render tooling: LibreOffice and Poppler — macOS: brew install --cask libreoffice && brew install poppler; Ubuntu: sudo apt install libreoffice poppler-utils
  7. Restart Claude Code and try "read this .pptx" or "build me a slide deck" — the skill triggers automatically.
  8. Note: the skill is licensed as Proprietary; review LICENSE.txt before redistributing or commercial use.
View source on GitHubLicense: Apache-2.0