Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

slides-to-pptxslides TO PPTX 搜索

Agent Skill

slides-to-pptx 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

1

下载量

143
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:slides-to-pptx(slides TO PPTX 搜索)
来源仓库:https://github.com/tonylonga/slides-to-pptx
仓库路径:skills/slides-to-pptx
安装命令:
npx skills add https://github.com/tonylonga/slides-to-pptx --skill slides-to-pptx
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tonylonga/slides-to-pptx --skill slides-to-pptx

简介

slides-to-pptx 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于将幻灯片内容转换为 PPTX 格式的相关任务场景。
  • 通过 npx skills add 命令从 GitHub 安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 注意该技能当前无详细功能说明,建议进一步查阅源码以了解实际能力边界。

SKILL.md

Slides to PPTX

Create zero-dependency, animation-rich HTML presentations that run entirely in the browser, with optional PPTX export via PptxGenJS.

Core Principles

  1. Zero Dependencies — Single HTML files with inline CSS/JS. No npm, no build tools.
  2. Show, Don't Tell — Generate visual previews, not abstract choices. People discover what they want by seeing it.
  3. Distinctive Design — No generic "AI slop." Every presentation must feel custom-crafted.
  4. Viewport Fitting (NON-NEGOTIABLE) — Every slide MUST fit exactly within 100vh. No scrolling within slides, ever. Content overflows? Split into multiple slides.
  5. Step-by-Step Execution — You MUST execute this workflow strictly step-by-step. Never jump ahead to the next phase. ALWAYS stop and wait for user input after asking a question.

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 Limits Per Slide

Slide TypeMaximum Content
Title slide1 heading + 1 subtitle + optional tagline
Content slide1 heading + 4-6 bullet points OR 1 heading + 2 paragraphs
Feature grid1 heading + 6 cards maximum (2x3 or 3x2)
Code slide1 heading + 8-10 lines of code
Quote slide1 quote (max 3 lines) + attribution
Image slide1 heading + 1 image (max 60vh height)

Content exceeds limits? Split into multiple slides. Never cram, never scroll.


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:

  1. Before adding content: Count existing elements, check against density limits
  2. Adding images: Must have max-height: min(50vh, 400px). If slide already has max content, split into two slides
  3. Adding text: Max 4-6 bullets per slide. Exceeds limits? Split into continuation slides
  4. After ANY modification, verify: .slide has overflow: hidden, new elements use clamp(), images have viewport-relative max-height, content fits at 1280x720
  5. 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)

Detect language from the user's messages and content. Respond in the same language throughout the entire workflow.

Ask ALL questions in a single interaction 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 — Inline Editing (header: "Editing"): Do you need to edit text directly in the browser after generation? Options:

  • "Yes (Recommended)" — Can edit text in-browser, auto-save to localStorage, export file
  • "No" — Presentation only, keeps file smaller

Remember the user's editing choice — it determines whether edit-related code is included in Phase 3.

If user has content, ask them to share it.

🛑 CRITICAL: STOP HERE AND WAIT. You must wait for the user to answer the questions above. DO NOT proceed to Phase 2 or 3 until the user replies.

Step 1.2: Image Evaluation (if images provided)

If user selected "No images" → skip to Phase 2.

If user provides an image folder:

  1. Scan — List all image files (.png,.jpg,.svg,.webp, etc.)
  2. View each image — Use the Read tool (Claude is multimodal)
  3. Evaluate — For each: what it shows, USABLE or NOT USABLE (with reason), what concept it represents, dominant colors
  4. 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)
  5. Confirm (header: "Outline"): "Does this slide outline and image selection look right?" Options: Looks good / Adjust images / Adjust outline

🛑 CRITICAL: STOP HERE AND WAIT for the user to confirm the outline before generating any presentation.

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: 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.

🛑 CRITICAL: STOP HERE AND WAIT for the user to choose their style path. DO NOT simulate their choice.

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

🛑 CRITICAL: STOP HERE AND WAIT for the user to select the mood. DO NOT proceed to generating previews until they reply.

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 available presets and their specifications.

MoodSuggested Presets
Impressed/ConfidentBold Signal, Electric Studio, Dark Botanical
Excited/EnergizedCreative Voltage, Neon Cyber, Split Pastel
Calm/FocusedNotebook Tabs, Paper & Ink, Swiss Modern
Inspired/MovedDark Botanical, Vintage Editorial, Pastel Geometry

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.

🛑 CRITICAL: STOP HERE AND WAIT for the user to select their preferred style. DO NOT proceed to Phase 3 until they have explicitly made a choice.


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.

Before generating, read these supporting files:

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
  • Set <html lang="..."> based on content language (e.g., zh-CN for Chinese, en for English, ja for Japanese)

Phase 4: PPT Conversion

When converting PowerPoint files:

  1. Extract content — Run python scripts/extract-pptx.py <input.pptx> <output_dir> (install python-pptx if needed: pip install python-pptx)
  2. Confirm with user — Present extracted slide titles, content summaries, and image counts
  3. Style selection — Proceed to Phase 2 for style discovery
  4. Generate HTML — Convert to chosen style, preserving all text, images (from assets/), slide order, and speaker notes (as HTML comments)

