Agent skill · Content & Marketing

ppt-generation

Generate PPTX presentations from slide plan + content.

HezaoHezaogithub.com/HezaoHezaoGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add HezaoHezao/poirot --skill ppt-generation --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Declared author: Adapted from deer-flow (Bytedance, MIT)
Allowed tools: -bash-write_file-read_file-present_files
Path: poirot/backend/agents/skill/builtin_skills/productivity/ppt-generation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 139
Language: Python

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

From the SKILL.md

# PPT Generation ## Overview Generate professional PowerPoint presentations. Plan the structure with a consistent visual style, generate slide content, and compose into a PPTX file. > **Poirot note:** The original deer-flow skill uses AI image-generation per slide. Poirot may not have image-generation available. This version generates text-based slides with `python-pptx`. Install: `pip install python-pptx`. ## When to Use - User requests to generate, create, or make presentations (PPT/PPTX) - User wants slides for a topic with structured content - User needs a visual presentation from research findings ## Presentation Styles | Style | Description | Best For | |-------|-------------|----------| | **dark-premium** | Black bg, luminous accents, luxury aesthetic | Executive presentations | | **gradient-modern** | Bold mesh gradients, contemporary typography | Startups, brand launches | | **minimal-swiss** | Grid-based, bold negative space, timeless | Consulting, architecture | | **keynote** | Apple-inspired, bold typography, dramatic imagery | Keynotes, product reveals | | **editorial** | Magazine-quality layouts, sophisticated typography | Annual reports, thought leadership | ## Workf

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Presentation Styles
  4. Workflow
  5. Step 1: Understand Requirements
  6. Step 2: Research (if needed)
  7. Step 3: Create Presentation Plan
  8. Step 4: Generate PPTX
  9. Step 5: Present
  10. Slide Types
  11. Pitfalls
Commands it runs
python3 -c "
from pptx import Presentation
from pptx.util import Inches, Pt, Emu
from pptx.dml.color import RGBColor
from pptx.enum.text import PP_ALIGN
prs = Presentation()
prs.slide_width = Inches(13.333)  # 16:9
prs.slide_height = Inches(7.5)
BG_COLOR = RGBColor(0x0A, 0x0A, 0x0A)
TEXT_COLOR = RGBColor(0xFF, 0xFF, 0xFF)
More from poirot
All skills →
About this skill
What does the ppt-generation skill do?

Generate PPTX presentations from slide plan + content.

How do I install it?

Run `npx skills add HezaoHezao/poirot --skill ppt-generation --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 HezaoHezao/poirot, a repository with 139 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