Agent skill · Content & Marketing

baoyu-slide-deck

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

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-codeships scripts
Install
npx skills add ECNU-ICALK/AutoSkill --skill baoyu-slide-deck --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 32
SKILL.md size: 22 KB
Bundled scripts: yes
Path: SkillBank/Common/baoyu-skills/baoyu-slide-deck/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

Review
written from the skill's own SKILL.md · Aug 5, 2026

What it does

Transforms content into professional slide deck images. 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 it works

  • Accepts a content file path (e.g., path/to/content.md) and optional flags for style, audience, language, and slide count.
  • Determines execution scripts location as ${SKILL_DIR}/scripts/<script-name>.ts and references two scripts: scripts/merge-to-pptx.ts (merge slides into PowerPoint) and scripts/merge-to-pdf.ts (merge slides into PDF).
  • Generates an outline guided by the selected preset or custom dimensions, then saves the result as outline.md.
  • If not outline-only, proceeds to generate prompts and optionally reviews prompts before creating slide images.
  • Finally, can merge slides into PPTX/PDF and provide an output directory structured as slide-deck/{topic-slug}/ with source, prompts, images, and merged files.

When to use it

Use when the user asks to create slides, make a presentation, generate deck, slide deck, or PPT.

What it can touch

  • Uses options like --style, --audience, --lang, --slides, --outline-only, --prompts-only, and --images-only.
  • Writes to outline.md and analysis.md and to the output directory slide-deck/{topic-slug}.
  • Reads from references/* files for templates and dimensions, including references/outline-template.md, references/dimensions/, references/styles/, references/base-prompt.md, and references/layouts.md.

Caveats

  • Behavior is guided by a multi-step workflow with confirmations and optional reviews; outcomes depend on user responses.
  • Custom dimensions require Round 2 of the confirmation to apply texture, mood, typography, and density.
  • Uses scripts located under the skill directory; path and script names must match exactly as described.
From the SKILL.md

# Slide Deck Generator Transform content into professional slide deck images. ## Usage ```bash /baoyu-slide-deck path/to/content.md /baoyu-slide-deck path/to/content.md --style sketch-notes /baoyu-slide-deck path/to/content.md --audience executives /baoyu-slide-deck path/to/content.md --lang zh /baoyu-slide-deck path/to/content.md --slides 10 /baoyu-slide-deck path/to/content.md --outline-only /baoyu-slide-deck # Then paste content ``` ## Script Directory **Agent Execution Instructions**: 1. Determine this SKILL.md file's directory path as `SKILL_DIR` 2. Script path = `${SKILL_DIR}/scripts/<script-name>.ts` | Script | Purpose | |--------|---------| | `scripts/merge-to-pptx.ts` | Merge slides into PowerPoint | | `scripts/merge-to-pdf.ts` | Merge slides into PDF | ## Options | Option | Description | |--------|-------------| | `--style <name>` | Visual style: preset name, `custom`, or custom style name | | `--audience <type>` | Target: beginners, intermediate, experts, executives, general | | `--lang <code>` | Output language (en, zh, ja, etc.) | | `--slides <number>` | Target slide count (8-25 recommended, max 30) | | `--outline-only` | Generate outline only, skip image generation |

What's inside
Steps it walks through
  1. Usage
  2. Script Directory
  3. Options
  4. Style System
  5. Presets
  6. Style Dimensions
  7. Auto Style Selection
  8. Design Philosophy
  9. File Management
  10. Output Directory
  11. Language Handling
  12. Workflow
  13. Flow
  14. Step 1: Setup & Analyze
Ships with 24 files
  • references/analysis-framework.md
  • references/base-prompt.md
  • references/config/preferences-schema.md
  • references/content-rules.md
  • references/design-guidelines.md
  • references/dimensions/density.md
  • references/dimensions/mood.md
  • references/dimensions/presets.md
  • references/dimensions/texture.md
  • references/dimensions/typography.md
  • references/layouts.md
  • references/modification-guide.md
  • references/outline-template.md
  • references/styles/blueprint.md
  • references/styles/bold-editorial.md
  • references/styles/chalkboard.md
  • references/styles/corporate.md
  • references/styles/dark-atmospheric.md
  • references/styles/editorial-infographic.md
  • references/styles/fantasy-animation.md
  • references/styles/intuition-machine.md
  • references/styles/minimal.md
  • references/styles/notion.md
  • references/styles/pixel-art.md
first 24 of 32
Commands it runs
Check project-level first
test -f .baoyu-skills/baoyu-slide-deck/EXTEND.md && echo "project"
Then user-level (cross-platform: $HOME works on macOS/Linux/WSL)
test -f "$HOME/.baoyu-skills/baoyu-slide-deck/EXTEND.md" && echo "user"
test -d "slide-deck/{topic-slug}" && echo "exists"
npx -y bun ${SKILL_DIR}/scripts/merge-to-pptx.ts <slide-deck-dir>
npx -y bun ${SKILL_DIR}/scripts/merge-to-pdf.ts <slide-deck-dir>
Single slide
Multiple slides
More from AutoSkill
All skills →
About this skill
What does the baoyu-slide-deck skill do?

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 do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill baoyu-slide-deck --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going