Agent skill · Design & Presentation

paper2slides

Turn an academic paper PDF into a presentation deck (.pptx) end-to-end. Use this skill whenever the user wants to \"make slides from a paper\", \"generate a deck from this PDF\", \"make a PPT from this paper\", \"generate slides from a PDF document\", \"make a deck from a research paper\", or supplies a research paper PDF and asks for a .pptx out. Trigger even when the user only says \"deck this paper\" or \"summarize as slides\". This is the dedicated, self-contained skill for academic-paper-to-deck flows.

QuZhan51496github.com/QuZhan51496GitHub ↗
claude-codecan modify filesships scriptsApache-2.0
Install
npx skills add QuZhan51496/paper2anything --skill paper2slides --agent claude-code

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

Facts
Files in the skill folder: 16
SKILL.md size: 15 KB
Bundled scripts: yes
Allowed tools: BashReadWriteGlobGrepAgentAskUserQuestion
Path: paper2slides/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 333
Language: Python

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

From the SKILL.md

# paper2slides Turn an academic paper PDF into a presentation-ready .pptx. This is a conductor skill: **you** make the editorial and design judgments, while the mechanical steps are handled by this skill's own self-contained scripts — PDF parsing via the MinerU cloud API (`scripts/parse_pdf.py`) and .pptx rendering via a PptxGenJS bridge (`scripts/render_pptx.py`). It orchestrates a "paper → outline → spec → render → QA" pipeline and depends on no other skill. ## Quick Reference | Stage | Input | Output | Owner | |---|---|---|---| | 0.5. configure | user dialogue | `<workdir>/config.json` | **you** (AskUserQuestion to confirm three items: length tier + whether to run visual QA + color scheme) | | 1. extract | `paper.pdf` | `paper_meta.json` + `figures_index.json` + `figures/` + `pages/` + `equations` + hi-res figure/table crops (produced in one shot by the MinerU cloud API) | `scripts/parse_pdf.py` | | 2. outline | `paper_meta.json` | `slide_outline.json` | **you** (per `references/outline-heuristics.md`) | | 3. spec | `slide_outline.json` + figures | `slide_spec.json` | **you** (per `references/design-style.md`) | | 4. render | `slide_spec.json` | `output.pptx` | `scripts/render_p

What's inside
Steps it walks through
  1. Quick Reference
  2. Invocation Contract
  3. Pipeline
  4. Stage 0.5 — Configure (you, AskUserQuestion to confirm three items)
  5. Stage 1 — Extract (script)
  6. Stage 2 — Outline (you)
  7. Stage 3 — Spec (you)
  8. Stage 4 — Render (script)
  9. Stage 5 — QA
  10. Defaults & Errors
  11. Default behavior
  12. Error-Recovery Quick Reference
  13. QA
  14. Where to Look When Stuck
Ships with 15 files
  • references/design-style.md
  • references/outline-heuristics.md
  • references/pipeline.md
  • references/pptxgenjs.md
  • references/qa.md
  • references/schemas.md
  • scripts/__init__.py
  • scripts/lib/__init__.py
  • scripts/lib/mineru_client.py
  • scripts/lib/mineru_parser.py
  • scripts/lib/sectionize.py
  • scripts/page_screenshot.py
  • scripts/parse_pdf.py
  • scripts/render_pptx.py
  • scripts/workdir.py
Commands it runs
conda run -n paper2anything --no-capture-output python -m scripts.workdir resolve \
set -a; source <paper2anything package root>/.env; set +a   # export the unified .env (includes MINERU_API_TOKEN)
conda run -n paper2anything --no-capture-output python -m scripts.parse_pdf <paper.pdf>
conda run -n paper2anything --no-capture-output python -c \
conda run -n paper2anything --no-capture-output python -m scripts.page_screenshot \
conda run -n paper2anything --no-capture-output python -m scripts.render_pptx \
More from paper2anything
All skills →
About this skill
What does the paper2slides skill do?

Turn an academic paper PDF into a presentation deck (.pptx) end-to-end. Use this skill whenever the user wants to \"make slides from a paper\", \"generate a deck from this PDF\", \"make a PPT from this paper\", \"generate slides from a PDF document\", \"make a deck from a research paper\", or supplies a research paper PDF and asks for a .pptx out. Trigger even when the user only says \"deck this paper\" or \"summarize as slides\". This is the dedicated, self-contained skill for academic-paper-to-deck flows.

How do I install it?

Run `npx skills add QuZhan51496/paper2anything --skill paper2slides --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 QuZhan51496/paper2anything, a repository with 333 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