🛑 CRITICAL: STOP HERE AND WAIT for user feedback after generating the HTML before automatically proceeding to export PPTX.


Phase 5: PPTX Export

After generating the HTML presentation, ask the user if they want to export to PPTX. If yes, ask:

Question: Export Format Do you want an editable native PPTX or a high-fidelity screenshot PPTX? Options:

  • "Native text/shapes" (Smaller file, editable text, but font/layout might differ slightly from HTML)
  • "Screenshots" (Larger file, non-editable text, but 100% preserves original HTML design and fonts)

Depending on their choice, follow the corresponding section below.

Option A: Native PPTX (via PptxGenJS)

Dependencies

npm install pptxgenjs

PPTX Generation Rules

Before generating, read these supporting files:

Basic Structure

const PptxGenJS = require('pptxgenjs');

// Create presentation
const pptx = new PptxGenJS();

// Metadata
pptx.author = 'Author Name';
pptx.title = 'Presentation Title';

// Layout (16:9)
pptx.defineLayout({ name: 'CUSTOM', width: 13.33, height: 7.5 });
pptx.layout = 'CUSTOM';

Important Notes

1. Color codes — NO # prefix in PptxGenJS:

// ✅ Correct
{ color: '10B981' }
{ fill: 'F9FAFB' }

// ❌ Wrong (may corrupt file)
{ color: '#10B981' }
{ fill: '#F9FAFB' }

2. Font — match the language of the content:

// Chinese
{ fontFace: 'Noto Sans SC' }
// English
{ fontFace: 'Arial' }
// Japanese
{ fontFace: 'Noto Sans JP' }

3. Line breaks — use \n:

slide.addText('第一行\n第二行', { ... });

4. Emoji — may not display in some environments. Use text as backup for important info.

File Save

pptx.writeFile({ fileName: 'output/presentation.pptx' })
  .then(fileName => console.log(`Created: ${fileName}`));

Color Palette

Use colors from the style chosen in Phase 2. The table below is a fallback reference only:

UsageColor CodeDescription
Primary2563EBMain accent
Success10B981Positive/Complete
WarningF59E0BAttention/Preference
DangerEF4444Negative/Unmet
Neutral6B7280Secondary text
BackgroundF9FAFBBackground
Text Primary111827Main text
Text Secondary6B7280Secondary text
BorderE5E7EBBorder/Divider
Important: Always derive PPTX colors from the HTML presentation's style. Do not default to the above palette if a specific style was selected.

Option B: Screenshot PPTX (via Playwright)

If the user wants a pixel-perfect screenshot presentation:

Dependencies

npm install playwright pptxgenjs

Screenshot Generation Rules

  1. Write a Node.js script using playwright to launch a headless browser.
  2. The script should open the generated HTML file.
  3. It must wait for the initial animations to finish (e.g., await page.waitForTimeout(2000)).
  4. Iterate through all slides (either by calling the presentation's navigation JS, like await page.evaluate(() => app.goToSlide(i)), or simulating keyboard events like await page.keyboard.press('ArrowDown')).
  5. After navigating to each slide, wait for any transition/reveal animations to complete before capturing (await page.waitForTimeout(1500)).
  6. Take a screenshot of the viewport (const buffer = await page.screenshot()).
  7. Use pptxgenjs to create a new presentation, add a slide for each screenshot, and set the screenshot as the slide background or a full-size image.
  8. Save the .pptx file.

Phase 6: Delivery

  1. Clean up — Delete .claude-design/slide-previews/ if it exists
  2. Open — Use open [filename].html to launch in browser
  3. 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 - If inline editing was enabled: Hover top-left corner or press E to enter edit mode, click any text to edit, Ctrl+S to save - If PPTX was exported: - PPTX file location and file size - Open with PowerPoint / WPS / Keynote to verify - Recommend installing the appropriate font (e.g., Noto Sans SC for Chinese) for best rendering - Note that emoji icons may not render in all PowerPoint versions

  1. Ask — Does the user want any adjustments?

Supporting Files

FilePurposeWhen to Read
STYLE_PRESETS.md12 curated visual presets with colors, fonts, and signature elementsPhase 2 (style selection)
viewport-base.cssMandatory responsive CSS — copy into every presentationPhase 3 (generation)
html-template.mdHTML structure, JS features, code quality standardsPhase 3 (generation)
animation-patterns.mdCSS/JS animation snippets and effect-to-feeling guidePhase 3 (generation)
scripts/extract-pptx.pyPython script for PPT content extractionPhase 4 (conversion)
html2pptx.mdHTML to PPTX conversion detailed guidePhase 5 (PPTX export)
ooxml.mdOOXML technical referencePhase 5 (PPTX export)
generate-pptx.jsReference implementation for PptxGenJSPhase 5 (PPTX export)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.55%
按下载量换算51

Claude

28.69%
按下载量换算41

Cursor

18.52%
按下载量换算26

Gemini CLI

8.55%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills