pptx-creator

pptx-creator is a skill for Claude Code, Codex from Jignesh-Ponamwar/skills-mcp. It costs 85 tokens per session (1,887 once invoked), scanned A, original, Apache-2.0.

A guide for creating, reading, and editing PowerPoint presentations in `.pptx` format. It covers extracting text, making slide images, generating presentations with JavaScript, and changing existing presentation files.

In plain words
What is it for?
Use it to build presentations, extract slide text, create thumbnails for review, or update existing PowerPoint files.
Why use it?
It gives a repeatable way to inspect presentation content and produce or modify slides without handling the file format from scratch.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

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

Good fit Use it to build presentations, extract slide text, create thumbnails for review, or update existing PowerPoint files.

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/Jignesh-Ponamwar/skills-mcp
agentmods
npx agentmods add skills/jignesh-ponamwar/skills-mcp/pptx-creator

Made for: Claude Code, Codex.

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-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/pptx-creator/github.svg)](https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/pptx-creator)
Your own site
<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/pptx-creator"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/pptx-creator/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-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/pptx-creator"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/pptx-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,887 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.
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.00085 $0.01887
Opus 5 $0.00043 $0.00944
Sonnet 5 $0.00017 $0.00377
Haiku 4.5 $0.00009 $0.00189

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

Security

Grade A, and why

pptx-creator 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 11d ago.

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.

skill_mcp/skills_data/pptx-creator/SKILL.md · 226 lines

How it starts

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

PowerPoint Presentation Skill (PPTX)

Three Workflows

Workflow When to Use
Read Extract text, generate thumbnails from an existing PPTX
Create Build a new presentation from scratch using pptxgenjs
Edit Unpack XML, modify content, repack existing PPTX

Workflow 1: Reading an Existing PPTX

Extract Text (requires markitdown)

pip install markitdown
from markitdown import MarkItDown

converter = MarkItDown()
result = converter.convert("presentation.pptx")
print(result.text_content)  # all slides as markdown

Generate Slide Thumbnails

# Requires LibreOffice
libreoffice --headless --convert-to png presentation.pptx
# Generates: Slide1.png, Slide2.png, ...

Workflow 2: Create a New Presentation with pptxgenjs

Setup

npm install pptxgenjs

Complete Example

const PptxGenJS = require('pptxgenjs')
const pptx = new PptxGenJS()

// Set presentation properties
pptx.layout = 'LAYOUT_WIDE'  // 16:9
pptx.author = 'Claude'

// ─── SLIDE 1: Title Slide ───────────────────────────────────────────────────
const slide1 = pptx.addSlide()
slide1.background = { color: '1a1a2e' }  // dark navy

slide1.addText('Quarterly Review', {
  x: 1, y: 1.5, w: 8, h: 1.5,
  fontSize: 48, bold: true, color: 'ffffff',
  align: 'center', fontFace: 'Georgia',
})

slide1.addText('Q1 2026 Results', {
  x: 1, y: 3.2, w: 8, h: 0.8,
  fontSize: 24, color: 'e0e0e0',
  align: 'center',
})

// ─── SLIDE 2: Content Slide ─────────────────────────────────────────────────
const slide2 = pptx.addSlide()

// Title
slide2.addText('Key Metrics', {
  x: 0.5, y: 0.3, w: 9, h: 0.8,
  fontSize: 32, bold: true, color: '1a1a2e',
})

// Divider line (using shape)
slide2.addShape(pptx.ShapeType.rect, {
  x: 0.5, y: 1.15, w: 9, h: 0.05,
  fill: { color: '4a90e2' }, line: { color: '4a90e2' },
})

// Bullet points
slide2.addText([
  { text: 'Revenue: ', options: { bold: true } },
  { text: '$2.4M (+18% YoY)' },
], { x: 0.7, y: 1.5, w: 8.3, h: 0.5, fontSize: 18, color: '333333' })

slide2.addText([
  { text: 'Users: ', options: { bold: true } },
  { text: '142,000 active (+32%)' },
], { x: 0.7, y: 2.1, w: 8.3, h: 0.5, fontSize: 18, color: '333333' })

// ─── SLIDE 3: Chart Slide ───────────────────────────────────────────────────
const slide3 = pptx.addSlide()
slide3.addText('Monthly Revenue', {
  x: 0.5, y: 0.3, w: 9, h: 0.8,
  fontSize: 28, bold: true, color: '1a1a2e',
})

slide3.addChart(pptx.ChartType.bar, [
  {
    name: 'Revenue ($K)',
    labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
    values: [180, 210, 195, 240, 225, 280],
  }
], {
  x: 0.5, y: 1.2, w: 9, h: 4.5,
  chartColors: ['4a90e2'],
  showLegend: false,
  valAxisLabelFontSize: 12,
  catAxisLabelFontSize: 12,
})

// Save
await pptx.writeFile({ fileName: 'quarterly-review.pptx' })
console.log('Presentation saved.')

Read the full file on GitHub · 226 lines

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. 11d ago First seen · 226 lines · 85 tokens per session scan A 627e7a9e55ce

Subscribe to this mod's changes

pptx-creator is a skill published in the GitHub repository Jignesh-Ponamwar/skills-mcp (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 85 tokens to every session and 1,887 once invoked, about $0.0004 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-08-31.

Related

Other skills, from other repositories