export-presentation

export-presentation is a skill for Claude Code, Codex from jtsternberg/claude-plugins. It costs 14 tokens per session (1,167 once invoked), scanned A, original, MIT.

A browser-automation workflow that turns HTML slide presentations into PDF files or PNG screenshots. HTML slide presentations are web pages designed to display one presentation slide at a time.

In plain words
What is it for?
Export HTML presentations to PDF or capture their slides as PNG images.
Why use it?
It provides shareable or printable output from web-based slides. It selects an available browser automation tool to render the presentation.

Skill for Claude CodeCodex

Part of the export-presentation plugin — 1 skill shipped together

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/jtsternberg/claude-plugins/export-presentation
Any agent
npx skills add jtsternberg/claude-plugins --skill export-presentation
Clone the repo
git clone --depth 1 https://github.com/jtsternberg/claude-plugins

Made for: Claude Code, Codex.

Or install export-presentation, the plugin that ships this one along with the rest of its 1 skill.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/jtsternberg/claude-plugins/export-presentation.svg)](https://agentmods.dev/skills/jtsternberg/claude-plugins/export-presentation)
Your own site
<a href="https://agentmods.dev/skills/jtsternberg/claude-plugins/export-presentation"><img src="https://agentmods.dev/badge/skills/jtsternberg/claude-plugins/export-presentation.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,167 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 $0.00014 $0.01167
Opus 5 $0.00007 $0.00583
Sonnet 5 $0.00003 $0.00233
Haiku 4.5 $0.00001 $0.00117

Measured 3d ago against content hash b074659bedac, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

export-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 3d 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.

plugins/export-presentation/skills/export-presentation/SKILL.md · 111 lines

How it starts

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

Export Presentation

Export HTML slide presentations (built with slides-presentation) to PDF or PNG screenshots using browser automation.

Workflow

Step 1: Detect Browser Automation Tool

Check for available browser tools in this priority order. Use the first one found and read its reference doc for tool-specific commands:

Priority Tool How to detect Reference
1 agent-browser CLI which agent-browser references/browser-agent-browser.md
2 Claude in Chrome MCP MCP tools mcp__claude-in-chrome__* available references/browser-claude-in-chrome.md
3 Playwright which playwright or npx playwright --version, or MCP tools available references/browser-playwright.md
4 Chrome DevTools MCP MCP tools mcp__chrome-devtools__* available references/browser-chrome-devtools.md

If no browser tool is found, stop and tell the user which tools are supported with links to install them. Recommend agent-browser as the simplest option.

Read the reference doc for the detected tool before proceeding — it contains the exact commands for navigation, screenshots, and viewport configuration.

Step 2: Preflight Checks

Before starting the (slow) screenshot loop, validate everything upfront:

  1. Input exists — verify the HTML file path or URL is accessible
  2. Slide count — parse the HTML for data-slide attributes to count slides. If no data-slide attributes found, warn the user this may not be a slides-presentation deck
  3. PDF assembler (if PDF mode) — check availability in order:
    • python3 -c "import img2pdf" (preferred — lossless PNG embedding)
    • which magick or which convert (ImageMagick fallback)
    • If neither available, warn and suggest installing: pip install img2pdf
  4. Output path — verify the target directory is writable

Read the full file on GitHub · 111 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. 3d ago First seen · 111 lines · 14 tokens per session scan A b074659bedac

Subscribe to this mod's changes

export-presentation is a skill published in the GitHub repository jtsternberg/claude-plugins (5 stars, last pushed today), licensed MIT. It adds 14 tokens to every session and 1,167 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-31.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

security-ownership-map

Analyze git repositories to build a security ownership topology (people-to-file), compute bus factor and sensitive-code ownership, and export CSV/JSON for graph databases and visualization. Trigger only when the user explicitly wants a security-oriented ownership or bus-factor analysis grounded in git history (for…

HKUDS/DeepCode · 99 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens

ondb

A logical analysis and reasoning tool for AI. Use when decomposing documents into structured knowledge, querying entities and relations, validating consistency, or indexing files. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", "analyze this document", entity CRUD, or cross-skill…

x-cmd/x-cmd · 71 tokens

sn-da-large-file-analysis

万行以上 Excel 数据集的高性能分析引擎。提供 openpyxl readonly 流式读取(iterrows 支持 10 万行以上)、Parquet 转换加速、内存优化、分块处理和大文件写入模式。遇到以下任一情况就主动使用本 skill:①数据行数 ≥ 10k(由 sn-da-excel-workflow 的行数评估步骤触发);②用户出现触发词:大文件 / 大数据量 / 性能优化 / 内存不足 / OOM / 百万行 / 十万行 / 流式读取 / Parquet / 分块处理 / large file / big data / streaming read / chunked processing;③直接使用…

OpenSenseNova/SenseNova-Skills · 218 tokens