pptx

pptx is a skill for Claude Code, Codex from Jansen611/Agent-Skills. It costs 54 tokens per session (3,600 once invoked), scanned A, original, MIT.

A tool for creating PowerPoint presentation files from JavaScript code. It is intended for tasks such as presentations, slide decks, and pitch decks.

In plain words
What is it for?
Use it to create .pptx files, including decks that use icons or generated images when the listed supporting packages are available.
Why use it?
It provides a repeatable way to generate presentations from code rather than building every slide manually. Existing presentations can optionally be read with an additional conversion tool.

Skill for Claude CodeCodex

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

Good fit Use it to create .pptx files, including decks that use icons or generated images when the listed supporting packages are available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jansen611/agent-skills/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.

agentmods
npx agentmods add skills/jansen611/agent-skills/pptx
Any agent
npx skills add Jansen611/Agent-Skills --skill pptx
Clone the repo
git clone --depth 1 https://github.com/Jansen611/Agent-Skills

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/jansen611/agent-skills/pptx.svg)](https://agentmods.dev/skills/jansen611/agent-skills/pptx)
Your own site
<a href="https://agentmods.dev/skills/jansen611/agent-skills/pptx"><img src="https://agentmods.dev/badge/skills/jansen611/agent-skills/pptx.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,600 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00054 $0.03600
Opus 5 $0.00027 $0.01800
Sonnet 5 $0.00011 $0.00720
Haiku 4.5 $0.00005 $0.00360

Measured 6d ago against content hash bb720060596d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 6d 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.

skills/pptx/SKILL.md · 374 lines

How it starts

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

PPTX Skill

Create professional PowerPoint presentations using pptxgenjs in the OpenWork environment.


Environment Prerequisites (CRITICAL)

OpenWork runs a non-interactive shell that does NOT load ~/.zshrc. Global npm packages are installed but NODE_PATH is not set. You MUST prefix every node command with NODE_PATH:

NODE_PATH=$(npm root -g) node script.js

Without this prefix, require('pptxgenjs') will fail with MODULE_NOT_FOUND.

Verify Setup

# Check pptxgenjs is installed globally
npm list -g pptxgenjs

# Test it can be loaded
NODE_PATH=$(npm root -g) node -e "const p = require('pptxgenjs'); console.log('pptxgenjs OK')"

If not installed, run: npm install -g pptxgenjs

Additional Dependencies (optional)

npm install -g react-icons react react-dom sharp   # For icons
pip install "markitdown[pptx]"                      # For reading existing .pptx
pip install Pillow                                  # For thumbnails

Quick Start

Write a .js script, then execute with NODE_PATH:

NODE_PATH=$(npm root -g) node generate_ppt.js

Minimal Example

const pptxgen = require("pptxgenjs");

let pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
pres.author = "Jansen";

let slide = pres.addSlide();
slide.background = { color: "1E2761" };
slide.addText("Hello World", {
  x: 1, y: 2, w: 8, h: 1.5,
  fontSize: 44, fontFace: "Arial",
  color: "FFFFFF", bold: true, align: "center"
});

pres.writeFile({ fileName: "output.pptx" });

Layout Dimensions

Layout Width Height
LAYOUT_16x9 10" 5.625" (default)
LAYOUT_16x10 10" 6.25"
LAYOUT_4x3 10" 7.5"
LAYOUT_WIDE 13.3" 7.5"

Design Guidelines

Before Starting

  • Pick a bold, content-informed color palette: The palette should feel designed for THIS topic.
  • Dominance over equality: One color should dominate (60-70%), with 1-2 supporting tones and one accent.
  • Dark/light contrast: Dark backgrounds for title + conclusion slides, light for content.
  • Commit to a visual motif: Pick ONE distinctive element and repeat it across every slide.

Read the full file on GitHub · 374 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. 6d ago First seen · 374 lines · 54 tokens per session scan A bb720060596d

Subscribe to this mod's changes

pptx is a skill published in the GitHub repository Jansen611/Agent-Skills (2 stars, last pushed 8d ago), licensed MIT. It adds 54 tokens to every session and 3,600 once invoked, about $0.0003 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

wowerpoint

Turn one document into a kawaii NotebookLM slide-deck PDF. Use for "wowerpoint this", "make a deck about ", "turn this report into slides", or any request to render a single document as shareable narrative slides.

thedotmack/claude-mem · 55 tokens

ppt-master

AI-driven presentation workflow for generating editable PPTX decks and slides, reconstructing page visuals, creating reusable Brand/Style/Layout/Deck workspaces, filling native PPTX templates, and enhancing finished PPTX files. Use when the user asks to create, generate, reconstruct, regenerate, beautify, redesign…

hugohe3/ppt-master · 108 tokens

deck-ljg-present

把 outline 1:1 铸成色块大字宣言 deck, 原文不动只做美化。三档主题 black / red / yellow.

nexu-io/html-anything · 39 tokens

powerpoint

Create designed, editable PowerPoint .pptx presentations with PptxGenJS. Use when the user asks to create, generate, update, or inspect a deck, slide deck, presentation, or .pptx file.

the-open-agent/openagent · 48 tokens

skill-deck

Generate slide deck presentations from briefs — use when you need slides, pitch decks, or visual summaries.

nyldn/claude-octopus · 23 tokens

ppt-forge

PPT 制作全链路:内容分析 → 分页规划 → 低保真 MD → imagegen 精美图。 架构猫写低保真 MD(ASCII art 结构图 + 视觉指引),imagegen 猫逐页出精美图。 Use when: 做 PPT、做演示文稿、做 slide、帮朋友做 PPT、画架构图、画技术蓝图。 Not for: 纯代码开发(用 worktree/tdd)、纯文档写作(直接写)。 Output: 低保真 MD + AI 原生精美图(raster PNG)。.

zts212653/clowder-ai · 135 tokens