pptx

pptx is a skill for Codex from Rylaispirit/rylai-codex-hermes-skills. It costs 28 tokens per session (715 once invoked), scanned A, original, MIT.

A toolkit for creating, inspecting, extracting, editing, rendering, and checking PowerPoint presentations with Python. It can optionally use LibreOffice to render presentations as PDFs.

In plain words
What is it for?
Use it to build presentations from local content, modify existing decks, inspect their text, render them for visual review, and check that content fits.
Why use it?
It gives presentation work a repeatable workflow and helps verify slide text, layout, images, and hierarchy without overwriting the original deck.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Codex.

Good fit Use it to build presentations from local content, modify existing decks, inspect their text, render them for visual review, and check that content fits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rylaispirit/rylai-codex-hermes-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.

Any agent
npx skills add Rylaispirit/rylai-codex-hermes-skills --skill pptx
Clone the repo
git clone --depth 1 https://github.com/Rylaispirit/rylai-codex-hermes-skills

Made for: 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/rylaispirit/rylai-codex-hermes-skills/pptx/github.svg)](https://agentmods.dev/skills/rylaispirit/rylai-codex-hermes-skills/pptx)
Your own site
<a href="https://agentmods.dev/skills/rylaispirit/rylai-codex-hermes-skills/pptx"><img src="https://agentmods.dev/badge/skills/rylaispirit/rylai-codex-hermes-skills/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/rylaispirit/rylai-codex-hermes-skills/pptx"><img src="https://agentmods.dev/badge/skills/rylaispirit/rylai-codex-hermes-skills/pptx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 715 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 pass 7 Sept 2026
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.00028 $0.00715
Opus 5 $0.00014 $0.00358
Sonnet 5 $0.00006 $0.00143
Haiku 4.5 $0.00003 $0.00072

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

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/rylai_pptx.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 · 112 lines

How it starts

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

Rylai PPTX

Original Codex-Hermes-Claude skill by Rylai.

Build presentations from local content with python-pptx. Use LibreOffice only for optional PDF rendering. Do not hotlink images, fetch remote templates, or overwrite the source deck unless the user explicitly requests it.

Runtime

Probe before installing:

python -c "import pptx; print(pptx.__version__)"

Install only when missing:

python -m pip install python-pptx

Resolve scripts/rylai_pptx.py relative to this skill directory.

Workflow

  1. Confirm the audience, purpose, source material, output path, and approximate slide count.
  2. Inspect an existing deck before editing it.
  3. Create a compact JSON content specification when building from scratch.
  4. Use only local image paths. Treat URLs as invalid input.
  5. Generate the deck, then inspect slide titles and extracted text.
  6. When LibreOffice is available, render to PDF and visually check representative slides.
  7. Check that text fits, images are legible, and the deck has a consistent hierarchy.

For an existing deck, write a task-specific python-pptx edit script in the workspace. Keep the original file, preserve untouched slides, and save the revision to a new path.

JSON Build Format

{
  "title": "Project Review",
  "subtitle": "Decisions and next steps",
  "slides": [
    {
      "title": "Current state",
      "bullets": ["What is working", "What needs attention"]
    },
    {
      "title": "Evidence",
      "bullets": ["Metric one", "Metric two"],
      "image": "local-chart.png"
    }
  ]
}

The image field is optional and must point to a local file. Relative image paths are resolved from the JSON file location.

Bundled CLI

Build:

python scripts/rylai_pptx.py build deck.json output.pptx

Inspect structure:

python scripts/rylai_pptx.py inspect output.pptx

Extract text as Markdown:

python scripts/rylai_pptx.py extract output.pptx output.md

Render to PDF with LibreOffice:

Read the full file on GitHub · 112 lines

Files

What ships with it

2 files 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. 9d ago First seen · 112 lines · 28 tokens per session scan A 899a6a3152fc

Subscribe to this mod's changes

pptx is a skill published in the GitHub repository Rylaispirit/rylai-codex-hermes-skills (55 stars, last pushed 26d ago), licensed MIT. It adds 28 tokens to every session and 715 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

powerpoint

Create, read, edit .pptx decks, slides, notes, templates.

RobinBeraud/hermes-skills · 19 tokens

image-studio

Generate, edit and upscale AI images via fal.ai through a three-stage studio workflow — brainstorm a strong prompt with the user, prototype cheaply and iterate on feedback, then produce a finalised image. Use when the user wants image generation or editing through the local fal.ai helper workflow, including requests…

moonlight-lupin/agent-skills · 214 tokens

clips-studio

Use when the user wants to "make a video/clip", "generate a video from text", "animate this image/photo", "create a marketing reel / social video / teaser", "do a 3D / parallax move", "pan/zoom/orbit a shot", or mentions fal.ai, Kling, Veo or Seedance for video. Staged fal.ai workflow — brainstorm, draft cheaply…

moonlight-lupin/agent-skills · 146 tokens

library-rag

Semantic search over a personal library using Nemotron-3-Embed-1B embeddings + sqlite-vec. Index books, documents, any text corpus; query by meaning. Includes EPUB→Markdown conversion and MCP server for auto-available search tools.

moonlight-lupin/agent-skills · 54 tokens

document-converter

Convert between document formats: Markdown↔HTML, CSV↔JSON, YAML↔TOML, JSON↔YAML, CSV↔Markdown table, HTML→plain text, JSON→CSV (flattening nested objects), Excel→CSV, Markdown→PDF. Requires pandoc for PDF and openpyxl for Excel.

moonlight-lupin/agent-skills · 72 tokens

fill-template

Bulk-fill ONE master template — a Word (.docx) letter/form or an Excel (.xlsx) form — from a data table, producing one filled file per row (mail-merge). Use whenever the user wants to "fill in this letter for each person", "mail merge", "generate letters for this list", "run this template over a spreadsheet", or hands…

moonlight-lupin/agent-skills · 215 tokens