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:
- 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.
- 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 Key |
Purpose |
Default Variant |
| 1 |
title_dark |
Opening slide (bold) |
dark only |
| 2 |
title_light |
Opening slide (internal/lighter) |
light only |
| 3 |
section |
Section divider |
dark |
| 4 |
content |
Paragraph explanation |
light |
| 5 |
bullets |
3-6 key points |
light |
| 6 |
two_col |
Side-by-side comparison |
light |
| 7 |
stat |
Single key metric |
light |
| 8 |
dual_stat |
Two metrics compared |
dark |
| 9 |
quote |
Testimonial or pull quote |
dark |
| 10 |
three_card |
Three parallel concepts |
dark |
| 11 |
four_grid |
Four concepts in 2x2 grid |
dark |
| 12 |
timeline |
Dates or milestones (max 6) |
light |
| 13 |
process_flow |
Sequential workflow (max 5) |
light |
| 14 |
agenda |
Meeting agenda (max 7) |
light |
| 15 |
highlight |
Key finding or executive summary |
light |
| 16 |
table |
Tabular data |
light |
| 17 |
icon_rows |
Feature list with markers (max 4) |
light |
| 18 |
closing |
End slide |
dark only |
Full slot definitions and character limits: references/slide-types.md
Decision Logic (Quick Reference)
| Content Pattern |
Use |
| Opening the deck (bold) |
title_dark |
| Opening the deck (internal) |
title_light |
| Transitioning between topics |
section |
| Paragraph explanation |
content |
| List of 3-6 points |
bullets |
| Side-by-side comparison |
two_col |
| Single key metric |
stat |
| Two metrics compared |
dual_stat |
| Testimonial or pull quote |
quote |
| Three parallel concepts |
three_card |
| Four concepts in a grid |
four_grid |
| Dates or milestones |
timeline |
| Sequential workflow |
process_flow |
| Meeting agenda |
agenda |
| Key finding or summary |
highlight |
| Tabular data |
table |
| Feature list with markers |
icon_rows |
| Ending the deck |
closing |
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
- Read the content brief - Understand topic, audience, length, specific requirements
- Plan the deck - Select slide types using the decision logic table. Assign dark/light variants for visual rhythm (alternate to avoid monotony).
- Write the JSON deck specification - Fill content slots, respecting character limits from
references/slide-types.md
- Run the generation script -
node scripts/generate-deck.js deck-spec.json
- Optionally export PDF -
node scripts/export-pdf.mjs deck-spec.json output.pdf
- 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
References
| File |
Purpose |
references/TEMPLATE.md |
JSON deck specification template with field documentation |
references/EXAMPLE.md |
Worked example: Q3 Product Update deck (9 slides) |
references/slide-types.md |
All 18 slide types: content slots, character limits, variants |
references/decision-logic.md |
Content pattern → slide type mapping, variant strategy, deck sizing |
references/platform-rules.md |
pptxgenjs requirements, Google Slides compatibility, output format |
1---2name: utility-slideshow-creator3description: Generates professional presentations from a JSON deck specification using 18 slide types with dark/light variants, content-to-layout decision logic, and calibrated character limits. Ships with a default professional theme.4license: Apache-2.05---6
7<!-- PM-Skills | https://github.com/product-on-purpose/pm-skills | Apache 2.0 -->
8
9# Slideshow Creator
10
11Generate 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.
12
13## When to Use
14
15- Creating slide decks for stakeholder updates, product reviews, team presentations
16- Generating professional .pptx files from content briefs
17- Producing consistent presentations without manual formatting
18- Exporting presentations to PDF for sharing or archiving
19
20## When NOT to Use
21
22- Creating complex data visualizations (use dedicated charting tools)
23- Building interactive web presentations (this produces .pptx, not HTML)
24- Editing existing PowerPoint files (this creates new decks from scratch)
25
26## How It Works
27
28**Two-phase architecture:**
29
301. **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.
312. **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.
32
33Both outputs come from the same JSON spec, so .pptx and .pdf always match.
34
35## 18 Slide Types
36
37| # | Type Key | Purpose | Default Variant |
38|---|----------|---------|-----------------|
39| 1 | `title_dark` | Opening slide (bold) | dark only |
40| 2 | `title_light` | Opening slide (internal/lighter) | light only |
41| 3 | `section` | Section divider | dark |
42| 4 | `content` | Paragraph explanation | light |
43| 5 | `bullets` | 3-6 key points | light |
44| 6 | `two_col` | Side-by-side comparison | light |
45| 7 | `stat` | Single key metric | light |
46| 8 | `dual_stat` | Two metrics compared | dark |
47| 9 | `quote` | Testimonial or pull quote | dark |
48| 10 | `three_card` | Three parallel concepts | dark |
49| 11 | `four_grid` | Four concepts in 2x2 grid | dark |
50| 12 | `timeline` | Dates or milestones (max 6) | light |
51| 13 | `process_flow` | Sequential workflow (max 5) | light |
52| 14 | `agenda` | Meeting agenda (max 7) | light |
53| 15 | `highlight` | Key finding or executive summary | light |
54| 16 | `table` | Tabular data | light |
55| 17 | `icon_rows` | Feature list with markers (max 4) | light |
56| 18 | `closing` | End slide | dark only |
57
58Full slot definitions and character limits: `references/slide-types.md`
59
60## Decision Logic (Quick Reference)
61
62| Content Pattern | Use |
63|---|---|
64| Opening the deck (bold) | `title_dark` |
65| Opening the deck (internal) | `title_light` |
66| Transitioning between topics | `section` |
67| Paragraph explanation | `content` |
68| List of 3-6 points | `bullets` |
69| Side-by-side comparison | `two_col` |
70| Single key metric | `stat` |
71| Two metrics compared | `dual_stat` |
72| Testimonial or pull quote | `quote` |
73| Three parallel concepts | `three_card` |
74| Four concepts in a grid | `four_grid` |
75| Dates or milestones | `timeline` |
76| Sequential workflow | `process_flow` |
77| Meeting agenda | `agenda` |
78| Key finding or summary | `highlight` |
79| Tabular data | `table` |
80| Feature list with markers | `icon_rows` |
81| Ending the deck | `closing` |
82
83Full decision logic with variant strategy: `references/decision-logic.md`
84
85## JSON Deck Spec Format
86
87```json
88{
89 "title": "Q3 Product Update",
90 "author": "Product Team",
91 "footerText": "Internal . Q3 Review",
92 "slides": [
93 { "type": "title_dark", "title": "Q3 Product Update", "subtitle": "October 2026" },
94 { "type": "stat", "stat": "94%", "label": "Customer satisfaction score", "accentColor": "secondary" },
95 { "type": "bullets", "title": "What Shipped", "bullets": ["Feature A", "Feature B", "Feature C"] },
96 { "type": "closing" }
97 ]
98}
99```
100
101Colors accept theme token names (`"accent"`, `"secondary"`, `"tertiary"`, `"warm"`) or 6-character hex strings (`"2563EB"`).
102
103Full schema and workflow: `references/TEMPLATE.md` and `references/platform-rules.md`
104
105## Instructions
106
1071. **Read the content brief** - Understand topic, audience, length, specific requirements
1082. **Plan the deck** - Select slide types using the decision logic table. Assign dark/light variants for visual rhythm (alternate to avoid monotony).
1093. **Write the JSON deck specification** - Fill content slots, respecting character limits from `references/slide-types.md`
1104. **Run the generation script** - `node scripts/generate-deck.js deck-spec.json`
1115. **Optionally export PDF** - `node scripts/export-pdf.mjs deck-spec.json output.pdf`
1126. **Report the output** - Tell the user where the file(s) are
113
114## Output Contract
115
116- **Planning artifact**: JSON deck specification (the file Claude writes)
117- **Final output**: .pptx file (+ optional .pdf), generated locally from the spec
118- **Quality gate**: All items in the quality checklist pass
119
120## Quality Checklist
121
122- [ ] Every slide has a valid type key (one of the 18 defined types)
123- [ ] All content slots respect character limits from `references/slide-types.md`
124- [ ] Dark/light variants alternate for visual rhythm (no 3+ consecutive same-variant slides)
125- [ ] Deck has a title slide (first) and a closing slide (last)
126- [ ] Section dividers separate distinct topics in decks > 6 slides
127- [ ] Speaker notes included for key slides (stats, highlights, transitions)
128- [ ] JSON is valid (no trailing commas, proper quoting, correct nesting)
129- [ ] Color values are valid theme tokens or 6-character hex strings (no `#` prefix)
130
131## References
132
133| File | Purpose |
134|------|---------|
135| `references/TEMPLATE.md` | JSON deck specification template with field documentation |
136| `references/EXAMPLE.md` | Worked example: Q3 Product Update deck (9 slides) |
137| `references/slide-types.md` | All 18 slide types: content slots, character limits, variants |
138| `references/decision-logic.md` | Content pattern → slide type mapping, variant strategy, deck sizing |
139| `references/platform-rules.md` | pptxgenjs requirements, Google Slides compatibility, output format |