F

frontend-slides

Verified

by affaan-m · Updated Apr 16, 2026

opus
2.7Kin15.2Kout
$0.893m 53s

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.

presentationshtmlslidesfrontendpowerpointdesign

See It In Action

1 turns·claude
The project codebase is in your current working directory. Explore the files to understand the code before making changes. got a last minute investor ppt for tomorrow’s eng all-hands — can you turn it into a browser deck today so it rehearses cleanly on office screens + laptops

Let me find the PowerPoint file and understand the project structure first.

Found the file. Let me read the speaker notes and then invoke the slides skill to convert it.

Found all-hands-investor-update.pptx with Sarah's requirements. Let me invoke the slides skill to convert it.

Let me extract the PowerPoint content first, then build the deck.

7 slides extracted cleanly. Now building the HTML deck with the Midnight Keynote preset.

Now let me validate it opens correctly and check viewport fit at the target resolutions.

Let me verify the HTML is valid and all slides fit viewport constraints by checking for any overflow-inducing patterns.

The only fixed pixel heights are decorative lines (2-3px dividers) — no content boxes. All 43 uses of clamp() for responsive scaling, no overflow or negative-clamp anti-patterns. Let me open it in the browser to do a visual spot-check.

The deck is ready and should be open in your browser now. Here's the summary:

File: all-hands-investor-update.html (24KB, single self-contained file)

7 slides, matching the original PPTX:

  1. Title — Q1 2026 Investor Update
  2. Key Metrics — 5 metric cards (MAU, API requests, latency, uptime, NRR)
  3. Product Roadmap — 5 shipped items with highlighted values
  4. Engineering Highlights — 5 bullets with key stats emphasized
  5. Team & Hiring — 5-card stat grid
  6. Financial Overview — 5 finance cards (ARR, margin, burn, runway, cost/user)
  7. Q2 Priorities & Q&A — numbered priority list

Navigation: Arrow keys, Space, PageUp/Down, Home/End, mouse wheel, and touch swipe

Design: Midnight Keynote preset — dark background, blue accent with glow, gradient title text, subtle fade-up reveal animations with stagger. Progress bar at top, slide counter at bottom-right.

Responsive: All typography and spacing use clamp() — scales cleanly from 1920x1080 conference display down to 13" laptop. prefers-reduced-motion is respected.

To rehearse: Just double-click the file or drag into Chrome. Use arrow keys to advance. No server, no dependencies.

Claude Sonnet 4.6

External Tools

ToolType
python3binary

Permissions

ScopeDescription
filesystem:read
filesystem:write
filesystem:delete
process:spawn

SKILL.md

Frontend Slides

Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.

Inspired by the visual exploration approach showcased in work by zarazhangrui.

When to Activate

  • Creating a talk deck, pitch deck, workshop deck, or internal presentation
  • Converting .ppt or .pptx slides into an HTML presentation
  • Improving an existing HTML presentation's layout, motion, or typography
  • Exploring presentation styles with a user who does not know their design preference yet

Non-Negotiables

  1. Zero dependencies: default to one self-contained HTML file with inline CSS and JS.
  2. Viewport fit is mandatory: every slide must fit inside one viewport with no internal scrolling.
  3. Show, don't tell: use visual previews instead of abstract style questionnaires.
  4. Distinctive design: avoid generic purple-gradient, Inter-on-white, template-looking decks.
  5. Production quality: keep code commented, accessible, responsive, and performant.

Before generating, read STYLE_PRESETS.md for the viewport-safe CSS base, density limits, preset catalog, and CSS gotchas.

Workflow

1. Detect Mode

Choose one path:

  • New presentation: user has a topic, notes, or full draft
  • PPT conversion: user has .ppt or .pptx
  • Enhancement: user already has HTML slides and wants improvements

2. Discover Content

Ask only the minimum needed:

  • purpose: pitch, teaching, conference talk, internal update
  • length: short (5-10), medium (10-20), long (20+)
  • content state: finished copy, rough notes, topic only

If the user has content, ask them to paste it before styling.

3. Discover Style

Default to visual exploration.

If the user already knows the desired preset, skip previews and use it directly.

Otherwise:

  1. Ask what feeling the deck should create: impressed, energized, focused, inspired.
  2. Generate 3 single-slide preview files in .ecc-design/slide-previews/.
  3. Each preview must be self-contained, show typography/color/motion clearly, and stay under roughly 100 lines of slide content.
  4. Ask the user which preview to keep or what elements to mix.

Use the preset guide in STYLE_PRESETS.md when mapping mood to style.

4. Build the Presentation

Output either:

  • presentation.html
  • [presentation-name].html

Use an assets/ folder only when the deck contains extracted or user-supplied images.

