pptx

pptx is a skill for Claude Code from andregusman-raiz/a-gusman-claude. It costs 41 tokens per session (3,100 once invoked), scanned A, original, MIT.

A tool for creating, editing, and analysing PowerPoint presentations in .pptx format. It works with slide content and layouts, including presentations based on existing templates.

In plain words
What is it for?
Use it to create slide decks, extract text, edit existing presentations, reuse templates, and convert slides to PDF for review.
Why use it?
It reduces manual slide editing and helps keep presentation content and formatting consistent.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: model in frontmatter.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is zip -r ../modified.pptx . -x ".*".

Good fit Use it to create slide decks, extract text, edit existing presentations, reuse templates, and convert slides to PDF for review.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/andregusman-raiz/a-gusman-claude
agentmods
npx agentmods add skills/andregusman-raiz/a-gusman-claude/pptx

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pptx

README.md
[![agentmods](https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/pptx/github.svg)](https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/pptx)
Your own site
<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/pptx"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/pptx/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pptx

Your own site · 80×15
<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/pptx"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/pptx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,100 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 4
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.03100
Opus 5 $0.00020 $0.01550
Sonnet 5 $0.00008 $0.00620
Haiku 4.5 $0.00004 $0.00310

Measured 8d ago against content hash 096ef83fe5af, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

pptx scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (templates/pptx_utils.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/pptx/SKILL.md · 308 lines

How it starts

The opening of the file, as written. The whole thing — 308 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PPTX Skill

Criar, editar e analisar apresentacoes PowerPoint. Usa OOXML manipulation direto.

Quick Reference

Task Best Tool Notes
Extract text markitdown pip install markitdown
Create from scratch html2pptx workflow HTML -> LibreOffice -> PPTX
Edit existing OOXML unpack/edit/pack Manipulacao XML direta
Template-based OOXML inventory + replace Reusar layout existente
Convert to PDF LibreOffice libreoffice --headless --convert-to pdf
Thumbnails/QA LibreOffice + ImageMagick Grid visual para revisao

Reading Content

markitdown (text extraction)

pip install markitdown
from markitdown import MarkItDown
md = MarkItDown()
result = md.convert("presentation.pptx")
print(result.text_content)

Direct XML inspection

# PPTX is a ZIP file
unzip -l presentation.pptx
unzip -p presentation.pptx ppt/slides/slide1.xml | xmllint --format -

Creating from Scratch — html2pptx Workflow

O metodo mais confiavel para criar PPTX do zero:

  1. Gerar HTML com slides como sections
  2. Converter HTML -> PPTX via LibreOffice
  3. Refinar via OOXML editing se necessario
# 1. Create HTML file with slide content
cat > /tmp/slides.html << 'HTMLEOF'
<!DOCTYPE html>
<html>
<head><style>
  .slide { page-break-after: always; padding: 40px; font-family: Arial; }
  h1 { color: #1a1a2e; font-size: 36px; }
  h2 { color: #16213e; font-size: 28px; }
  ul { font-size: 20px; line-height: 1.8; }
  .subtitle { color: #666; font-size: 18px; }
</style></head>
<body>
  <div class="slide">
    <h1>Title Slide</h1>
    <p class="subtitle">Subtitle here</p>
  </div>
  <div class="slide">
    <h2>Content Slide</h2>
    <ul>
      <li>Point one</li>
      <li>Point two</li>
      <li>Point three</li>
    </ul>
  </div>
</body>
</html>
HTMLEOF

# 2. Convert to PPTX
libreoffice --headless --convert-to pptx /tmp/slides.html --outdir /tmp/

# 3. Verify
ls -la /tmp/slides.pptx

Read the full file on GitHub · 308 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 308 lines · 41 tokens per session scan A 096ef83fe5af

Subscribe to this mod's changes

pptx is a skill published in the GitHub repository andregusman-raiz/a-gusman-claude (19 stars, last pushed 2d ago), licensed MIT. It adds 41 tokens to every session and 3,100 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

docs-sync-internal

Use when code changes on the current branch need matching internal or developer documentation — "update our internal docs", "the architecture docs are stale after this change", "document what I just changed", "do the dev docs still match the code?" — or as a pre-push check that developer docs track the code. Narrower…

The01Geek/prflow · 105 tokens

download-media

Use when user wants to download, save, or extract media files such as photos, videos, and documents from Telegram messages.

terrylica/cc-skills · 28 tokens

ai-image-to-pptx

A workflow that creates a set of related images with AI and places them into a real PowerPoint file. The resulting .pptx file can be opened and edited in PowerPoint, Keynote, or WPS.

huangrichao2020/pretty-skills · 93 tokens

kami

Generate PDFs, resumes, CVs, letters, slide decks, portfolios, one-pagers, white papers, and professional documents. Use when user asks to create a PDF, make a resume, write a letter, design slides, format a document, typeset a report, build a portfolio, make a presentation, or create a one-pager. Warm parchment…

EliasOulkadi/shokunin · 0 tokens

ppt-maker

Guided PPT generation for editable PowerPoint decks, table-driven reports, and enterprise-template presentations.

openakita/openakita · 22 tokens

openakita/skills@baidu-ppt-gen

AI PPT Generator skill. Quickly generate well-structured, professionally formatted presentation drafts from topics and outlines. Use when user wants to create PowerPoint presentations.

openakita/openakita · 41 tokens