2slides-ppt-generator

2slides-ppt-generator is a skill for Claude Code from trendinux/agentic-awesome-skills. It costs 64 tokens per session (5,990 once invoked), scanned A, a copy of 2slides-ppt-generator, MIT.

A presentation-making tool that turns text, documents, or a reference image into slide decks through the 2slides service.

In plain words
What is it for?
Use it to create presentations, match a reference image’s style, summarize documents into slides, add voice narration, and export slides or audio.
Why use it?
It removes the need to build every slide manually when the starting material is an outline, document, or visual style to copy.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument; mentions Claude Code; mentions Codex.

Part of the agentic-awesome-skills plugin — 56 skills shipped together

Good fit Use it to create presentations, match a reference image’s style, summarize documents into slides, add voice narration, and export slides or audio.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/trendinux/agentic-awesome-skills/2slides-ppt-generator
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 trendinux/agentic-awesome-skills --skill 2slides-ppt-generator
Clone the repo
git clone --depth 1 https://github.com/trendinux/agentic-awesome-skills

Made for: Claude Code.

Or install agentic-awesome-skills, the plugin that ships this one along with the rest of its 56 skills.

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 2slides-ppt-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/trendinux/agentic-awesome-skills/2slides-ppt-generator/github.svg)](https://agentmods.dev/skills/trendinux/agentic-awesome-skills/2slides-ppt-generator)
Your own site
<a href="https://agentmods.dev/skills/trendinux/agentic-awesome-skills/2slides-ppt-generator"><img src="https://agentmods.dev/badge/skills/trendinux/agentic-awesome-skills/2slides-ppt-generator/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 2slides-ppt-generator

Your own site · 80×15
<a href="https://agentmods.dev/skills/trendinux/agentic-awesome-skills/2slides-ppt-generator"><img src="https://agentmods.dev/badge/skills/trendinux/agentic-awesome-skills/2slides-ppt-generator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,990 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 100% copy Near-identical to another mod 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.00064 $0.05990
Opus 5 $0.00032 $0.02995
Sonnet 5 $0.00013 $0.01198
Haiku 4.5 $0.00006 $0.00599

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

Security

Grade A, and why

2slides-ppt-generator 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 11d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (scripts/api_constants.py, scripts/create_pdf_slides.py, scripts/download_slides_pages_voices.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.

Origin

This is a copy

100% identical to 2slides-ppt-generator — 743 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/agentic-awesome-skills-claude/skills/2slides-ppt-generator/SKILL.md · 788 lines

How it starts

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

2slides Presentation Generation

Overview

Generate professional presentations using the 2slides AI API. The skill supports content-based generation (theme-driven Fast PPT), style matching from a reference image, custom PDF design, document summarization, AI voice narration, and exporting pages/audio. It returns both an interactive slide URL and a downloadable PDF.

This skill is adapted from the official 2slides skill repository (2slides/slides-generation-2slides-skills). It calls the hosted 2slides API and requires the user's own API key and credits.

When to Use This Skill

  • Use when the user asks to "create a presentation", "make slides", or "generate a deck" from text or an outline.
  • Use when the user wants slides that match the style of a reference image ("create slides like this image").
  • Use when the user wants custom-designed PDF slides without a reference image.
  • Use when the user uploads a document and asks to "create slides from this document".
  • Use when the user wants to add AI voice narration to generated slides, or export slides as PNG images and narration as WAV audio.
  • Use when the user asks "what themes are available?" or wants to browse/select a theme.

Setup Requirements

Users must have a 2slides API key and credits:

  1. Get API Key: Visit https://2slides.com/api to create an account and API key
    • New users receive 500 free credits (~50 Fast PPT pages)
  2. Purchase Credits (Optional): Visit https://2slides.com/pricing to buy additional credits
    • Pay-as-you-go, no subscriptions
    • Credits never expire
    • Up to 20% off on larger packages
  3. Set API Key: Store the key in environment variable: SLIDES_2SLIDES_API_KEY
read -r -s SLIDES_2SLIDES_API_KEY
export SLIDES_2SLIDES_API_KEY
  1. Install Script Dependencies: From this skill directory, install the pinned local requirements before using the Python scripts:
python -m pip install -r requirements.txt

Read the full file on GitHub · 788 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. 11d ago First seen · 788 lines · 64 tokens per session scan A 1cf834f9612d

Subscribe to this mod's changes

2slides-ppt-generator is a skill published in the GitHub repository trendinux/agentic-awesome-skills (1 stars, last pushed 2mo ago), licensed MIT. It adds 64 tokens to every session and 5,990 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to 2slides-ppt-generator, differing in 743 lines, and is treated as a copy.

Related

Other skills, from other repositories

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

sickn33/agentic-awesome-skills · 64 tokens

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

lingxling/awesome-skills-cn · 64 tokens

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

iradoweck/antigravity-awesome-skills · 64 tokens

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

Ghosteken/agent-harness · 64 tokens

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

sendralt/agentic-awesome-skills · 64 tokens

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

LiHongwei-cn/lihongwei-cn · 64 tokens