Required structure:

  • semantic slide sections
  • a viewport-safe CSS base from STYLE_PRESETS.md
  • CSS custom properties for theme values
  • a presentation controller class for keyboard, wheel, and touch navigation
  • Intersection Observer for reveal animations
  • reduced-motion support

5. Enforce Viewport Fit

Treat this as a hard gate.

Rules:

  • every .slide must use height: 100vh; height: 100dvh; overflow: hidden;
  • all type and spacing must scale with clamp()
  • when content does not fit, split into multiple slides
  • never solve overflow by shrinking text below readable sizes
  • never allow scrollbars inside a slide

Use the density limits and mandatory CSS block in STYLE_PRESETS.md.

6. Validate

Check the finished deck at these sizes:

  • 1920x1080
  • 1280x720
  • 768x1024
  • 375x667
  • 667x375

If browser automation is available, use it to verify no slide overflows and that keyboard navigation works.

7. Deliver

At handoff:

  • delete temporary preview files unless the user wants to keep them
  • open the deck with the platform-appropriate opener when useful
  • summarize file path, preset used, slide count, and easy theme customization points

Use the correct opener for the current OS:

  • macOS: open file.html
  • Linux: xdg-open file.html
  • Windows: start "" file.html

PPT / PPTX Conversion

For PowerPoint conversion:

  1. Prefer python3 with python-pptx to extract text, images, and notes.
  2. If python-pptx is unavailable, ask whether to install it or fall back to a manual/export-based workflow.
  3. Preserve slide order, speaker notes, and extracted assets.
  4. After extraction, run the same style-selection workflow as a new presentation.

Keep conversion cross-platform. Do not rely on macOS-only tools when Python can do the job.

Implementation Requirements

HTML / CSS

  • Use inline CSS and JS unless the user explicitly wants a multi-file project.
  • Fonts may come from Google Fonts or Fontshare.
  • Prefer atmospheric backgrounds, strong type hierarchy, and a clear visual direction.
  • Use abstract shapes, gradients, grids, noise, and geometry rather than illustrations.

JavaScript

Include:

  • keyboard navigation
  • touch / swipe navigation
  • mouse wheel navigation
  • progress indicator or slide index
  • reveal-on-enter animation triggers

Accessibility

  • use semantic structure (main, section, nav)
  • keep contrast readable
  • support keyboard-only navigation
  • respect prefers-reduced-motion

Content Density Limits

Use these maxima unless the user explicitly asks for denser slides and readability still holds:

Slide typeLimit
Title1 heading + 1 subtitle + optional tagline
Content1 heading + 4-6 bullets or 2 short paragraphs
Feature grid6 cards max
Code8-10 lines max
Quote1 quote + attribution
Image1 image constrained by viewport

Anti-Patterns

  • generic startup gradients with no visual identity
  • system-font decks unless intentionally editorial
  • long bullet walls
  • code blocks that need scrolling
  • fixed-height content boxes that break on short screens
  • invalid negated CSS functions like -clamp(...)

Related ECC Skills

  • frontend-patterns for component and interaction patterns around the deck
  • liquid-glass-design when a presentation intentionally borrows Apple glass aesthetics
  • e2e-testing if you need automated browser verification for the final deck

Deliverable Checklist

  • presentation runs from a local file in a browser
  • every slide fits the viewport without scrolling
  • style is distinctive and intentional
  • animation is meaningful, not noisy
  • reduced motion is respected
  • file paths and customization points are explained at handoff

FAQ

What does frontend-slides do?

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.

When should I use frontend-slides?

Use it when you need a repeatable workflow that produces text report.

What does frontend-slides output?

In the evaluated run it produced text report.

How do I install or invoke frontend-slides?

npx skills add https://github.com/affaan-m/everything-claude-code --skill frontend-slides

Which agents does frontend-slides support?

Claude Code

What tools, channels, or permissions does frontend-slides need?

It uses python3; channels commonly include text; permissions include filesystem:read, filesystem:write, filesystem:delete, process:spawn.

Is frontend-slides safe to install?

Static analysis marked this skill as medium risk; review side effects and permissions before enabling it.

How is frontend-slides different from an MCP or plugin?

A skill packages instructions and workflow conventions; tools, MCP servers, and plugins are dependencies the skill may call during execution.

Does frontend-slides outperform not using a skill?

About frontend-slides

When to use frontend-slides

You need a standalone HTML presentation with custom styling and animations. You want to convert a .ppt or .pptx deck into a web presentation. You want to improve the visual design and responsiveness of an existing HTML slide deck.

When frontend-slides is not the right choice

You need native PowerPoint editing rather than browser-based output. You require a workflow centered on external design tools or hosted presentation platforms.

What it produces

Produces text report.

Install

npx skills add https://github.com/affaan-m/everything-claude-code --skill frontend-slides

Invoke: Ask Claude Code to use frontend-slides for the task.