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.
git clone --depth 1 https://github.com/Jignesh-Ponamwar/skills-mcpnpx agentmods add skills/jignesh-ponamwar/skills-mcp/pptx-creatorWrote 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.
[](https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/pptx-creator)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.')
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.
- 11d ago First seen · 226 lines · 85 tokens per session scan A 627e7a9e55ce
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.
Other skills, from other repositories
audio-transcriber
Transform audio recordings into professional Markdown documentation with intelligent summaries using LLM integration.
mantis-report
Generates a human-readable security review packet compiled from confirmed findings and exploit chains. Use at the end of a review cycle to produce stakeholder-facing documentation. Don't use for auditing code or verifying patches directly.
training-report
Produce a professional training/workshop report as a .docx file. Use this skill whenever the user mentions "training report", "workshop report", "compte rendu", "compte rendu de formation", "formation report", "debriefing a workshop", "write up a training session", "résumé de formation", or any request to document a…
affinda-automation
Automate Affinda tasks via Rube MCP (Composio). Always search tools first for current schemas.
api2pdf-automation
Automate Api2pdf tasks via Rube MCP (Composio). Always search tools first for current schemas.
docs-architect
Creates comprehensive technical documentation from existing codebases. Analyzes architecture, design patterns, and implementation details to produce long-form technical manuals and ebooks. Use PROACTIVELY for system documentation, architecture guides, or technical deep-dives.