New to Claude Skills? Learn how to install them →

product-on-purpose on GitHub

Slideshow Creator

Free

Generate professional presentations from JSON specifications.

Get this skill

Free · Opens the source repo

What Slideshow Creator does

The Slideshow Creator skill allows users to generate professional-quality presentations in .pptx and .pdf formats from a JSON deck specification. This tool is particularly useful for developers and designers who need to create slide decks quickly and efficiently without the burden of manual design choices. By utilizing a structured JSON format, users can define their content and let the tool handle the layout and design aspects, ensuring a consistent and polished output.

The skill operates in two phases: the first phase involves reading a content brief and generating a JSON deck specification, where the AI selects appropriate slide types based on predefined decision logic. This decision logic helps in determining which slide type to use for different content patterns, ensuring that the presentation flows logically and effectively. The second phase is the actual generation of the presentation files, which can be done locally without incurring additional token costs. This makes it a cost-effective solution for generating multiple presentations.

With 18 different slide types available, including options for title slides, bullet points, comparisons, and timelines, users can create a variety of presentations tailored to their specific needs. The tool also supports both dark and light variants for each slide type, allowing for visual variety and engagement. The skill is designed for users who need to produce consistent, professional presentations for stakeholder updates, product reviews, or team meetings without the hassle of manual formatting or design decisions.

When to use it

Use this skill when you need to generate slide decks for meetings, updates, or reviews quickly and consistently.

When not to use it

Avoid this skill for creating interactive web presentations or editing existing PowerPoint files, as it generates new decks from scratch only.

What you can build with it

Stakeholder Updates

Generate a polished presentation for stakeholder updates using a structured JSON input.

Team Presentations

Quickly create a professional slide deck for team meetings without manual formatting.

Product Reviews

Produce consistent presentations for product reviews, ensuring all visual elements are aligned with the theme.

How to install Slideshow Creator

View source

1. Install with the skills CLI

npx skills add product-on-purpose/pm-skills/utility-slideshow-creator --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by product-on-purpose
<!-- PM-Skills | https://github.com/product-on-purpose/pm-skills | Apache 2.0 -->

Slideshow Creator

Generate professional presentations (.pptx and .pdf) from a JSON deck specification. Zero design decisions at generation time - Claude selects slide types and fills content slots; all visual properties are pre-decided by the theme.

When to Use

  • Creating slide decks for stakeholder updates, product reviews, team presentations
  • Generating professional .pptx files from content briefs
  • Producing consistent presentations without manual formatting
  • Exporting presentations to PDF for sharing or archiving

When NOT to Use

  • Creating complex data visualizations (use dedicated charting tools)
  • Building interactive web presentations (this produces .pptx, not HTML)
  • Editing existing PowerPoint files (this creates new decks from scratch)

How It Works

Two-phase architecture:

  1. Spec phase (Claude) - Read the content brief, select slide types using decision logic, write a JSON deck specification. Content slots have character limits calibrated to prevent overflow. This is the only phase that costs tokens.
  2. Generation phase (Local script) - Run node scripts/generate-deck.js deck-spec.json to produce .pptx. Optionally run node scripts/export-pdf.mjs deck-spec.json for PDF. Deterministic rendering, zero token cost.

Both outputs come from the same JSON spec, so .pptx and .pdf always match.

18 Slide Types

#Type KeyPurposeDefault Variant
1title_darkOpening slide (bold)dark only
2title_lightOpening slide (internal/lighter)light only
3sectionSection dividerdark
4contentParagraph explanationlight
5bullets3-6 key pointslight
6two_colSide-by-side comparisonlight
7statSingle key metriclight
8dual_statTwo metrics compareddark
9quoteTestimonial or pull quotedark
10three_cardThree parallel conceptsdark
11four_gridFour concepts in 2x2 griddark
12timelineDates or milestones (max 6)light
13process_flowSequential workflow (max 5)light
14agendaMeeting agenda (max 7)light
15highlightKey finding or executive summarylight
16tableTabular datalight
17icon_rowsFeature list with markers (max 4)light
18closingEnd slidedark only

Full slot definitions and character limits: references/slide-types.md

Decision Logic (Quick Reference)

Content PatternUse
Opening the deck (bold)title_dark
Opening the deck (internal)title_light
Transitioning between topicssection
Paragraph explanationcontent
List of 3-6 pointsbullets
Side-by-side comparisontwo_col
Single key metricstat
Two metrics compareddual_stat
Testimonial or pull quotequote
Three parallel conceptsthree_card
Four concepts in a gridfour_grid
Dates or milestonestimeline
Sequential workflowprocess_flow
Meeting agendaagenda
Key finding or summaryhighlight
Tabular datatable
Feature list with markersicon_rows
Ending the deckclosing

Full decision logic with variant strategy: references/decision-logic.md

JSON Deck Spec Format

{
  "title": "Q3 Product Update",
  "author": "Product Team",
  "footerText": "Internal . Q3 Review",
  "slides": [
    { "type": "title_dark", "title": "Q3 Product Update", "subtitle": "October 2026" },
    { "type": "stat", "stat": "94%", "label": "Customer satisfaction score", "accentColor": "secondary" },
    { "type": "bullets", "title": "What Shipped", "bullets": ["Feature A", "Feature B", "Feature C"] },
    { "type": "closing" }
  ]
}

Colors accept theme token names ("accent", "secondary", "tertiary", "warm") or 6-character hex strings ("2563EB").

Full schema and workflow: references/TEMPLATE.md and references/platform-rules.md

Instructions

  1. Read the content brief - Understand topic, audience, length, specific requirements
  2. Plan the deck - Select slide types using the decision logic table. Assign dark/light variants for visual rhythm (alternate to avoid monotony).
  3. Write the JSON deck specification - Fill content slots, respecting character limits from references/slide-types.md
  4. Run the generation script - node scripts/generate-deck.js deck-spec.json
  5. Optionally export PDF - node scripts/export-pdf.mjs deck-spec.json output.pdf
  6. Report the output - Tell the user where the file(s) are

Output Contract

  • Planning artifact: JSON deck specification (the file Claude writes)
  • Final output: .pptx file (+ optional .pdf), generated locally from the spec
  • Quality gate: All items in the quality checklist pass

Quality Checklist

  • Every slide has a valid type key (one of the 18 defined types)
  • All content slots respect character limits from references/slide-types.md
  • Dark/light variants alternate for visual rhythm (no 3+ consecutive same-variant slides)
  • Deck has a title slide (first) and a closing slide (last)
  • Section dividers separate distinct topics in decks > 6 slides
  • Speaker notes included for key slides (stats, highlights, transitions)
  • JSON is valid (no trailing commas, proper quoting, correct nesting)
  • Color values are valid theme tokens or 6-character hex strings (no # prefix)

References

FilePurpose
references/TEMPLATE.mdJSON deck specification template with field documentation
references/EXAMPLE.mdWorked example: Q3 Product Update deck (9 slides)
references/slide-types.mdAll 18 slide types: content slots, character limits, variants
references/decision-logic.mdContent pattern → slide type mapping, variant strategy, deck sizing
references/platform-rules.mdpptxgenjs requirements, Google Slides compatibility, output format

Frequently asked questions about Slideshow Creator

Similar skills