make-revealjs-presentation

make-revealjs-presentation is a skill for Claude Code from pamelafox/presentation-skills. It costs 56 tokens per session (1,207 once invoked), scanned A, original, MIT.

A workflow for creating or updating RevealJS presentations from a bundled HTML slide template. RevealJS is a web-based presentation framework that displays slides in a browser.

In plain words
What is it for?
Use it to make conference talks, presentation decks, and HTML slides, including section dividers and code examples.
Why use it?
It gives a consistent starting structure and identifies the placeholders and conventions that need changing. This reduces the setup work when turning a talk outline into a working slide deck.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to make conference talks, presentation decks, and HTML slides, including section dividers and code examples.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pamelafox/presentation-skills/make-revealjs-presentation
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 pamelafox/presentation-skills --skill make-revealjs-presentation
Clone the repo
git clone --depth 1 https://github.com/pamelafox/presentation-skills

Made for: Claude Code.

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-revealjs-presentation

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/pamelafox/presentation-skills/make-revealjs-presentation"><img src="https://agentmods.dev/badge/skills/pamelafox/presentation-skills/make-revealjs-presentation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,207 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.00056 $0.01207
Opus 5 $0.00028 $0.00603
Sonnet 5 $0.00011 $0.00241
Haiku 4.5 $0.00006 $0.00121

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

Security

Grade A, and why

make-revealjs-presentation 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 10d 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.

.agents/skills/make-revealjs-presentation/SKILL.md · 173 lines

How it starts

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

Make a RevealJS presentation

Use this skill when the user wants a RevealJS-based slide deck or wants to start a new talk from the repository's house template.

Default approach

Start from the bundled template asset instead of rebuilding the RevealJS shell from scratch:

  • Template asset: ./assets/index.html
  • Copy that file to the requested output path, then edit the copied file.
  • Keep the RevealJS CDN includes and Reveal.initialize(...) block unless the user explicitly asks to change them.

What to customize first

After copying the template, replace these placeholders before expanding the deck:

  • Talk Title
  • Conference Name · Month Year
  • Your Name
  • Role · Company · website.example
  • Example links like filename.html and example.com/...

Then rewrite or remove the example slides so the deck matches the user's topic.

Template conventions

  • The template is intentionally simple and close to stock RevealJS.
  • Section divider slides use class="heading-only".
  • Code slides are just normal sections with a <pre><code> block.
  • If a code badge or copy-button plugin is in use and should be suppressed for one slide, add class="no-code-badge" to that section.

Customization tips

Body font

Change the body font in the .reveal rule near the top of the template:

.reveal {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

Examples:

  • Minimal/system default: keep the existing stack
  • Sans-serif web font: font-family: 'Work Sans', sans-serif;
  • Serif deck: font-family: 'Source Serif 4', serif;

If using a web font, also add the corresponding <link rel="stylesheet"> in <head>.

Heading font

Change headings separately in:

.reveal h1,
.reveal h2,
.reveal h3 {
  font-family: inherit;
}

Examples:

  • Match body text: keep inherit
  • Distinct headings: font-family: 'Roboto', sans-serif;
  • Editorial style: font-family: 'Fraunces', serif;

Text sizing

Adjust the default body sizing here:

Read the full file on GitHub · 173 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. 10d ago First seen · 173 lines · 56 tokens per session scan A 65604eef8459

Subscribe to this mod's changes

make-revealjs-presentation is a skill published in the GitHub repository pamelafox/presentation-skills (117 stars, last pushed 7d ago), licensed MIT. It adds 56 tokens to every session and 1,207 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-30.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens