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.
- Progressive Disclosure — Read lightweight style indexes first. For bold templates, use small preview cards for style previews and load the full
design.md only after the user picks that template.
- Fixed 16:9 Stage (NON-NEGOTIABLE) — Every deck uses a 1920×1080 slide canvas scaled as a whole to the viewport. Slides must stay 16:9 on every screen, including phones. Do not reflow slide content to fit the device.
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!
Fixed Stage Rules
These invariants apply to EVERY slide in EVERY presentation:
- Every deck has a viewport wrapper that fills the browser window.
- Every slide is authored inside a fixed 1920×1080 stage.
- The stage scales uniformly to fit the viewport. It may letterbox/pillarbox; it must not re-layout content.
- Do not use responsive breakpoints to rearrange slide content for phones.
- Use fixed internal slide measurements at the 1920×1080 design size.
- Slide visibility must be controlled by
.active / .visible using visibility, opacity, and pointer-events from viewport-base.css. Do not use display: none / display: block for slide switching; later layout classes such as .slide-content { display: flex; } can override them and make every slide visible at once.
- Use
clamp() only for non-slide UI outside the stage, or for small fallback previews where a full stage is impractical.
- 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, fixed-stage fitting is the biggest risk:
- Before adding content: Count existing elements, check against density limits
- Adding images: Fit them inside the 1920×1080 slide canvas. 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: the slide stage remains 16:9, no text overflows its card, no panels overlap, and screenshots look correct at 1280×720 plus one phone viewport
- 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 a new slide or reduce other content first. Never add images without checking if existing content already fills the 1920×1080 slide stage.
Phase 1: Content Discovery (New Presentations)
Ask ALL questions together so the user fills everything out at once. If the current environment provides a native structured-question UI, use it; otherwise ask in one concise message with clearly numbered choices:
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.)
- Inspect each image — Use the agent's available image-understanding capability. If image reading is unavailable, use filenames/metadata and ask the user to clarify only when needed
- 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 the outline using the same structured-question mechanism when available: "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.
Phase 2: Style Discovery
This is the "show, don't tell" phase. Most people can't articulate design preferences in words.
Step 2.0: Generate 3 Style Previews Directly
Based on purpose, audience, mood, and content density, generate 3 distinct single-slide HTML previews showing typography, colors, animation, and overall aesthetic.
Do not ask the user whether they want options or a preset picker. The default discovery experience is always visual comparison.
If the user already gave a vibe, use it. If they did not, infer the likely mood from the occasion, audience, content, and stakes. Keep the options diverse enough that the user can react visually instead of needing to articulate taste up front.
If the user explicitly names a preset or bold template, honor that as one option and generate the remaining preview slots around it.
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.
- Do not force every expressive option to come from the template library. If the brief has a sharper, more specific design opportunity than the available templates, use the wildcard slot to design freely.
- For conservative or high-stakes decks, make the safe preset especially restrained; choose a calm, higher-formality bold template; make the wildcard either another restrained template or a custom design that feels authoritative rather than decorative.
- For expressive decks, keep the safe preset as a readable fallback; choose one strong bold template; make the wildcard adventurous, context-specific, and clearly different from both other previews.
- If bold template matches feel weak, use the wildcard as a custom design or fall back to another safe preset instead of forcing a 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, no cookie-cutter dashboard/card look.
- Match the user's stated occasion, audience, mood/vibe, and content density. The custom design should feel authored for this deck, not merely "stylish."
- Make a deliberate visual thesis: distinctive typography, a committed palette, a recognizable layout system, and one strong atmospheric or graphic device.
- Keep it feasible for a full deck. The preview must imply a design system that can expand into section, content, quote, comparison, and closing slides.
- Use fixed 1920×1080 stage rules 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.
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.
- Do not read or copy
template.html unless the selected final design.md is missing a critical implementation detail.
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.
- Never render user requirement notes as slide content, such as "sharp and provocative", "safe option", "bold option", "for internal sharing", or "audience: ...", unless the user explicitly wants that exact phrase to appear in the deck.
- 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 .frontend-slides/slide-previews/ (style-a.html, style-b.html, style-c.html). Each should be self-contained and compact, showing one animated title slide.
Open each preview automatically for the user.
Step 2.1: 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.
- Generate the final deck as a fixed 1920×1080 stage scaled uniformly to the viewport, regardless of whether the source template originally used
deck-stage.js or viewport-fluid CSS.
- Treat viewport-fluid values in
design.md as design proportions to translate into 1920×1080 stage coordinates. Do not keep them as live viewport reflow rules in the final deck.
- 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.
- Use
template.html only as a last-resort implementation reference for the selected template.
- 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.
If the user selected a self-generated custom wildcard, treat that preview's CSS and layout as the design recipe:
- Preserve its fonts, palette, decorative vocabulary, spacing rhythm, grid logic, and component grammar.
- Expand the same visual system across the full deck. Do not switch to a preset or bold template after the user has chosen the custom direction.
- Design any missing slide layouts from that system rather than importing patterns from another style.
- Keep the output fixed-stage, single-file, and visually verified like every other deck.
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
.frontend-slides/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, swipe/tap if enabled
- 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) |
| bold-template-pack/selection-index.json |
Compact bold template metadata for candidate selection |
Phase 2 (style selection) |
| bold-template-pack/templates/*/preview.md |
Lightweight style cards for shortlisted bold title previews |
Phase 2 after shortlisting |
| bold-template-pack/templates/*/design.md |
Detailed design-system docs for the selected bold template only |
Phase 3 after user selection |
| viewport-base.css |
Mandatory fixed-stage 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: 创建精美的 HTML 演示文稿,支持从零创建、PPTX 转网页、或增强已有 HTML 演示。零依赖单文件,固定 16:9 比例,34 种设计模板。用户说要"做PPT""做演示文稿""创建slides""转换PPTX"时使用。4---56<!--7=== 实践调试经验总结 (2026-06-02) ===89## 1. PPTX 风格参考提取(关键步骤)1011当用户提供参考 PPTX 要求"仿照这个风格"时,必须提取以下所有维度:1213### 必须提取的信息14- **配色方案**: 背景色、标题色、正文色、强调色、引用色。用 python-pptx 的 `font.color.rgb` 提取15- **字体大小**: 封面标题、作者信息、目录文字、章节编号/标题、内容页标题、正文、参考文献、页脚标签16- **字体家族**: 中文字体、英文字体、数字字体17- **布局要素**: 底部装饰线(宽度、位置、颜色)、内容区起始位置、页脚标签位置18- **特殊页面的配色逻辑**: 如目录页背景色与文字色的反色关系1920### 提取脚本模板21```python22from pptx import Presentation23prs = Presentation('reference.pptx')24for i, slide in enumerate(prs.slides):25 for shape in slide.shapes:26 if hasattr(shape, 'text_frame'):27 for p in shape.text_frame.paragraphs:28 for run in p.runs:29 # 注意: SchemeColor 类型的颜色无法直接获取 rgb,会抛 AttributeError30 try:31 color = str(run.font.color.rgb)32 except AttributeError:33 color = f'scheme({run.font.color.type})'34 size_pt = run.font.size / 12700 if run.font.size else 'inherited'35 print(f'{size_pt}pt | {color} | {run.text[:50]}')36```3738### 常见陷阱39- **SchemeColor 颜色**: 参考 PPTX 中正文常使用主题色(如 `SCHEME(2)`),python-pptx 无法直接读取其 RGB 值。这些通常是白色或浅色,需根据上下文推断40- **颜色对比度**: 从参考 PPTX 提取的深色文字(如 `#005815` 的 SYSU 标签)可能位于浅色背景区域,直接套用到深色背景上会不可见。生成后必须验证所有文字与背景的对比度41- **EMU 转换**: python-pptx 字号单位是 EMU(1pt = 12700 EMU),必须 `/12700` 转为 pt4243## 2. 视觉验证清单4445生成 HTML 后必须逐项验证(用代码而非肉眼):4647### 字体大小对比48逐项核对封面标题、作者信息、目录、章节分隔页、内容页标题、正文、参考文献、页脚标签的字号是否与参考 PPTX 一致4950### 配色对比51检查 CSS 变量中的颜色值是否与参考 PPTX 提取的完全一致5253### 布局检查54- 底部装饰线: width、bottom、left 值55- 内容区: top、height 值56- 页脚标签: bottom、right、font-size 值5758### 重叠检查(关键)59- 所有使用 `position: absolute` 的元素,检查它们的 `top` 值是否相同导致重叠60- 特别是 conclusion-box、card 等重复元素,不能全部设为 `top:0%`61- 多个同类元素在同一个父容器中时,应使用 `position: relative` + flexbox/grid 流式布局,而非 absolute 定位6263## 3. 常见 Bug 及修复6465### Bug: 结论框/卡片重叠66- **现象**: 多个 conclusion-box 全部叠在同一位置,文字互相覆盖67- **根因**: 每个 box 都用了 `position: absolute; top:0%`,没有给不同的 top 值68- **修复**: 69 1. 将 `.conclusion-box` 默认定位改为 `position: relative`70 2. 父容器加 `display:flex; flex-direction:column; gap:12pt`71 3. 移除每个 box 上无效的 `top`/`left` inline style72- **教训**: 多个同类元素排列时,优先用 flexbox 流式布局,避免手动设置 absolute 定位7374### Bug: 页脚标签颜色不可见75- **现象**: SYSU 标签使用参考 PPTX 的 `#005815`(深绿),但在深绿背景上完全不可见76- **根因**: 参考 PPTX 中该标签位于底部浅色区域,但 HTML 中没有该浅色背景77- **修复**: 改为 `rgba(255,255,255,0.5)` 半透明白色78- **教训**: 提取参考样式后,必须验证每个颜色在其实际背景上的对比度7980### Bug: agent-browser 元素引用失效81- **现象**: 多次点击后 `e2` 引用失效(`Unknown ref`)82- **根因**: 页面 DOM 更新后,之前的 snapshot 元素 ID 过期83- **修复**: 在每次需要交互前重新 `agent-browser snapshot -i`84- **教训**: snapshot 的元素引用是瞬时的,页面状态变化后需要重新获取8586## 4. 生成流程改进建议87881. **风格参考模式(新增)**: 当用户提供参考 PPTX 时,跳过 Phase 2(风格发现),直接进入"风格提取 → 验证 → 生成"流程892. **生成后必须做代码级验证**: 用 CSS 数值对比代替肉眼检查,逐项核对字体大小、颜色、布局参数903. **多个同类元素默认用流式布局**: 在模板代码中,conclusion-box、card、feature-item 等重复元素应默认使用 flexbox 而非 absolute 定位914. **颜色对比度自动检查**: 生成后自动检查所有 `color` 属性与所在区域 `background` 的对比度,低于阈值时警告92-->9394# Frontend Slides9596Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.9798## Core Principles991001. **Zero Dependencies** — Single HTML files with inline CSS/JS. No npm, no build tools.1012. **Show, Don't Tell** — Generate visual previews, not abstract choices. People discover what they want by seeing it.1023. **Distinctive Design** — No generic "AI slop." Every presentation must feel custom-crafted.1034. **Progressive Disclosure** — Read lightweight style indexes first. For bold templates, use small preview cards for style previews and load the full `design.md` only after the user picks that template.1045. **Fixed 16:9 Stage (NON-NEGOTIABLE)** — Every deck uses a 1920×1080 slide canvas scaled as a whole to the viewport. Slides must stay 16:9 on every screen, including phones. Do not reflow slide content to fit the device.105106## Design Aesthetics107108You 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.109110Focus on:111112- 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.113- 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.114- 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.115- 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.116117Avoid generic AI-generated aesthetics:118119- Overused font families (Inter, Roboto, Arial, system fonts)120- Cliched color schemes (particularly purple gradients on white backgrounds)121- Predictable layouts and component patterns122- Cookie-cutter design that lacks context-specific character123124Interpret 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!125126## Fixed Stage Rules127128These invariants apply to EVERY slide in EVERY presentation:129130- Every deck has a viewport wrapper that fills the browser window.131- Every slide is authored inside a fixed 1920×1080 stage.132- The stage scales uniformly to fit the viewport. It may letterbox/pillarbox; it must not re-layout content.133- Do not use responsive breakpoints to rearrange slide content for phones.134- Use fixed internal slide measurements at the 1920×1080 design size.135- Slide visibility must be controlled by `.active` / `.visible` using `visibility`, `opacity`, and `pointer-events` from `viewport-base.css`. Do not use `display: none` / `display: block` for slide switching; later layout classes such as `.slide-content { display: flex; }` can override them and make every slide visible at once.136- Use `clamp()` only for non-slide UI outside the stage, or for small fallback previews where a full stage is impractical.137- Include `prefers-reduced-motion` support138- Never negate CSS functions directly (`-clamp()`, `-min()`, `-max()` are silently ignored) — use `calc(-1 * clamp(...))` instead139140**When generating, read `viewport-base.css` and include its full contents in every presentation.**141142### Content Density Modes143144Ask the user whether this is primarily a reading deck or a speaking deck, then design around that answer:145146| Density mode | Best for | Design behavior |147| ------------- | -------- | --------------- |148| **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 |149| **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 |150151Baseline 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.152153---154155## Phase 0: Detect Mode156157Determine what the user wants:158159- **Mode A: New Presentation** — Create from scratch. Go to Phase 1.160- **Mode B: PPT Conversion** — Convert a .pptx file. Go to Phase 4.161- **Mode C: Enhancement** — Improve an existing HTML presentation. Read it, understand it, enhance. **Follow Mode C modification rules below.**162163### Mode C: Modification Rules164165When enhancing existing presentations, fixed-stage fitting is the biggest risk:1661671. **Before adding content:** Count existing elements, check against density limits1682. **Adding images:** Fit them inside the 1920×1080 slide canvas. If slide already has max content, split into two slides1693. **Adding text:** Max 4-6 bullets per slide. Exceeds limits? Split into continuation slides1704. **After ANY modification, verify:** the slide stage remains 16:9, no text overflows its card, no panels overlap, and screenshots look correct at 1280×720 plus one phone viewport1715. **Proactively reorganize:** If modifications will cause overflow, automatically split content and inform the user. Don't wait to be asked172173**When adding images to existing slides:** Move image to a new slide or reduce other content first. Never add images without checking if existing content already fills the 1920×1080 slide stage.174175---176177## Phase 1: Content Discovery (New Presentations)178179**Ask ALL questions together** so the user fills everything out at once. If the current environment provides a native structured-question UI, use it; otherwise ask in one concise message with clearly numbered choices:180181**Question 1 — Purpose** (header: "Purpose"):182What is this presentation for? Options: Pitch deck / Teaching-Tutorial / Conference talk / Internal presentation183184**Question 2 — Length** (header: "Length"):185Approximately how many slides? Options: Short 5-10 / Medium 10-20 / Long 20+186187**Question 3 — Content** (header: "Content"):188Do you have content ready? Options: All content ready / Rough notes / Topic only189190**Question 4 — Density** (header: "Density"):191How dense should the deck feel? Options:192193- "Low density / speaker-led" — Big ideas, fewer words, more visual breathing room194- "High density / reading-first" — More self-contained detail for async reading195196**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.197198Remember 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.199200If user has content, ask them to share it.201202### Step 1.2: Image Evaluation (if images provided)203204If user selected "No images" → skip to Phase 2.205206If user provides an image folder:2072081. **Scan** — List all image files (.png, .jpg, .svg, .webp, etc.)2092. **Inspect each image** — Use the agent's available image-understanding capability. If image reading is unavailable, use filenames/metadata and ask the user to clarify only when needed2103. **Evaluate** — For each: what it shows, USABLE or NOT USABLE (with reason), what concept it represents, dominant colors2114. **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)2125. **Confirm the outline** using the same structured-question mechanism when available: "Does this slide outline and image selection look right?" Options: Looks good / Adjust images / Adjust outline213214**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.215216---217218## Phase 2: Style Discovery219220**This is the "show, don't tell" phase.** Most people can't articulate design preferences in words.221222### Step 2.0: Generate 3 Style Previews Directly223224Based on purpose, audience, mood, and content density, generate 3 distinct single-slide HTML previews showing typography, colors, animation, and overall aesthetic.225226Do not ask the user whether they want options or a preset picker. The default discovery experience is always visual comparison.227228If the user already gave a vibe, use it. If they did not, infer the likely mood from the occasion, audience, content, and stakes. Keep the options diverse enough that the user can react visually instead of needing to articulate taste up front.229230If the user explicitly names a preset or bold template, honor that as one option and generate the remaining preview slots around it.231232Read [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.233234| Mood | Suggested Presets |235| ------------------- | -------------------------------------------------- |236| Impressed/Confident | Bold Signal, Electric Studio, Dark Botanical |237| Excited/Energized | Creative Voltage, Neon Cyber, Split Pastel |238| Calm/Focused | Notebook Tabs, Paper & Ink, Swiss Modern |239| Inspired/Moved | Dark Botanical, Vintage Editorial, Pastel Geometry |240241**Preview mix rules:**242243- 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.244- 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.245- Do not force every expressive option to come from the template library. If the brief has a sharper, more specific design opportunity than the available templates, use the wildcard slot to design freely.246- For conservative or high-stakes decks, make the safe preset especially restrained; choose a calm, higher-formality bold template; make the wildcard either another restrained template or a custom design that feels authoritative rather than decorative.247- For expressive decks, keep the safe preset as a readable fallback; choose one strong bold template; make the wildcard adventurous, context-specific, and clearly different from both other previews.248- If bold template matches feel weak, use the wildcard as a custom design or fall back to another safe preset instead of forcing a template.249250**Custom wildcard design rules:**251252- Follow the Design Aesthetics section above: no generic "AI slop", no default font/color/layout choices, no purple-gradient-on-white clichés, no cookie-cutter dashboard/card look.253- Match the user's stated occasion, audience, mood/vibe, and content density. The custom design should feel authored for this deck, not merely "stylish."254- Make a deliberate visual thesis: distinctive typography, a committed palette, a recognizable layout system, and one strong atmospheric or graphic device.255- Keep it feasible for a full deck. The preview must imply a design system that can expand into section, content, quote, comparison, and closing slides.256- Use fixed 1920×1080 stage rules and pass the same preview authenticity checks as every other option.257- Never render "custom", "wildcard", "AI-generated", or design-process labels on the slide itself.258259**Bold template selection rules:**260261- Match user purpose and mood against `mood`, `tone`, `best_for`, `avoid_for`, `formality`, `density`, and `scheme`.262- Treat `best_for` examples as soft signals, not strict industry filters.263- Keep the three previews genuinely different from each other.264- After choosing bold template candidate(s), read only those candidate(s)' `preview.md` files from the `preview_md` paths in the selection index.265- Use `preview.md` only for title-slide previews. Do not read full `design.md` files until the user picks the final template.266- Do not read or copy `template.html` unless the selected final `design.md` is missing a critical implementation detail.267268**Preview authenticity rules (NON-NEGOTIABLE):**269270- Every style preview must look like a real first slide from the user's deck, not a diagnostic card.271- 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.272- Never render template names or slug names on the slide itself. Template/style names belong only in the message to the user.273- Never render user requirement notes as slide content, such as "sharp and provocative", "safe option", "bold option", "for internal sharing", or "audience: ...", unless the user explicitly wants that exact phrase to appear in the deck.274- 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.275- Before opening previews, inspect the visible text and revise if any internal metadata appears.276277Save previews to `.frontend-slides/slide-previews/` (style-a.html, style-b.html, style-c.html). Each should be self-contained and compact, showing one animated title slide.278279Open each preview automatically for the user.280281### Step 2.1: User Picks282283Ask (header: "Style"):284Which style preview do you prefer? Options: Style A: [Name] / Style B: [Name] / Style C: [Name] / Mix elements285286If "Mix elements", ask for specifics.287288---289290## Phase 3: Generate Presentation291292Generate the full presentation using content from Phase 1 (text, or text + curated images) and style from Phase 2.293294If 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.295296Apply the user's density choice throughout the deck:297298- **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.299- **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.300301If 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.302303Never let high density become visual clutter. If a high-density slide starts to overflow, split it or redesign it into a clearer structure.304305If 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:306307- Preserve its fonts, palette, decorative vocabulary, spacing rhythm, and component grammar.308- Generate the final deck as a fixed 1920×1080 stage scaled uniformly to the viewport, regardless of whether the source template originally used `deck-stage.js` or viewport-fluid CSS.309- Treat viewport-fluid values in `design.md` as design proportions to translate into 1920×1080 stage coordinates. Do not keep them as live viewport reflow rules in the final deck.310- Keep the output as a single self-contained Frontend Slides HTML file.311- Do not copy demo slide content or mimic the source template too literally.312- Use `template.html` only as a last-resort implementation reference for the selected template.313- 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.314315If the user selected a self-generated custom wildcard, treat that preview's CSS and layout as the design recipe:316317- Preserve its fonts, palette, decorative vocabulary, spacing rhythm, grid logic, and component grammar.318- Expand the same visual system across the full deck. Do not switch to a preset or bold template after the user has chosen the custom direction.319- Design any missing slide layouts from that system rather than importing patterns from another style.320- Keep the output fixed-stage, single-file, and visually verified like every other deck.321322**Before generating, read these supporting files:**323324- [html-template.md](html-template.md) — HTML architecture and JS features325- [viewport-base.css](viewport-base.css) — Mandatory CSS (include in full)326- [animation-patterns.md](animation-patterns.md) — Animation reference for the chosen feeling327328**Key requirements:**329330- Single self-contained HTML file, all CSS/JS inline331- Include the FULL contents of viewport-base.css in the `<style>` block332- Use fonts from Fontshare or Google Fonts — never system fonts333- Add detailed comments explaining each section334- Every section needs a clear `/* === SECTION NAME === */` comment block335336---337338## Phase 4: PPT Conversion339340When converting PowerPoint files:3413421. **Extract content** — Run `python scripts/extract-pptx.py <input.pptx> <output_dir>` (install python-pptx if needed: `pip install python-pptx`)3432. **Confirm with user** — Present extracted slide titles, content summaries, and image counts3443. **Style selection** — Proceed to Phase 2 for style discovery3454. **Generate HTML** — Convert to chosen style, preserving all text, images (from assets/), slide order, and speaker notes (as HTML comments)346347---348349## Phase 5: Delivery3503511. **Clean up** — Delete `.frontend-slides/slide-previews/` if it exists3522. **Open** — Use `open [filename].html` to launch in browser3533. **Summarize** — Tell the user:354 - File location, style name, slide count355 - Navigation: Arrow keys, Space, swipe/tap if enabled356 - How to customize: `:root` CSS variables for colors, font link for typography, `.reveal` class for animations357 - Inline text editing is available: Hover top-left corner or press E to enter edit mode, click any text to edit, Ctrl+S to save358 - Offer the natural post-draft actions: ask for revisions, edit text directly in the browser, or export/share359360---361362## Phase 6: Share & Export (Optional)363364After 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."_365366Options:367368- **Deploy to URL** — Shareable link that works on any device369- **Export to PDF** — Universal file for email, Slack, print370- **Both**371- **No thanks**372373If the user declines, stop here. If they choose one or both, proceed below.374375### 6A: Deploy to a Live URL (Vercel)376377This 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.378379**If the user has never deployed before, guide them step by step:**3803811. **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).3823832. **Check if user is logged in** — Run `npx vercel whoami`.384 - If NOT logged in, explain: _"Vercel is a free hosting service. You need an account to deploy. Let me walk you through it:"_385 - Step 1: Ask user to go to https://vercel.com/signup in their browser386 - Step 2: They can sign up with GitHub, Google, email — whatever is easiest387 - Step 3: Once signed up, run `vercel login` and follow the prompts (it opens a browser window to authorize)388 - Step 4: Confirm login with `vercel whoami`389 - Wait for the user to confirm they're logged in before proceeding.3903913. **Deploy** — Run the deploy script:392393 ```bash394 bash scripts/deploy.sh <path-to-presentation>395 ```396397 The script accepts either a folder (with index.html) or a single HTML file.3983994. **Share the URL** — Tell the user:400 - The live URL (from the script output)401 - That it works on any device — they can text it, Slack it, email it402 - To take it down later: visit https://vercel.com/dashboard and delete the project403 - The Vercel free tier is generous — they won't be charged404405**⚠ Deployment gotchas:**406407- **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.408- **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.409- **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.410- **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.411412### 6B: Export to PDF413414This captures each slide as a screenshot and combines them into a PDF. Perfect for email attachments, embedding in documents, or printing.415416**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.4174181. **Run the export script:**419420 ```bash421 bash scripts/export-pdf.sh <path-to-html> [output.pdf]422 ```423424 If no output path is given, the PDF is saved next to the HTML file.4254262. **What happens behind the scenes** (explain briefly to the user):427 - A headless browser opens the presentation at 1920×1080 (standard widescreen)428 - It screenshots each slide one by one429 - All screenshots are combined into a single PDF430 - The script needs Playwright (a browser automation tool) — it will install automatically if missing4314323. **If Playwright installation fails:**433 - The most common issue is Chromium not downloading. Run: `npx playwright install chromium`434 - If that fails too, it may be a network/firewall issue. Ask the user to try on a different network.4354364. **Deliver the PDF** — The script auto-opens it. Tell the user:437 - The file location and size438 - That it works everywhere — email, Slack, Notion, Google Docs, print439 - Animations are replaced by their final visual state (still looks great, just static)440441**⚠ PDF export gotchas:**442443- **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.444- **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.445- **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.446- **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`.447- **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:448 ```bash449 bash scripts/export-pdf.sh <path-to-html> [output.pdf] --compact450 ```451 This renders at 1280×720 instead of 1920×1080, typically cutting file size by 50-70% with minimal visual difference.452453---454455## Supporting Files456457| File | Purpose | When to Read |458| -------------------------------------------------- | -------------------------------------------------------------------- | ------------------------- |459| [STYLE_PRESETS.md](STYLE_PRESETS.md) | 12 curated visual presets with colors, fonts, and signature elements | Phase 2 (style selection) |460| [bold-template-pack/selection-index.json](bold-template-pack/selection-index.json) | Compact bold template metadata for candidate selection | Phase 2 (style selection) |461| [bold-template-pack/templates/*/preview.md](bold-template-pack/templates/) | Lightweight style cards for shortlisted bold title previews | Phase 2 after shortlisting |462| [bold-template-pack/templates/*/design.md](bold-template-pack/templates/) | Detailed design-system docs for the selected bold template only | Phase 3 after user selection |463| [viewport-base.css](viewport-base.css) | Mandatory fixed-stage CSS — copy into every presentation | Phase 3 (generation) |464| [html-template.md](html-template.md) | HTML structure, JS features, code quality standards | Phase 3 (generation) |465| [animation-patterns.md](animation-patterns.md) | CSS/JS animation snippets and effect-to-feeling guide | Phase 3 (generation) |466| [scripts/extract-pptx.py](scripts/extract-pptx.py) | Python script for PPT content extraction | Phase 4 (conversion) |467| [scripts/deploy.sh](scripts/deploy.sh) | Deploy slides to Vercel for instant sharing | Phase 6 (sharing) |468| [scripts/export-pdf.sh](scripts/export-pdf.sh) | Export slides to PDF | Phase 6 (sharing) |