make-pptx

make-pptx is a skill for Claude Code, Codex from JeffGuo7/s-loop. It costs 95 tokens per session (1,393 once invoked), scanned A, original, MIT.

A presentation-building skill for creating editable PowerPoint files. It makes native text, shapes, charts, and tables rather than placing screenshots on slides, then checks the result for layout problems.

In plain words
What is it for?
Use it to create or update slide decks, reports, lessons, and other PowerPoint presentations.
Why use it?
It helps produce presentations that people can continue editing in PowerPoint, WPS, or Keynote and catches overlaps or overflow before delivery.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create or update slide decks, reports, lessons, and other PowerPoint presentations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jeffguo7/s-loop/make-pptx
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add JeffGuo7/s-loop --skill make-pptx
Clone the repo
git clone --depth 1 https://github.com/JeffGuo7/s-loop

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 make-pptx

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jeffguo7/s-loop/make-pptx"><img src="https://agentmods.dev/badge/skills/jeffguo7/s-loop/make-pptx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,393 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.00095 $0.01393
Opus 5 $0.00048 $0.00696
Sonnet 5 $0.00019 $0.00279
Haiku 4.5 $0.00010 $0.00139

Measured today against content hash d579b1734850, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

make-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 today.

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.

src-tauri/pi-server/builtin-skills/make-pptx/SKILL.md · 99 lines

How it starts

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

Making PowerPoint decks

You have two tools for this job: create_pptx (generates the file by running your pptxgenjs script) and inspect_pptx (machine-checks the result). Follow the workflow below exactly — it is what separates a polished deck from a messy one.

Workflow

  1. Plan silently: decide the slide count, one core message per slide, and a palette (one primary color, one neutral, one accent; roughly 60% / 30% / 10% usage). 5-12 slides is right for most requests unless the user asks otherwise.
  2. Write ONE script that builds the entire deck, call create_pptx with it. Do not call the tool once per slide.
  3. Call inspect_pptx on the output. Fix every reported issue (overflow, overlap, validation errors) by editing your script and re-running create_pptx to the same path. Re-inspect after fixing. A deck with reported issues must not be delivered.
  4. Reply with a file link so the user can open it: [File: name.pptx](relative/path.pptx) plus a 2-3 sentence summary of the deck structure.

Script contract

The tool runs your script as an ES module with a ready-to-use presentation instance exposed as the global pptx. Build the deck on it — do not redeclare pptx, and do not call writeFile (the tool writes the file to outputPath after your script returns):

pptx.layout = 'LAYOUT_16x9' // always first; 16:9 canvas = 10 x 5.625 inches
const title = pptx.addSlide()
title.addText('Quarterly Review', { x: 0.6, y: 2.2, w: 8.8, h: 1.2, fontSize: 32, bold: true })
// ... more slides ...
// done — the harness saves the file automatically

Never emit base64 file content in the script output.

Design baseline (non-negotiable)

  • Canvas: 10 x 5.625 inches (16:9). Every element gets explicit x, y, w, h. There is NO auto-layout — compute positions yourself.
  • Typography: titles >= 20pt bold, body >= 14pt, captions >= 11pt. One font family per deck; for Chinese content use fontFace: 'Microsoft YaHei' (微软雅黑), for English 'Segoe UI' or 'Arial'. Line spacing 1.2-1.5 on body text (lineSpacingMultiple).
  • Margins: keep >= 0.5in padding on every side. Nothing touches the edge.
  • Consistency: reuse the same title position, accent bar, and footer positions on every content slide. Define a helper function in your script (e.g. function contentSlide(kicker, title) {...}) instead of repeating coordinates.
  • Density: max ~6 bullets per slide, max ~15 words per bullet. If content overflows, split into two slides — do not shrink text below 14pt.
  • Visual variety: alternate layouts (title slide / bullets + side panel / two columns / chart + takeaway / section divider / closing). Not every slide should look the same, but all should share the grid and palette.

Read the full file on GitHub · 99 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. today First seen · 99 lines · 95 tokens per session scan A d579b1734850

Subscribe to this mod's changes

make-pptx is a skill published in the GitHub repository JeffGuo7/s-loop (10 stars, last pushed yesterday), licensed MIT. It adds 95 tokens to every session and 1,393 once invoked, about $0.0005 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-12.

Related

Other skills, from other repositories

ha-data-analytics

A local-first data-analysis and reporting skill for CSV and spreadsheet files. It produces decision-ready analyses and shareable offline reports while separating facts, calculations, interpretations, and recommendations.

shiwenwen/hope-agent · 106 tokens

office-xlsx

Use when the user asks to create, inspect, verify, analyze, format, or deliver Excel .xlsx workbooks, Google Sheets-targeted spreadsheet artifacts, trackers, budgets, models, tables, dashboards, formulas, CSV/TSV-to-XLSX conversions, or spreadsheet-ready data packs.

shiwenwen/hope-agent · 64 tokens

agent-office

A guide for creating, editing, rewriting, converting, processing, or delivering Word documents, spreadsheets, presentations, and PDF files.

kawayiYokami/P-ai · 42 tokens

doc-processor

Reads, parses, and generates documents in various formats like Markdown, PDF, docx, CSV, or HTML. Uses bash commands to invoke document conversion tools like pandoc or python scripts.

next-open-ai/openclawx · 42 tokens

data-analysis

Use this skill when the user uploads Excel (.xlsx/.xls) or CSV files and wants to perform data analysis, generate statistics, create summaries, pivot tables, SQL queries, or any form of structured data exploration. Supports multi-sheet Excel workbooks, aggregation, filtering, joins, and exporting results to…

bytedance/deer-flow · 69 tokens

officecli-financial-model

Use this skill when the user wants to build a financial model — 3-statement model, DCF valuation, LBO, SaaS unit economics, sensitivity / scenario analysis, debt schedule, or fundraising projections — in Excel. Trigger on: 'financial model', '3-statement model', 'P&L + BS + CF', 'DCF', 'WACC', 'NPV', 'terminal value'…

iOfficeAI/OfficeCLI · 222 tokens