Skill review · Anthropic official
Claude PowerPoint Skill
The claude powerpoint skill this search points to is Anthropic's own pptx skill, published in the anthropics/skills repository at skills/pptx alongside docx, xlsx, and pdf siblings. It is the production skill behind Claude's file-creation feature: a 20KB instruction file plus Python helper scripts that teach Claude to build new decks with pptxgenjs, edit existing .pptx and .potx files by unpacking and rewriting the raw OOXML, and read decks via markitdown and rendered thumbnail grids. The repo holds roughly 173,000 stars and was last pushed August 2026; the pptx folder itself was last updated July 2026. One thing to know before installing: on Claude.ai paid plans this skill is already built in, so installation only matters for Claude Code (via the plugin marketplace) and the API. Note the license, too — the document skills are source-available, not open source, and Anthropic's terms prohibit derivative works and redistribution.
Founder, Automation Squad ·
Install
- 1In Claude Code, register Anthropic's marketplace: /plugin marketplace add anthropics/skills
- 2Install the document skills plugin: /plugin install document-skills@anthropic-agent-skills — this installs pptx plus the docx, xlsx, and pdf siblings in one step
- 3Trigger it by mentioning a deck or a .pptx/.potx file ("build me a pitch deck as .pptx") — the skill loads automatically whenever PowerPoint files are involved
- 4On Claude.ai: nothing to install — document skills are already available on paid plans and power the built-in file-creation feature
- 5On the Claude API: attach the prebuilt pptx skill via the Skills API with the code-execution tool (see the Skills API quickstart in Anthropic's platform docs)
What it does
- Create decks
- Writes pptxgenjs scripts to generate native .pptx files — native charts via addChart, speaker notes, icons rendered from react-icons to PNG. The SKILL.md documents an unusually long list of file-corruption footguns (a # in hex colors, negative shadow offsets, outEnd labels on stacked bars, combo charts missing axis declarations) and how to avoid each.
- Edit existing decks and templates
- Unzips the .pptx, edits ppt/slides/slideN.xml directly, rezips. Helper scripts: add_slide.py duplicates slides with all package bookkeeping, clean.py purges orphaned slides/media/rels, and .potx corporate templates unpack and repack identically.
- Read and analyze
- Extracts per-slide text with markitdown; thumbnail.py renders a labeled grid of every slide so Claude can map content onto a template's layouts before filling it in.
- Validate and convert
- scripts/office/validate.py runs schema, relationship, content-type, and chart checks, naming the fix for each failure (with --original to baseline against a template); a LibreOffice wrapper converts to PDF/images and legacy .ppt to .pptx.
- Design guidance
- Bakes in ten named color palettes, layout patterns (two-column, icon rows, stat callouts, half-bleed images), and a visual-motif rule so output is not plain bullets on white.
Common questions
- Is the Claude PowerPoint skill official?
- Yes. Anthropic ships it in the anthropics/skills repository at skills/pptx, and it is the same skill that powers Claude's built-in file creation. It is source-available under a proprietary license, not open source.
- Can it edit my existing corporate template?
- Yes. It unpacks .pptx and .potx files, edits the slide XML directly, and ships scripts to duplicate slides with correct package bookkeeping and render a thumbnail grid of every layout. A validator can baseline checks against the original template so its quirks don't read as your errors.
- Do I need to install it on claude.ai?
- No. Paid Claude.ai plans already include the document skills. Installation only matters in Claude Code, via /plugin marketplace add anthropics/skills then /plugin install document-skills@anthropic-agent-skills, or on the API via the Skills API.
- What about Word and Excel files?
- The docx and xlsx siblings live in the same repo and install together through the same document-skills plugin, alongside a pdf skill. All four were last updated together in July 2026 and share the same proprietary license.
