.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/baoyu-skills/baoyu-slide-deck
home/skills/jimliu/baoyu-skills/baoyu-slide-deck
jimliu avatar

baoyu-slide-deck

byjimliu· 68 skills

Installs

28k

Stars

24k

Forks

2.7k

Category

Generative Media

View on GitHub

TL;DR

Generates professional slide deck images from content. Creates outlines with style instructions, then generates individual slide images. Use when user asks to "create slides", "make a presentation", "generate deck", "slide deck", or "PPT".

How to install baoyu-slide-deck?

jimliu/baoyu-skills/baoyu-slide-deck
$npx -y skills add jimliu/baoyu-skills --skill baoyu-slide-deck

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/jimliu/baoyu-skills" --skill "jimliu/baoyu-skills/baoyu-slide-deck"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/jimliu/baoyu-skills" that are relevant to the current task. Run `npx skills add "https://github.com/jimliu/baoyu-skills"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Slide Deck Generator
2 
3Transform content into professional slide deck images. The deck is designed for **reading and sharing** (self-explanatory slides, logical scroll flow, social-media-friendly) rather than live presentation — that assumption drives every layout and density decision below.
4 
5## User Input Tools
6 
7When this skill prompts the user, follow this tool-selection rule (priority order):
8 
91. **Prefer built-in user-input tools** exposed by the current agent runtime — e.g., `AskUserQuestion`, `request_user_input`, `clarify`, `ask_user`, or any equivalent.
102. **Fallback**: if no such tool exists, emit a numbered plain-text message and ask the user to reply with the chosen number/answer for each question.
113. **Batching**: if the tool supports multiple questions per call, combine all applicable questions into a single call; if only single-question, ask them one at a time in priority order.
12 
13Concrete `AskUserQuestion` references below are examples — substitute the local equivalent in other runtimes.
14 
15## Image Generation Tools
16 
17When this skill needs to render an image, resolve the backend in this order:
18 
191. **Current-request override** — if the user names a specific backend in the current message, use it.
202. **Saved preference** — if `EXTEND.md` sets `preferred_image_backend` to a backend available right now, use it.
213. **Auto-select** (when the preference is `auto`, unset, or the pinned backend isn't available):
22 - **Codex (`imagegen`)** — first, inspect your available-skills / tool inventory. If a skill named `imagegen` is listed, you are running inside Codex and MUST use it: invoke via the `Skill` tool with `skill: "imagegen"`, passing the saved prompt file's content (plus output path and aspect ratio per Codex `imagegen`'s own args). Codex `imagegen` is the official raster backend in that runtime and outranks any non-native skill (e.g., `baoyu-image-gen`) unless the user has explicitly pinned a different `preferred_image_backend`.
23 - **Codex via `codex exec` (`codex-imagegen`)** — if the current runtime exposes no native `imagegen` skill but the `codex` CLI is on `PATH` with an active `codex login`, route through `baoyu-image-gen --provider codex-cli` (preferred), or — if baoyu-image-gen is unavailable — invoke the bundled wrapper directly. Details, parameters, and the runtime-discovery procedure live in [references/codex-imagegen.md](references/codex-imagegen.md) — load that file only when this branch is selected.
24 - **Cursor (`GenerateImage`)** — if the runtime exposes a native `GenerateImage` tool, you are running inside Cursor and it outranks any non-native skill the same way Codex `imagegen` does. Two hard caveats: (a) it has no aspect-ratio parameter — state the target aspect ratio / dimensions explicitly in the prompt text passed as `description`; (b) it does not accept an output directory — it saves to a tool-managed location, so after generation copy/move the file to the skill's expected output path (e.g., `outputs/.../NN-xxx.png`). Reference images go in `reference_image_paths`.
25 - **Other runtime-native tools** — if the runtime exposes a different native image tool (e.g., Hermes `image_generate`), use it the same way.
26 - Otherwise, if exactly one non-native backend is installed (e.g., `baoyu-image-gen`), use it.
27 - Otherwise (multiple non-native backends with no runtime-native tool), ask the user once — batch with any other initial questions.
284. **If none are available**, tell the user and ask how to proceed.
29 
30**⛔ Never substitute SVG, HTML, canvas, or other code-based rendering for raster image generation.** Codex `imagegen`'s own description says it should be used "when the output should be a bitmap asset rather than repo-native code or vector." If you cannot resolve a raster backend via step 3, fall through to step 4 and ask the user — do **not** silently emit SVG, write inline `<svg>` markup, or produce HTML/CSS art as a substitute. This applies even if the article/section seems "diagram-like": the consumer skill calling this rule has already decided that a raster image is what it needs.
31 
32**⛔ Never repair rendered text by painting over a generated bitmap.** Do not use ImageMagick, Pillow, Canvas, SVG, HTML/CSS, OCR scripts, or any other programmatic overlay to cover, rewrite, erase, stroke, or replace slide titles, bullets, or any other text inside an already generated slide image. If text is wrong or unclear, regenerate from a corrected prompt, simplify the slide's on-image text, or ask the user which imperfect candidate to keep.
33 
34Setting `preferred_image_backend: ask` forces the step-3 prompt every run regardless of available backends. Users change the pinned backend via the `## Changing Preferences` section below.
35 
36**Prompt file requirement (hard)**: write each image's full, final prompt to a standalone file under `prompts/` (naming: `NN-slide-[slug].md`) BEFORE invoking any backend. The file is the reproducibility record and lets you switch backends without regenerating prompts.
37 
38Concrete tool names (`imagegen`, `GenerateImage`, `image_generate`, `baoyu-image-gen`) above are examples — substitute the local equivalents under the same rule.
39 
40## Batch Generation Policy
41 
42After every prompt file for the current generation group has been saved and verified, generate slide images in batches by default.
43 
44Priority order:
45 
461. Use the chosen backend's native batch / multi-task interface if it exists. Each task must keep its own prompt file, output path, aspect ratio, session ID, and direct reference images.
472. If no native batch interface exists but the runtime can issue parallel tool calls, dispatch up to `generation_batch_size` slide images at a time. Default: `4`. An explicit user request in the current message, such as `--batch-size 4` or "并行4张一起生成", overrides EXTEND.md.
483. If neither native batch nor parallel tool calls are available, generate sequentially.
49 
50Rules:
51 
52- Never start the first batch until all selected slide prompt files exist on disk.
53- Retry failed items once without regenerating successful items.
54- Do not use subagents merely to parallelize image rendering. Use subagents only for separate prompt iteration or creative exploration.
55- Merge PPTX/PDF only after all selected slide images are generated.
56 
57## Confirmation Policy
58 
59Default behavior: **confirm before generation**.
60 
61- Treat explicit skill invocation, a file path, matched signals/presets, and `EXTEND.md` defaults as **recommendation inputs only**. None of them authorizes skipping confirmation.
62- Do **not** start Step 3 or later until the user completes Step 2.
63- Skip confirmation only when the current request explicitly says to do so, for example: "直接生成", "不用确认", "跳过确认", "按默认出幻灯片", or equivalent wording.
64- If confirmation is skipped explicitly, state the assumed style / audience / slide-count / language / backend in the next user-facing update before generating.
65 
66## Language
67 
68Respond in the user's language across questions, progress reports, error messages, and the completion summary. Keep technical tokens (style names, file paths, code) in English.
69 
70## Script Directory
71 
72`{baseDir}` = this SKILL.md's directory. Resolve `${BUN_X}`: prefer `bun`; else `npx -y bun`; else suggest `brew install oven-sh/bun/bun`.
73 
74| Script | Purpose |
75|--------|---------|
76| `scripts/merge-to-pptx.ts` | Merge slides into PowerPoint |
77| `scripts/merge-to-pdf.ts` | Merge slides into PDF |
78 
79## Options
80 
81| Option | Description |
82|--------|-------------|
83| `--style <name>` | Preset (see Presets below), `custom`, or custom style name |
84| `--audience <type>` | beginners / intermediate / experts / executives / general |
85| `--lang <code>` | Output language (en, zh, ja, ...) |
86| `--slides <N>` | Target slide count (8-25 recommended, max 30) |
87| `--ref <files...>` | Reference images applied per slide (style / palette / composition / subject) |
88| `--batch-size <n>` | Temporary slide image generation batch size for this run. Default: `generation_batch_size` from EXTEND.md, otherwise 4. Clamp to 1-8. |
89| `--outline-only` | Stop after outline |
90| `--prompts-only` | Stop after prompts (skip image generation) |
91| `--images-only` | Skip to Step 7; requires existing `prompts/` |
92| `--regenerate <N>` | Regenerate specific slide(s): `3` or `2,5,8` |
93 
94## Style System
95 
9617 presets covering technical / educational / lifestyle / editorial use cases. Every preset is a combination of four dimensions (texture / mood / typography / density). If the user picks "Custom dimensions" in Round 1, Round 2 of the confirmation asks one question per dimension — options and verbatim copy live in `references/confirmation.md`.
97 
98### Presets (17)
99 
100| Preset | Dimensions | Best For |
101|--------|------------|----------|
102| `blueprint` (Default) | grid + cool + technical + balanced | Architecture, system design |
103| `chalkboard` | organic + warm + handwritten + balanced | Education, tutorials |
104| `corporate` | clean + professional + geometric + balanced | Investor decks, proposals |
105| `minimal` | clean + neutral + geometric + minimal | Executive briefings |
106| `sketch-notes` | organic + warm + handwritten + balanced | Educational, tutorials |
107| `hand-drawn-edu` | organic + macaron + handwritten + balanced | Educational diagrams, process explainers |
108| `watercolor` | organic + warm + humanist + minimal | Lifestyle, wellness |
109| `dark-atmospheric` | clean + dark + editorial + balanced | Entertainment, gaming |
110| `notion` | clean + neutral + geometric + dense | Product demos, SaaS |
111| `bold-editorial` | clean + vibrant + editorial + balanced | Product launches, keynotes |
112| `editorial-infographic` | clean + cool + editorial + dense | Tech explainers, research |
113| `fantasy-animation` | organic + vibrant + handwritten + minimal | Educational storytelling |
114| `intuition-machine` | clean + cool + technical + dense | Technical docs, academic |
115| `pixel-art` | pixel + vibrant + technical + balanced | Gaming, developer talks |
116| `scientific` | clean + cool + technical + dense | Biology, chemistry, medical |
117| `vector-illustration` | clean + vibrant + humanist + balanced | Creative, children's content |
118| `vintage` | paper + warm + editorial + balanced | Historical, heritage |
119 
120Per-preset specs: `references/styles/<preset>.md`. Preset → dimension mapping: `references/dimensions/presets.md`.
121 
122### Dimensions (when "Custom dimensions" picked)
123 
124| Dimension | Options | Purpose |
125|-----------|---------|---------|
126| **Texture** | clean, grid, organic, pixel, paper | Background treatment |
127| **Mood** | professional, warm, cool, vibrant, dark, neutral, macaron | Color temperature |
128| **Typography** | geometric, humanist, handwritten, editorial, technical | Headline/body styling |
129| **Density** | minimal, balanced, dense | Information per slide |
130 
131Full per-dimension specs: `references/dimensions/*.md`.
132 
133### Auto-Selection
134 
135Match content signals to a preset. Pick the first row whose signal keywords appear in the source; fall back to `blueprint` if nothing matches.
136 
137| Signals in source | Preset |
138|-------------------|--------|
139| tutorial, learn, education, guide, beginner | `sketch-notes` |
140| hand-drawn, infographic, diagram, process, onboarding | `hand-drawn-edu` |
141| classroom, teaching, school, chalkboard | `chalkboard` |
142| architecture, system, data, analysis, technical | `blueprint` |
143| creative, children, kids, cute | `vector-illustration` |
144| briefing, academic, research, bilingual | `intuition-machine` |
145| executive, minimal, clean, simple | `minimal` |
146| saas, product, dashboard, metrics | `notion` |
147| investor, quarterly, business, corporate | `corporate` |
148| launch, marketing, keynote, magazine | `bold-editorial` |
149| entertainment, music, gaming, atmospheric | `dark-atmospheric` |
150| explainer, journalism, science communication | `editorial-infographic` |
151| story, fantasy, animation, magical | `fantasy-animation` |
152| gaming, retro, pixel, developer | `pixel-art` |
153| biology, chemistry, medical, scientific | `scientific` |
154| history, heritage, vintage, expedition | `vintage` |
155| lifestyle, wellness, travel, artistic | `watercolor` |
156 
157### Slide Count Heuristic
158 
159| Source length | Recommended slides |
160|---------------|--------------------|
161| < 1000 words | 5-10 |
162| 1000-3000 words | 10-18 |
163| 3000-5000 words | 15-25 |
164| > 5000 words | 20-30 (consider splitting) |
165 
166## Reference Images
167 
168Users may supply reference images to guide style, palette, layout, or subject.
169 
170**Intake**: Accept via `--ref <files...>` or when the user provides file paths / pastes images in conversation.
171- File path → copy to `{slide-deck-dir}/refs/NN-ref-{slug}.{ext}`
172- Pasted image with no path → ask for the path, or extract style traits verbally as a text fallback
173 
174**Usage modes** (per reference):
175 
176| Usage | Effect |
177|-------|--------|
178| `direct` | Pass the file to the backend as a reference image for each slide |
179| `style` | Extract style traits (line treatment, texture, mood) and append to every slide's prompt body |
180| `palette` | Extract hex colors and append to every slide's prompt body |
181 
182Record refs in each slide's prompt frontmatter:
183 
184```yaml
185references:
186 - ref_id: 01
187 filename: 01-ref-brand.png
188 usage: direct
189```
190 
191At generation time, verify files exist. If `usage: direct` and the backend accepts refs (e.g., `baoyu-image-gen --ref`), pass the file on every slide. Otherwise embed extracted `style`/`palette` traits in the prompt text.
192 
193## File Layout
194 
195```
196slide-deck/{topic-slug}/
197├── source-{slug}.{ext}
198├── outline.md
199├── prompts/NN-slide-{slug}.md
200├── NN-slide-{slug}.png
201├── {topic-slug}.pptx
202└── {topic-slug}.pdf
203```
204 
205**Slug**: 2-4 words, kebab-case, extracted from topic. "Introduction to Machine Learning" → `intro-machine-learning`.
206 
207**Backup rule** (applies across steps): if a file about to be written already exists, rename it to `<name>-backup-YYYYMMDD-HHMMSS.<ext>` before writing the new one. This protects user edits and enables rollback.
208 
209## Workflow
210 
211Copy this checklist and check off items as you complete them:
212 
213```
214- [ ] Step 1: Setup & analyze
215- [ ] Step 2: Confirmation ⚠️ REQUIRED (Round 1; Round 2 only if "Custom dimensions")
216- [ ] Step 3: Generate outline
217- [ ] Step 4: Review outline (conditional)
218- [ ] Step 5: Generate prompts
219- [ ] Step 6: Review prompts (conditional)
220- [ ] Step 7: Generate images
221- [ ] Step 8: Merge to PPTX/PDF
222- [ ] Step 9: Output summary
223```
224 
225### Step 1: Setup & Analyze
226 
227**1.1 Load EXTEND.md** — check these paths in order; first hit wins:
228 
229| Path | Scope |
230|------|-------|
231| `.baoyu-skills/baoyu-slide-deck/EXTEND.md` | Project |
232| `${XDG_CONFIG_HOME:-$HOME/.config}/baoyu-skills/baoyu-slide-deck/EXTEND.md` | XDG |
233| `$HOME/.baoyu-skills/baoyu-slide-deck/EXTEND.md` | User home |
234 
235If found, read, parse, and print a summary (style / audience / language / review / generation batch size). If not, proceed with defaults — first-time setup is not blocking for this skill. Schema: `references/config/preferences-schema.md`.
236 
237**1.2 Analyze content** — follow `references/analysis-framework.md`: classify content, detect language, note signals for style selection, estimate slide count from length (see the **Slide Count Heuristic** in Style System above), generate topic slug. Save source as `source.md` (honor backup rule if one exists).
238 
239**1.3 Check existing output** ⚠️ REQUIRED before Step 2. If `slide-deck/{topic-slug}/` exists, ask how to proceed — four options (regenerate outline / regenerate images / backup and regenerate / exit), verbatim copy in `references/confirmation.md`.
240 
241Save findings to `analysis.md`: topic, audience, signals, recommended style and slide count, language detection.
242 
243### Step 2: Confirmation ⚠️ REQUIRED
244 
245**Hard gate**: this step is mandatory per the [Confirmation Policy](#confirmation-policy) — Steps 3+ cannot start until the user confirms here (or explicitly opts out with "直接生成" / equivalent wording in the current request).
246 
247**Round 1 (always)** — batch five questions in one `AskUserQuestion` call: style, audience, slide count, review-outline?, review-prompts?. Verbatim options in `references/confirmation.md`.
248 
249Summary displayed before the questions:
250- Content type + topic
251- Detected language
252- Recommended style (based on signals)
253- Recommended slide count (based on length)
254 
255**Round 2 (only if "Custom dimensions" in Round 1)** — batch four questions: texture, mood, typography, density. Verbatim options in `references/confirmation.md`. The four answers replace the preset.
256 
257**After confirmation**: update `analysis.md` with final choices and store `skip_outline_review` / `skip_prompt_review` flags from Q4/Q5.
258 
259### Step 3: Generate Outline
260 
261Resolve style: preset → `references/styles/{preset}.md`; custom dimensions → combine files in `references/dimensions/`. Build `STYLE_INSTRUCTIONS` from the resolved style, apply confirmed audience + language + slide count, follow `references/outline-template.md`, and save as `outline.md`.
262 
263Stop here if `--outline-only`. Skip Step 4 if `skip_outline_review`.
264 
265### Step 4: Review Outline (Conditional)
266 
267Display a slide-by-slide table (`# | Title | Type | Layout`) along with total count and resolved style. Ask: proceed / edit outline first / regenerate — verbatim in `references/confirmation.md`.
268 
269On "Edit outline first", tell the user to edit `outline.md` and ask again when ready. On "Regenerate outline", return to Step 3.
270 
271### Step 5: Generate Prompts
272 
273For each slide in outline:
2741. Read `references/base-prompt.md`
2752. Extract `STYLE_INSTRUCTIONS` from the outline (don't re-read the style file)
2763. Add the slide's content
2774. If a `Layout:` is specified, include guidance from `references/layouts.md`
2785. Save to `prompts/NN-slide-{slug}.md` (backup rule applies)
279 
280Stop here if `--prompts-only`. Skip Step 6 if `skip_prompt_review`.
281 
282### Step 6: Review Prompts (Conditional)
283 
284Display the prompts index (`# | Filename | Slide Title`) and ask: proceed / edit prompts first / regenerate — verbatim in `references/confirmation.md`. Branches mirror Step 4.
285 
286### Step 7: Generate Images
287 
2881. Resolve the image backend via the Image Generation Tools rule at the top — ask once if multiple are installed.
289 - **`codex-imagegen` invocation**: when the rule resolves to `codex-imagegen`, see [references/codex-imagegen.md](references/codex-imagegen.md) for the invocation contract (preferred `baoyu-image-gen --provider codex-cli` path, runtime wrapper discovery, parameter notes, stdout schema, batch semantics — n=1 per call so slide batches must dispatch one wrapper call per slide).
2902. Confirm every `prompts/NN-slide-{slug}.md` exists (hard requirement; prompt files are the reproducibility record regardless of backend).
2913. Session ID: `slides-{topic-slug}-{timestamp}` — pass to the backend only if it supports sessions.
2924. Build a task list for selected slides with each slide's prompt file, output PNG path, aspect ratio, session ID, and verified direct references.
2935. Dispatch slide images in batches per the `## Batch Generation Policy`: backend native batch first, runtime parallel tool calls second, sequential only as fallback. Backup rule applies to PNG files before dispatch. Report progress as `Generated X/N`. Retry only failed items once before reporting an error.
294 
295`--regenerate N` jumps to this step for the named slides only. `--images-only` starts here with existing prompts.
296 
297### Step 8: Merge
298 
299```bash
300${BUN_X} {baseDir}/scripts/merge-to-pptx.ts <slide-deck-dir>
301${BUN_X} {baseDir}/scripts/merge-to-pdf.ts <slide-deck-dir>
302```
303 
304### Step 9: Summary
305 
306```
307Slide Deck Complete!
308Topic: [topic]
309Style: [preset or "custom: texture+mood+typograph

Security

Passed

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykpass
  • Runlayerpass
  • ZeroLeakspass

Preview

jimliu/baoyu-skillsjimliu/baoyu-skills

$ npx -y skills add jimliu/baoyu-skills --skill baoyu-slide-deck

▸ installing to .claude/skills…

✓ baoyu-slide-deck ready

Repojimliu/baoyu-skills
TypeSkills
CategoryGenerative Media
ForContent CreatorDesigner
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. remotion-dev avatarremotion-best-practicesRouter for all Remotion skillsSkillsJul 2026451k4.1k
  2. 101-skills avatarai-image-generationGenerate AI images with GPT-Image-2, FLUX, Gemini, Grok, Seedream, Reve and 50+ models via inference.sh CLI.SkillsJul 2026441k656
  3. heygen-com avatarhyperframes-cliUse the HyperFrames CLI development loop: init, add, catalog, capture, lint, check, snapshot, compare, grade-compare, preview, play, present, beats, keyframes,…SkillsJul 2026296k38k
  4. heygen-com avatarhyperframesMandatory entry point: read this first for any request to make, create, edit, animate, or render a video, animation, or motion graphic, including a promo,…SkillsJul 2026291k38k
  5. heygen-com avatarremotion-to-hyperframesPort an existing Remotion (React) composition''s source to HyperFrames HTML.SkillsJul 2026198k38k
  6. heygen-com avatarhyperframes-coreThe HyperFrames composition contract — build one renderable project.SkillsJul 2026195k38k