pro-deck-builder

pro-deck-builder is a skill for Claude Code, Codex from thatrebeccarae/claude-marketing. It costs 75 tokens per session (7,167 once invoked), scanned A, original, MIT.

A system for creating presentation slide decks as HTML or PDF-ready files. It covers slide layouts, typography, color systems, charts, and working with existing PowerPoint files.

In plain words
What is it for?
Use it to create pitch decks, presentations, keynotes, and data-heavy slide documents, or to inspect and edit an existing presentation.
Why use it?
It helps turn written material and data into organized presentation slides without designing every slide from scratch. It also provides guidance for reviewing and editing decks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions subagents; positional $N argument.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/office/soffice.py --headless --convert-to pdf output.pptx.

Good fit Use it to create pitch decks, presentations, keynotes, and data-heavy slide documents, or to inspect and edit an existing presentation.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/thatrebeccarae/claude-marketing
agentmods
npx agentmods add skills/thatrebeccarae/claude-marketing/pro-deck-builder

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 pro-deck-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/thatrebeccarae/claude-marketing/pro-deck-builder/github.svg)](https://agentmods.dev/skills/thatrebeccarae/claude-marketing/pro-deck-builder)
Your own site
<a href="https://agentmods.dev/skills/thatrebeccarae/claude-marketing/pro-deck-builder"><img src="https://agentmods.dev/badge/skills/thatrebeccarae/claude-marketing/pro-deck-builder/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 pro-deck-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/thatrebeccarae/claude-marketing/pro-deck-builder"><img src="https://agentmods.dev/badge/skills/thatrebeccarae/claude-marketing/pro-deck-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,167 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 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.00075 $0.07167
Opus 5 $0.00037 $0.03583
Sonnet 5 $0.00015 $0.01433
Haiku 4.5 $0.00007 $0.00717

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

Security

Grade A, and why

pro-deck-builder 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 7d 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/pro-deck-builder/SKILL.md · 558 lines

How it starts

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

Presentation Designer

VC-backed SaaS design quality for PowerPoint. Think Linear, Attio, Vercel, Raycast — not corporate clip art.

Install

git clone https://github.com/thatrebeccarae/claude-marketing.git && cp -r claude-marketing/skills/pro-deck-builder ~/.claude/skills/

Quick Reference

Task Approach
Create from scratch Read REFERENCE.md, use PptxGenJS
Edit existing / use template Read editing.md
Read/extract content python -m markitdown presentation.pptx
Visual overview python scripts/thumbnail.py presentation.pptx

Before You Start (Required Steps)

Step 1: Ask the User

Before writing any code, ask:

  1. Light or dark mode? Dark = premium/keynote feel. Light = reports/data-heavy decks.
  2. Palette preference? Show the palette table below, or ask if they have brand colors.
  3. Logo? Ask if they have a logo file to include (PNG/SVG path).

Step 2: Discover Fonts

Check what's installed — premium fonts make a massive difference:

# macOS — list all installed font families
fc-list : family | sort -u

# Search for premium fonts first
fc-list : family | grep -iE "inter|dm.sans|poppins|avenir|futura|geist|sf.pro|sf.mono|jetbrains|fira.code|montserrat|playfair|source.sans"

# Check macOS Font Book directories directly
ls ~/Library/Fonts/ /Library/Fonts/ /System/Library/Fonts/Supplemental/ 2>/dev/null

Priority order for font selection:

  1. Inter — the gold standard for SaaS UI (if installed, use it for everything)
  2. DM Sans — geometric, startup-friendly
  3. Poppins — rounded, approachable
  4. Avenir / Avenir Next — ships with macOS, Apple-adjacent elegance
  5. Calibri — safe fallback, always available

For data/mono: JetBrains Mono > Fira Code > SF Mono > Consolas


Design Language: VC-Backed SaaS

Aesthetic Principles

  1. Depth through layering — Surfaces float above backgrounds. Cards and panels have subtle elevation via shadows and fine borders, not flat colored boxes.
  2. Bold typography, minimal decoration — Let type hierarchy do the work. No accent lines, no decorative shapes, no clip art.
  3. Restrained color — One accent color used sparingly (10%). Mostly neutrals. Color = signal, not decoration.
  4. Generous whitespace — Empty space signals confidence. If a slide feels sparse, make the content bigger, don't add more.
  5. Every element earns its place — Before adding anything: what does it communicate? If removing it changes nothing, remove it.

Read the full file on GitHub · 558 lines

Files

What ships with it

3 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. 7d ago First seen · 558 lines · 75 tokens per session scan A ba28ec4faccf

Subscribe to this mod's changes

pro-deck-builder is a skill published in the GitHub repository thatrebeccarae/claude-marketing (136 stars, last pushed 3mo ago), licensed MIT. It adds 75 tokens to every session and 7,167 once invoked, about $0.0004 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-09-03.

Related

Other skills, from other repositories

yt-dlp-downloader

Generate and run yt-dlp download commands with probe-driven format selection, safe output naming, retry defaults, and structured execution reports. Use when users want to download videos, extract audio, fetch playlists, grab subtitles, handle authenticated/age-gated content, or download live streams. Covers single…

johnqtcg/awesome-skills · 96 tokens

presentation-builder

Création de présentations percutantes avec structure, storytelling, visuels et delivery. Se déclenche avec "présentation", "slides", "PowerPoint", "Keynote", "présenter", "pitch deck". Also triggers on "build a presentation", "slide deck structure", "present my project".

khalilbenaz/claude-skills-collection · 66 tokens

music-composer

Komponiert video-synchronisierte Hintergrundmusik aus einem Storyline-JSON per lokaler Waveform-Synthese (numpy + ffmpeg). Stile: Chiptune, Ambient, Electronic. Deterministisch, offline, kein Cloud-Dienst.

ellmos-ai/skills · 55 tokens

video-transcriber

Fetch video transcripts (subtitles) and metadata from online video sources and output them as Markdown, JSON, or plain text. Currently supported: YouTube. Prefers manually created subtitles, falls back to auto-generated ones.

ellmos-ai/skills · 0 tokens

transkription

Transcribes audio/video files to text. Uses Whisper (openai-whisper) or Vosk (offline) as optional backend — both are detected via presence check. Without backend: placeholder mode with dummy output (dry-run).

ellmos-ai/skills · 0 tokens

brainstorm

Structured creativity methods for idea generation: SCAMPER, Six Thinking Hats, Mind Mapping, Reverse Brainstorming, TRIZ, and Rapid Ideation.

ellmos-ai/skills · 0 tokens