PPTX Creation, Editing & Analysis
An end-to-end skill for generating, editing, extracting from, and visually QA-ing PowerPoint .pptx/.potx files.
Docs & OfficeIntermediate★ 1,148⑂ 109AI 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
markitdownper-slide text dumps andthumbnail.pylabeled 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
- "Turn this business plan into a 12-slide investor deck" → picks a palette, generates with pptxgenjs, validates, renders images, fixes defects.
- "Fill our company template.potx with this quarter's numbers" → thumbnails the template, duplicates layouts, edits XML, validates with
--original. - "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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal.
- Clone the repository:
git clone https://github.com/fcakyon/claude-codex-settings.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r claude-codex-settings/plugins/anthropic-office-skills/skills/pptx ~/.claude/skills/ - Install library deps:
pip install "markitdown[pptx]" Pillow defusedxml lxmlandnpm install -g pptxgenjs - Install render tooling: LibreOffice and Poppler — macOS:
brew install --cask libreoffice && brew install poppler; Ubuntu:sudo apt install libreoffice poppler-utils - Restart Claude Code and try "read this .pptx" or "build me a slide deck" — the skill triggers automatically.
- Note: the skill is licensed as Proprietary; review LICENSE.txt before redistributing or commercial use.
View source on GitHub ↗License: Apache-2.0