Frontend Slides
Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.
Core Principles
- Zero Dependencies — Single HTML files with inline CSS/JS. No npm, no build tools.
- Show, Don't Tell — Generate visual previews, not abstract choices. People discover what they want by seeing it.
- Distinctive Design — No generic "AI slop." Every presentation must feel custom-crafted.
- Viewport Fitting (NON-NEGOTIABLE) — Every slide MUST fit exactly within 100vh. No scrolling within slides, ever. Content overflows? Split into multiple slides.
Design Aesthetics
You tend to converge toward generic, "on distribution" outputs. In frontend design, this creates what users call the "AI slop" aesthetic. Avoid this: make creative, distinctive frontends that surprise and delight.
Focus on:
- Typography: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics.
- Color & Theme: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes. Draw from IDE themes and cultural aesthetics for inspiration.
- Motion: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions.
- Backgrounds: Create atmosphere and depth rather than defaulting to solid colors. Layer CSS gradients, use geometric patterns, or add contextual effects that match the overall aesthetic.
Avoid generic AI-generated aesthetics:
- Overused font families (Inter, Roboto, Arial, system fonts)
- Cliched color schemes (particularly purple gradients on white backgrounds)
- Predictable layouts and component patterns
- Cookie-cutter design that lacks context-specific character
Interpret creatively and make unexpected choices that feel genuinely designed for the context. Vary between light and dark themes, different fonts, different aesthetics. You still tend to converge on common choices (Space Grotesk, for example) across generations. Avoid this: it is critical that you think outside the box!
Viewport Fitting Rules
These invariants apply to EVERY slide in EVERY presentation:
- Every
.slide must have height: 100vh; height: 100dvh; overflow: hidden;
- ALL font sizes and spacing must use
clamp(min, preferred, max) — never fixed px/rem
- Content containers need
max-height constraints
- Images:
max-height: min(50vh, 400px)
- Breakpoints required for heights: 700px, 600px, 500px
- Include
prefers-reduced-motion support
- Never negate CSS functions directly (
-clamp(), -min(), -max() are silently ignored) — use calc(-1 * clamp(...)) instead
When generating, read viewport-base.css and include its full contents in every presentation.
Content Density Modes
Ask the user whether this is primarily a reading deck or a speaking deck, then design around that answer:
| Density mode |
Best for |
Design behavior |
| Low density / speaker-led |
Public talks, keynote-style sharing, live explanation |
One idea per slide, large type, strong visual hierarchy, generous negative space, 1-3 bullets max, more slides if needed |
| High density / reading-first |
Reports, handouts, async review, detailed internal docs |
More self-contained slides, structured grids/tables/annotations, 4-8 bullets or 4-6 cards when readable, tighter but still intentional spacing |
Baseline limits still apply: no scrolling, no overflow, no overlapping panels, and no text below comfortable reading size. If content exceeds the selected density mode, split it into more slides instead of shrinking until it becomes cramped.
Phase 0: Detect Mode
Determine what the user wants:
- Mode A: New Presentation — Create from scratch. Go to Phase 1.
- Mode B: PPT Conversion — Convert a .pptx file. Go to Phase 4.
- Mode C: Enhancement — Improve an existing HTML presentation. Read it, understand it, enhance. Follow Mode C modification rules below.
Mode C: Modification Rules
When enhancing existing presentations, viewport fitting is the biggest risk:
- Before adding content: Count existing elements, check against density limits
- Adding images: Must have
max-height: min(50vh, 400px). If slide already has max content, split into two slides
- Adding text: Max 4-6 bullets per slide. Exceeds limits? Split into continuation slides
- After ANY modification, verify:
.slide has overflow: hidden, new elements use clamp(), images have viewport-relative max-height, content fits at 1280x720
- Proactively reorganize: If modifications will cause overflow, automatically split content and inform the user. Don't wait to be asked
When adding images to existing slides: Move image to new slide or reduce other content first. Never add images without checking if existing content already fills the viewport.
Phase 1: Content Discovery (New Presentations)
Ask ALL questions in a single AskUserQuestion call so the user fills everything out at once:
Question 1 — Purpose (header: "Purpose"):
What is this presentation for? Options: Pitch deck / Teaching-Tutorial / Conference talk / Internal presentation
Question 2 — Length (header: "Length"):
Approximately how many slides? Options: Short 5-10 / Medium 10-20 / Long 20+
Question 3 — Content (header: "Content"):
Do you have content ready? Options: All content ready / Rough notes / Topic only
Question 4 — Density (header: "Density"):
How dense should the deck feel? Options:
- "Low density / speaker-led" — Big ideas, fewer words, more visual breathing room
- "High density / reading-first" — More self-contained detail for async reading
Do not ask about inline editing during Phase 1. Users should not have to choose editing behavior before seeing a draft. Inline editing is a post-draft affordance: include it by default unless the user explicitly asks for a locked/export-only file.
Remember the user's density choice. It affects slide count, typography scale, amount of text per slide, layout density, and whether to favor cinematic presenter slides or self-contained reading slides.
If user has content, ask them to share it.
Step 1.2: Image Evaluation (if images provided)
If user selected "No images" → skip to Phase 2.
If user provides an image folder:
- Scan — List all image files (.png, .jpg, .svg, .webp, etc.)
- View each image — Use the Read tool (Claude is multimodal)
- Evaluate — For each: what it shows, USABLE or NOT USABLE (with reason), what concept it represents, dominant colors
- Co-design the outline — Curated images inform slide structure alongside text. This is NOT "plan slides then add images" — design around both from the start (e.g., 3 screenshots → 3 feature slides, 1 logo → title/closing slide)
- Confirm via AskUserQuestion (header: "Outline"): "Does this slide outline and image selection look right?" Options: Looks good / Adjust images / Adjust outline
Logo in previews: If a usable logo was identified, embed it (base64) into each style preview in Phase 2 — the user sees their brand styled three different ways.
Step 1.3: Diagram Detection
After evaluating each image, identify any relationship diagrams — images with spatial structure that encodes meaning (arrows, nodes, flows, hierarchies). These require dedicated CSS layouts in Phase 3 to preserve that structure.
Detect and label each diagram image as one of:
| Type |
Visual cues |
HTML layout |
cycle-diagram |
Circular arrows, flywheel, recurring loop |
Circle of nodes with arc connectors |
pipeline-diagram |
Left→right flow, input/process/output boxes |
Horizontal flex with arrow separators |
feedback-diagram |
Main flow + return arrow, system loop |
Forward path + curved return path |
hierarchy-diagram |
Org chart, tree, parent→children |
CSS grid tree with connecting lines |
hub-diagram |
Central node + spokes to outer nodes |
CSS radial positioning |
If any diagram is detected: note the type for Phase 3. The corresponding CSS layout patterns are in html-template.md under "Diagram Layout Patterns".
If no diagrams detected: skip to Phase 2 as normal.
Phase 2: Style Discovery
This is the "show, don't tell" phase. Most people can't articulate design preferences in words.
Step 2.0: Style Path
Ask how they want to choose (header: "Style"):
- "Show me options" (recommended) — Generate 3 previews based on mood
- "I know what I want" — Pick from preset list directly
If direct selection: Show preset picker and skip to Phase 3. Available presets are defined in STYLE_PRESETS.md.
Step 2.1: Mood Selection (Guided Discovery)
Ask (header: "Vibe", multiSelect: true, max 2):
What feeling should the audience have? Options:
- Impressed/Confident — Professional, trustworthy
- Excited/Energized — Innovative, bold
- Calm/Focused — Clear, thoughtful
- Inspired/Moved — Emotional, memorable
Step 2.2: Generate 3 Style Previews
Based on mood, generate 3 distinct single-slide HTML previews showing typography, colors, animation, and overall aesthetic. Read STYLE_PRESETS.md for safe preset candidates. If bold-template-pack/selection-index.json exists, read that compact index too, but do not read any design.md files yet.
| Mood |
Suggested Presets |
| Impressed/Confident |
Bold Signal, Electric Studio, Dark Botanical |
| Excited/Energized |
Creative Voltage, Neon Cyber, Split Pastel |
| Calm/Focused |
Notebook Tabs, Paper & Ink, Swiss Modern |
| Inspired/Moved |
Dark Botanical, Vintage Editorial, Pastel Geometry |
Preview mix rules:
- Generate 3 previews by default: 1 safe preset from
STYLE_PRESETS.md, at least 1 bold template from bold-template-pack/selection-index.json, and 1 wildcard.
- The wildcard may be either a second bold template or a self-generated custom design. Choose whichever creates the strongest, most useful contrast for the user's occasion, audience, mood, and content.
- If the user explicitly names a preset or bold template, honor that as one option and generate the remaining preview slots around it.
Bold template selection rules:
- Match user purpose and mood against
mood, tone, best_for, avoid_for, formality, density, and scheme.
- Treat
best_for examples as soft signals, not strict industry filters.
- Keep the three previews genuinely different from each other.
- After choosing bold template candidate(s), read only those candidate(s)'
preview.md files from the preview_md paths in the selection index.
- Use
preview.md only for title-slide previews. Do not read full design.md files until the user picks the final template.
Custom wildcard design rules:
- Follow the Design Aesthetics section above: no generic "AI slop", no default font/color/layout choices, no purple-gradient-on-white clichés.
- Use viewport-fluid CSS rules (
clamp(), vh/vw units, scroll-snap) and pass the same preview authenticity checks as every other option.
- Never render "custom", "wildcard", "AI-generated", or design-process labels on the slide itself.
Preview authenticity rules (NON-NEGOTIABLE):
- Every style preview must look like a real first slide from the user's deck, not a diagnostic card.
- Never render internal workflow text on a slide: no
preview, generated from, preview.md, template, preset, style option, Option A/B/C, file names, paths, or source-doc labels.
- Never render template names or slug names on the slide itself. Template/style names belong only in the message to the user.
- If the slide needs chrome, use real deck chrome only: the deck title, section title, date, author, company, page number, or a genuine content phrase from the user's material.
- Before opening previews, inspect the visible text and revise if any internal metadata appears.
Save previews to .claude-design/slide-previews/ (style-a.html, style-b.html, style-c.html). Each should be self-contained, ~50-100 lines, showing one animated title slide.
Open each preview automatically for the user.
Step 2.3: User Picks
Ask (header: "Style"):
Which style preview do you prefer? Options: Style A: [Name] / Style B: [Name] / Style C: [Name] / Mix elements
If "Mix elements", ask for specifics.
Phase 3: Generate Presentation
Generate the full presentation using content from Phase 1 (text, or text + curated images) and style from Phase 2.
If images were provided, the slide outline already incorporates them from Step 1.2. If not, CSS-generated visuals (gradients, shapes, patterns) provide visual interest — this is a fully supported first-class path.
Apply the user's density choice throughout the deck:
- Low density / speaker-led: Use more slides with fewer ideas per slide. Favor large headings, short phrases, visual metaphors, section beats, quote/statement slides, and presenter-friendly pacing.
- High density / reading-first: Make slides more self-contained. Use structured grids, comparison tables, annotated diagrams, captions, and concise explanatory copy. Keep hierarchy strong so it feels designed, not like a document pasted onto slides.
If the user's stated needs are mixed, choose the closer of the two modes instead of inventing a middle option: live audience persuasion defaults low-density; async circulation or detailed review defaults high-density.
Never let high density become visual clutter. If a high-density slide starts to overflow, split it or redesign it into a clearer structure.
If the user selected a bold template from bold-template-pack, read that one template's full design.md before generating. Do not read the other bold templates. Treat design.md as the design recipe:
- Preserve its fonts, palette, decorative vocabulary, spacing rhythm, and component grammar.
- Translate the template's design proportions into this skill's viewport-fluid CSS system (
clamp(), vh/vw units, scroll-snap). Do not adopt a fixed 1920×1080 stage — keep slides responsive.
- Keep the output as a single self-contained Frontend Slides HTML file.
- Do not copy demo slide content or mimic the source template too literally.
- After generating, verify both content overflow and panel overlap in rendered browser screenshots.
scrollHeight checks alone are not enough because grid panels can visually cover each other.
Before generating, read these supporting files:
- html-template.md — HTML architecture and JS features
- viewport-base.css — Mandatory CSS (include in full)
- animation-patterns.md — Animation reference for the chosen feeling
Key requirements:
- Single self-contained HTML file, all CSS/JS inline
- Include the FULL contents of viewport-base.css in the
<style> block
- Use fonts from Fontshare or Google Fonts — never system fonts
- Add detailed comments explaining each section
- Every section needs a clear
/* === SECTION NAME === */ comment block
Phase 4: PPT Conversion
When converting PowerPoint files:
- Extract content — Run
python scripts/extract-pptx.py <input.pptx> <output_dir> (install python-pptx if needed: pip install python-pptx)
- Confirm with user — Present extracted slide titles, content summaries, and image counts
- Style selection — Proceed to Phase 2 for style discovery
- Generate HTML — Convert to chosen style, preserving all text, images (from assets/), slide order, and speaker notes (as HTML comments)
Phase 5: Delivery
- Clean up — Delete
.claude-design/slide-previews/ if it exists
- Open — Use
open [filename].html to launch in browser
- Summarize — Tell the user:
- File location, style name, slide count
- Navigation: Arrow keys, Space, scroll/swipe, click nav dots
- How to customize:
:root CSS variables for colors, font link for typography, .reveal class for animations
- Inline text editing is available: Hover top-left corner or press E to enter edit mode, click any text to edit, Ctrl+S to save
- Offer the natural post-draft actions: ask for revisions, edit text directly in the browser, or export/share
Phase 6: Share & Export (Optional)
After delivery, ask the user: "Would you like to share this presentation? I can deploy it to a live URL (works on any device including phones) or export it as a PDF."
Options:
- Deploy to URL — Shareable link that works on any device
- Export to PDF — Universal file for email, Slack, print
- Both
- No thanks
If the user declines, stop here. If they choose one or both, proceed below.
6A: Deploy to a Live URL (Vercel)
This deploys the presentation to Vercel — a free hosting platform. The link works on any device (phones, tablets, laptops) and stays live until the user takes it down.
If the user has never deployed before, guide them step by step:
Check if Vercel CLI is installed — Run npx vercel --version. If not found, install Node.js first (brew install node on macOS, or download from https://nodejs.org).
Check if user is logged in — Run npx vercel whoami.
- If NOT logged in, explain: "Vercel is a free hosting service. You need an account to deploy. Let me walk you through it:"
- Step 1: Ask user to go to https://vercel.com/signup in their browser
- Step 2: They can sign up with GitHub, Google, email — whatever is easiest
- Step 3: Once signed up, run
vercel login and follow the prompts (it opens a browser window to authorize)
- Step 4: Confirm login with
vercel whoami
- Wait for the user to confirm they're logged in before proceeding.
Deploy — Run the deploy script:
bash scripts/deploy.sh <path-to-presentation>
The script accepts either a folder (with index.html) or a single HTML file.
Share the URL — Tell the user:
- The live URL (from the script output)
- That it works on any device — they can text it, Slack it, email it
- To take it down later: visit https://vercel.com/dashboard and delete the project
- The Vercel free tier is generous — they won't be charged
⚠ Deployment gotchas:
- Local images/videos must travel with the HTML. The deploy script auto-detects files referenced via
src="..." in the HTML and bundles them. But if the presentation references files via CSS background-image or unusual paths, those may be missed. Before deploying, verify: open the deployed URL and check that all images load. If any are broken, the safest fix is to put the HTML and all its assets into a single folder and deploy the folder instead of a standalone HTML file.
- Prefer folder deployments when the presentation has many assets. If the presentation lives in a folder with images alongside it (e.g.,
my-deck/index.html + my-deck/logo.png), deploy the folder directly: bash scripts/deploy.sh ./my-deck/. This is more reliable than deploying a single HTML file because the entire folder contents are uploaded as-is.
- Filenames with spaces work but can cause issues. The script handles spaces in filenames, but Vercel URLs encode spaces as
%20. If possible, avoid spaces in image filenames. If the user's images have spaces, the script handles it — but if images still break, renaming files to use hyphens instead of spaces is the fix.
- Redeploying updates the same URL. Running the deploy script again on the same presentation overwrites the previous deployment. The URL stays the same — no need to share a new link.
6B: Export to PDF
This captures each slide as a screenshot and combines them into a PDF. Perfect for email attachments, embedding in documents, or printing.
Note: Animations and interactivity are not preserved — the PDF is a static snapshot. This is normal and expected; mention it to the user so they're not surprised.
Run the export script:
bash scripts/export-pdf.sh <path-to-html> [output.pdf]
If no output path is given, the PDF is saved next to the HTML file.
What happens behind the scenes (explain briefly to the user):
- A headless browser opens the presentation at 1920×1080 (standard widescreen)
- It screenshots each slide one by one
- All screenshots are combined into a single PDF
- The script needs Playwright (a browser automation tool) — it will install automatically if missing
If Playwright installation fails:
- The most common issue is Chromium not downloading. Run:
npx playwright install chromium
- If that fails too, it may be a network/firewall issue. Ask the user to try on a different network.
Deliver the PDF — The script auto-opens it. Tell the user:
- The file location and size
- That it works everywhere — email, Slack, Notion, Google Docs, print
- Animations are replaced by their final visual state (still looks great, just static)
⚠ PDF export gotchas:
Supporting Files
| File |
Purpose |
When to Read |
| STYLE_PRESETS.md |
12 curated visual presets with colors, fonts, and signature elements |
Phase 2 (style selection) |
| viewport-base.css |
Mandatory responsive CSS — copy into every presentation |
Phase 3 (generation) |
| html-template.md |
HTML structure, JS features, code quality standards |
Phase 3 (generation) |
| animation-patterns.md |
CSS/JS animation snippets and effect-to-feeling guide |
Phase 3 (generation) |
| scripts/extract-pptx.py |
Python script for PPT content extraction |
Phase 4 (conversion) |
| scripts/deploy.sh |
Deploy slides to Vercel for instant sharing |
Phase 6 (sharing) |
| scripts/export-pdf.sh |
Export slides to PDF |
Phase 6 (sharing) |
1---2name: frontend-slides3description: Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.4---56# Frontend Slides78Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.910## Core Principles11121. **Zero Dependencies** — Single HTML files with inline CSS/JS. No npm, no build tools.132. **Show, Don't Tell** — Generate visual previews, not abstract choices. People discover what they want by seeing it.143. **Distinctive Design** — No generic "AI slop." Every presentation must feel custom-crafted.154. **Viewport Fitting (NON-NEGOTIABLE)** — Every slide MUST fit exactly within 100vh. No scrolling within slides, ever. Content overflows? Split into multiple slides.1617## Design Aesthetics1819You tend to converge toward generic, "on distribution" outputs. In frontend design, this creates what users call the "AI slop" aesthetic. Avoid this: make creative, distinctive frontends that surprise and delight.2021Focus on:2223- Typography: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics.24- Color & Theme: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes. Draw from IDE themes and cultural aesthetics for inspiration.25- Motion: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions.26- Backgrounds: Create atmosphere and depth rather than defaulting to solid colors. Layer CSS gradients, use geometric patterns, or add contextual effects that match the overall aesthetic.2728Avoid generic AI-generated aesthetics:2930- Overused font families (Inter, Roboto, Arial, system fonts)31- Cliched color schemes (particularly purple gradients on white backgrounds)32- Predictable layouts and component patterns33- Cookie-cutter design that lacks context-specific character3435Interpret creatively and make unexpected choices that feel genuinely designed for the context. Vary between light and dark themes, different fonts, different aesthetics. You still tend to converge on common choices (Space Grotesk, for example) across generations. Avoid this: it is critical that you think outside the box!3637## Viewport Fitting Rules3839These invariants apply to EVERY slide in EVERY presentation:4041- Every `.slide` must have `height: 100vh; height: 100dvh; overflow: hidden;`42- ALL font sizes and spacing must use `clamp(min, preferred, max)` — never fixed px/rem43- Content containers need `max-height` constraints44- Images: `max-height: min(50vh, 400px)`45- Breakpoints required for heights: 700px, 600px, 500px46- Include `prefers-reduced-motion` support47- Never negate CSS functions directly (`-clamp()`, `-min()`, `-max()` are silently ignored) — use `calc(-1 * clamp(...))` instead4849**When generating, read `viewport-base.css` and include its full contents in every presentation.**5051### Content Density Modes5253Ask the user whether this is primarily a reading deck or a speaking deck, then design around that answer:5455| Density mode | Best for | Design behavior |56| ------------- | -------- | --------------- |57| **Low density / speaker-led** | Public talks, keynote-style sharing, live explanation | One idea per slide, large type, strong visual hierarchy, generous negative space, 1-3 bullets max, more slides if needed |58| **High density / reading-first** | Reports, handouts, async review, detailed internal docs | More self-contained slides, structured grids/tables/annotations, 4-8 bullets or 4-6 cards when readable, tighter but still intentional spacing |5960Baseline limits still apply: no scrolling, no overflow, no overlapping panels, and no text below comfortable reading size. If content exceeds the selected density mode, split it into more slides instead of shrinking until it becomes cramped.6162---6364## Phase 0: Detect Mode6566Determine what the user wants:6768- **Mode A: New Presentation** — Create from scratch. Go to Phase 1.69- **Mode B: PPT Conversion** — Convert a .pptx file. Go to Phase 4.70- **Mode C: Enhancement** — Improve an existing HTML presentation. Read it, understand it, enhance. **Follow Mode C modification rules below.**7172### Mode C: Modification Rules7374When enhancing existing presentations, viewport fitting is the biggest risk:75761. **Before adding content:** Count existing elements, check against density limits772. **Adding images:** Must have `max-height: min(50vh, 400px)`. If slide already has max content, split into two slides783. **Adding text:** Max 4-6 bullets per slide. Exceeds limits? Split into continuation slides794. **After ANY modification, verify:** `.slide` has `overflow: hidden`, new elements use `clamp()`, images have viewport-relative max-height, content fits at 1280x720805. **Proactively reorganize:** If modifications will cause overflow, automatically split content and inform the user. Don't wait to be asked8182**When adding images to existing slides:** Move image to new slide or reduce other content first. Never add images without checking if existing content already fills the viewport.8384---8586## Phase 1: Content Discovery (New Presentations)8788**Ask ALL questions in a single AskUserQuestion call** so the user fills everything out at once:8990**Question 1 — Purpose** (header: "Purpose"):91What is this presentation for? Options: Pitch deck / Teaching-Tutorial / Conference talk / Internal presentation9293**Question 2 — Length** (header: "Length"):94Approximately how many slides? Options: Short 5-10 / Medium 10-20 / Long 20+9596**Question 3 — Content** (header: "Content"):97Do you have content ready? Options: All content ready / Rough notes / Topic only9899**Question 4 — Density** (header: "Density"):100How dense should the deck feel? Options:101102- "Low density / speaker-led" — Big ideas, fewer words, more visual breathing room103- "High density / reading-first" — More self-contained detail for async reading104105**Do not ask about inline editing during Phase 1.** Users should not have to choose editing behavior before seeing a draft. Inline editing is a post-draft affordance: include it by default unless the user explicitly asks for a locked/export-only file.106107Remember the user's density choice. It affects slide count, typography scale, amount of text per slide, layout density, and whether to favor cinematic presenter slides or self-contained reading slides.108109If user has content, ask them to share it.110111### Step 1.2: Image Evaluation (if images provided)112113If user selected "No images" → skip to Phase 2.114115If user provides an image folder:1161171. **Scan** — List all image files (.png, .jpg, .svg, .webp, etc.)1182. **View each image** — Use the Read tool (Claude is multimodal)1193. **Evaluate** — For each: what it shows, USABLE or NOT USABLE (with reason), what concept it represents, dominant colors1204. **Co-design the outline** — Curated images inform slide structure alongside text. This is NOT "plan slides then add images" — design around both from the start (e.g., 3 screenshots → 3 feature slides, 1 logo → title/closing slide)1215. **Confirm via AskUserQuestion** (header: "Outline"): "Does this slide outline and image selection look right?" Options: Looks good / Adjust images / Adjust outline122123**Logo in previews:** If a usable logo was identified, embed it (base64) into each style preview in Phase 2 — the user sees their brand styled three different ways.124125### Step 1.3: Diagram Detection126127After evaluating each image, identify any **relationship diagrams** — images with spatial structure that encodes meaning (arrows, nodes, flows, hierarchies). These require dedicated CSS layouts in Phase 3 to preserve that structure.128129Detect and label each diagram image as one of:130131| Type | Visual cues | HTML layout |132|------|-------------|-------------|133| `cycle-diagram` | Circular arrows, flywheel, recurring loop | Circle of nodes with arc connectors |134| `pipeline-diagram` | Left→right flow, input/process/output boxes | Horizontal flex with arrow separators |135| `feedback-diagram` | Main flow + return arrow, system loop | Forward path + curved return path |136| `hierarchy-diagram` | Org chart, tree, parent→children | CSS grid tree with connecting lines |137| `hub-diagram` | Central node + spokes to outer nodes | CSS radial positioning |138139**If any diagram is detected:** note the type for Phase 3. The corresponding CSS layout patterns are in [html-template.md](html-template.md) under "Diagram Layout Patterns".140141**If no diagrams detected:** skip to Phase 2 as normal.142143---144145## Phase 2: Style Discovery146147**This is the "show, don't tell" phase.** Most people can't articulate design preferences in words.148149### Step 2.0: Style Path150151Ask how they want to choose (header: "Style"):152153- "Show me options" (recommended) — Generate 3 previews based on mood154- "I know what I want" — Pick from preset list directly155156**If direct selection:** Show preset picker and skip to Phase 3. Available presets are defined in [STYLE_PRESETS.md](STYLE_PRESETS.md).157158### Step 2.1: Mood Selection (Guided Discovery)159160Ask (header: "Vibe", multiSelect: true, max 2):161What feeling should the audience have? Options:162163- Impressed/Confident — Professional, trustworthy164- Excited/Energized — Innovative, bold165- Calm/Focused — Clear, thoughtful166- Inspired/Moved — Emotional, memorable167168### Step 2.2: Generate 3 Style Previews169170Based on mood, generate 3 distinct single-slide HTML previews showing typography, colors, animation, and overall aesthetic. Read [STYLE_PRESETS.md](STYLE_PRESETS.md) for safe preset candidates. If [bold-template-pack/selection-index.json](bold-template-pack/selection-index.json) exists, read that compact index too, but do not read any `design.md` files yet.171172| Mood | Suggested Presets |173| ------------------- | -------------------------------------------------- |174| Impressed/Confident | Bold Signal, Electric Studio, Dark Botanical |175| Excited/Energized | Creative Voltage, Neon Cyber, Split Pastel |176| Calm/Focused | Notebook Tabs, Paper & Ink, Swiss Modern |177| Inspired/Moved | Dark Botanical, Vintage Editorial, Pastel Geometry |178179**Preview mix rules:**180181- Generate 3 previews by default: 1 safe preset from `STYLE_PRESETS.md`, at least 1 bold template from `bold-template-pack/selection-index.json`, and 1 wildcard.182- The wildcard may be either a second bold template or a self-generated custom design. Choose whichever creates the strongest, most useful contrast for the user's occasion, audience, mood, and content.183- If the user explicitly names a preset or bold template, honor that as one option and generate the remaining preview slots around it.184185**Bold template selection rules:**186187- Match user purpose and mood against `mood`, `tone`, `best_for`, `avoid_for`, `formality`, `density`, and `scheme`.188- Treat `best_for` examples as soft signals, not strict industry filters.189- Keep the three previews genuinely different from each other.190- After choosing bold template candidate(s), read only those candidate(s)' `preview.md` files from the `preview_md` paths in the selection index.191- Use `preview.md` only for title-slide previews. Do not read full `design.md` files until the user picks the final template.192193**Custom wildcard design rules:**194195- Follow the Design Aesthetics section above: no generic "AI slop", no default font/color/layout choices, no purple-gradient-on-white clichés.196- Use viewport-fluid CSS rules (`clamp()`, `vh`/`vw` units, scroll-snap) and pass the same preview authenticity checks as every other option.197- Never render "custom", "wildcard", "AI-generated", or design-process labels on the slide itself.198199**Preview authenticity rules (NON-NEGOTIABLE):**200201- Every style preview must look like a real first slide from the user's deck, not a diagnostic card.202- Never render internal workflow text on a slide: no `preview`, `generated from`, `preview.md`, `template`, `preset`, `style option`, `Option A/B/C`, file names, paths, or source-doc labels.203- Never render template names or slug names on the slide itself. Template/style names belong only in the message to the user.204- If the slide needs chrome, use real deck chrome only: the deck title, section title, date, author, company, page number, or a genuine content phrase from the user's material.205- Before opening previews, inspect the visible text and revise if any internal metadata appears.206207Save previews to `.claude-design/slide-previews/` (style-a.html, style-b.html, style-c.html). Each should be self-contained, ~50-100 lines, showing one animated title slide.208209Open each preview automatically for the user.210211### Step 2.3: User Picks212213Ask (header: "Style"):214Which style preview do you prefer? Options: Style A: [Name] / Style B: [Name] / Style C: [Name] / Mix elements215216If "Mix elements", ask for specifics.217218---219220## Phase 3: Generate Presentation221222Generate the full presentation using content from Phase 1 (text, or text + curated images) and style from Phase 2.223224If images were provided, the slide outline already incorporates them from Step 1.2. If not, CSS-generated visuals (gradients, shapes, patterns) provide visual interest — this is a fully supported first-class path.225226Apply the user's density choice throughout the deck:227228- **Low density / speaker-led:** Use more slides with fewer ideas per slide. Favor large headings, short phrases, visual metaphors, section beats, quote/statement slides, and presenter-friendly pacing.229- **High density / reading-first:** Make slides more self-contained. Use structured grids, comparison tables, annotated diagrams, captions, and concise explanatory copy. Keep hierarchy strong so it feels designed, not like a document pasted onto slides.230231If the user's stated needs are mixed, choose the closer of the two modes instead of inventing a middle option: live audience persuasion defaults low-density; async circulation or detailed review defaults high-density.232233Never let high density become visual clutter. If a high-density slide starts to overflow, split it or redesign it into a clearer structure.234235If the user selected a bold template from `bold-template-pack`, read that one template's full `design.md` before generating. Do not read the other bold templates. Treat `design.md` as the design recipe:236237- Preserve its fonts, palette, decorative vocabulary, spacing rhythm, and component grammar.238- Translate the template's design proportions into this skill's viewport-fluid CSS system (`clamp()`, `vh`/`vw` units, scroll-snap). Do not adopt a fixed 1920×1080 stage — keep slides responsive.239- Keep the output as a single self-contained Frontend Slides HTML file.240- Do not copy demo slide content or mimic the source template too literally.241- After generating, verify both content overflow and panel overlap in rendered browser screenshots. `scrollHeight` checks alone are not enough because grid panels can visually cover each other.242243**Before generating, read these supporting files:**244245- [html-template.md](html-template.md) — HTML architecture and JS features246- [viewport-base.css](viewport-base.css) — Mandatory CSS (include in full)247- [animation-patterns.md](animation-patterns.md) — Animation reference for the chosen feeling248249**Key requirements:**250251- Single self-contained HTML file, all CSS/JS inline252- Include the FULL contents of viewport-base.css in the `<style>` block253- Use fonts from Fontshare or Google Fonts — never system fonts254- Add detailed comments explaining each section255- Every section needs a clear `/* === SECTION NAME === */` comment block256257---258259## Phase 4: PPT Conversion260261When converting PowerPoint files:2622631. **Extract content** — Run `python scripts/extract-pptx.py <input.pptx> <output_dir>` (install python-pptx if needed: `pip install python-pptx`)2642. **Confirm with user** — Present extracted slide titles, content summaries, and image counts2653. **Style selection** — Proceed to Phase 2 for style discovery2664. **Generate HTML** — Convert to chosen style, preserving all text, images (from assets/), slide order, and speaker notes (as HTML comments)267268---269270## Phase 5: Delivery2712721. **Clean up** — Delete `.claude-design/slide-previews/` if it exists2732. **Open** — Use `open [filename].html` to launch in browser2743. **Summarize** — Tell the user:275 - File location, style name, slide count276 - Navigation: Arrow keys, Space, scroll/swipe, click nav dots277 - How to customize: `:root` CSS variables for colors, font link for typography, `.reveal` class for animations278 - Inline text editing is available: Hover top-left corner or press E to enter edit mode, click any text to edit, Ctrl+S to save279 - Offer the natural post-draft actions: ask for revisions, edit text directly in the browser, or export/share280281---282283## Phase 6: Share & Export (Optional)284285After delivery, **ask the user:** _"Would you like to share this presentation? I can deploy it to a live URL (works on any device including phones) or export it as a PDF."_286287Options:288289- **Deploy to URL** — Shareable link that works on any device290- **Export to PDF** — Universal file for email, Slack, print291- **Both**292- **No thanks**293294If the user declines, stop here. If they choose one or both, proceed below.295296### 6A: Deploy to a Live URL (Vercel)297298This deploys the presentation to Vercel — a free hosting platform. The link works on any device (phones, tablets, laptops) and stays live until the user takes it down.299300**If the user has never deployed before, guide them step by step:**3013021. **Check if Vercel CLI is installed** — Run `npx vercel --version`. If not found, install Node.js first (`brew install node` on macOS, or download from https://nodejs.org).3033042. **Check if user is logged in** — Run `npx vercel whoami`.305 - If NOT logged in, explain: _"Vercel is a free hosting service. You need an account to deploy. Let me walk you through it:"_306 - Step 1: Ask user to go to https://vercel.com/signup in their browser307 - Step 2: They can sign up with GitHub, Google, email — whatever is easiest308 - Step 3: Once signed up, run `vercel login` and follow the prompts (it opens a browser window to authorize)309 - Step 4: Confirm login with `vercel whoami`310 - Wait for the user to confirm they're logged in before proceeding.3113123. **Deploy** — Run the deploy script:313314 ```bash315 bash scripts/deploy.sh <path-to-presentation>316 ```317318 The script accepts either a folder (with index.html) or a single HTML file.3193204. **Share the URL** — Tell the user:321 - The live URL (from the script output)322 - That it works on any device — they can text it, Slack it, email it323 - To take it down later: visit https://vercel.com/dashboard and delete the project324 - The Vercel free tier is generous — they won't be charged325326**⚠ Deployment gotchas:**327328- **Local images/videos must travel with the HTML.** The deploy script auto-detects files referenced via `src="..."` in the HTML and bundles them. But if the presentation references files via CSS `background-image` or unusual paths, those may be missed. **Before deploying, verify:** open the deployed URL and check that all images load. If any are broken, the safest fix is to put the HTML and all its assets into a single folder and deploy the folder instead of a standalone HTML file.329- **Prefer folder deployments when the presentation has many assets.** If the presentation lives in a folder with images alongside it (e.g., `my-deck/index.html` + `my-deck/logo.png`), deploy the folder directly: `bash scripts/deploy.sh ./my-deck/`. This is more reliable than deploying a single HTML file because the entire folder contents are uploaded as-is.330- **Filenames with spaces work but can cause issues.** The script handles spaces in filenames, but Vercel URLs encode spaces as `%20`. If possible, avoid spaces in image filenames. If the user's images have spaces, the script handles it — but if images still break, renaming files to use hyphens instead of spaces is the fix.331- **Redeploying updates the same URL.** Running the deploy script again on the same presentation overwrites the previous deployment. The URL stays the same — no need to share a new link.332333### 6B: Export to PDF334335This captures each slide as a screenshot and combines them into a PDF. Perfect for email attachments, embedding in documents, or printing.336337**Note:** Animations and interactivity are not preserved — the PDF is a static snapshot. This is normal and expected; mention it to the user so they're not surprised.3383391. **Run the export script:**340341 ```bash342 bash scripts/export-pdf.sh <path-to-html> [output.pdf]343 ```344345 If no output path is given, the PDF is saved next to the HTML file.3463472. **What happens behind the scenes** (explain briefly to the user):348 - A headless browser opens the presentation at 1920×1080 (standard widescreen)349 - It screenshots each slide one by one350 - All screenshots are combined into a single PDF351 - The script needs Playwright (a browser automation tool) — it will install automatically if missing3523533. **If Playwright installation fails:**354 - The most common issue is Chromium not downloading. Run: `npx playwright install chromium`355 - If that fails too, it may be a network/firewall issue. Ask the user to try on a different network.3563574. **Deliver the PDF** — The script auto-opens it. Tell the user:358 - The file location and size359 - That it works everywhere — email, Slack, Notion, Google Docs, print360 - Animations are replaced by their final visual state (still looks great, just static)361362**⚠ PDF export gotchas:**363364- **First run is slow.** The script installs Playwright and downloads a Chromium browser (~150MB) into a temp directory. This happens once per run. Warn the user it may take 30-60 seconds the first time — subsequent exports within the same session are faster.365- **Slides must use `class="slide"`.** The export script finds slides by querying `.slide` elements. If the presentation uses a different class name, the script will report "0 slides found" and fail. All presentations generated by this skill use `.slide`, so this only matters for externally-created HTML.366- **Local images must be loadable via HTTP.** The script starts a local server and loads the HTML through it (so Google Fonts and relative image paths work). If images use absolute filesystem paths (e.g., `src="/Users/name/photo.png"`) instead of relative paths (e.g., `src="photo.png"`), they won't load. Generated presentations always use relative paths, but converted or user-provided decks might not — check and fix if needed.367- **Local images appear in the PDF** as long as they are in the same directory as (or relative to) the HTML file. The export script serves the HTML's parent directory over HTTP, so relative paths like `src="photo.png"` resolve correctly — including filenames with spaces. If images still don't appear, check: (1) the image files actually exist at the referenced path, (2) the paths are relative, not absolute filesystem paths like `/Users/name/photo.png`.368- **Large presentations produce large PDFs.** Each slide is captured as a full 1920×1080 PNG screenshot. An 18-slide deck can produce a ~20MB PDF. If the PDF exceeds 10MB, ask the user: _"The PDF is [size]. Would you like me to compress it? It'll look slightly less sharp but the file will be much smaller."_ If yes, re-run the export with the `--compact` flag:369 ```bash370 bash scripts/export-pdf.sh <path-to-html> [output.pdf] --compact371 ```372 This renders at 1280×720 instead of 1920×1080, typically cutting file size by 50-70% with minimal visual difference.373374---375376## Supporting Files377378| File | Purpose | When to Read |379| -------------------------------------------------- | -------------------------------------------------------------------- | ------------------------- |380| [STYLE_PRESETS.md](STYLE_PRESETS.md) | 12 curated visual presets with colors, fonts, and signature elements | Phase 2 (style selection) |381| [viewport-base.css](viewport-base.css) | Mandatory responsive CSS — copy into every presentation | Phase 3 (generation) |382| [html-template.md](html-template.md) | HTML structure, JS features, code quality standards | Phase 3 (generation) |383| [animation-patterns.md](animation-patterns.md) | CSS/JS animation snippets and effect-to-feeling guide | Phase 3 (generation) |384| [scripts/extract-pptx.py](scripts/extract-pptx.py) | Python script for PPT content extraction | Phase 4 (conversion) |385| [scripts/deploy.sh](scripts/deploy.sh) | Deploy slides to Vercel for instant sharing | Phase 6 (sharing) |386| [scripts/export-pdf.sh](scripts/export-pdf.sh) | Export slides to PDF | Phase 6 (sharing) |