nature-paper2ppt

nature-paper2ppt is a skill for Codex from Yuan1z0825/nature-skills. It costs 177 tokens per session (1,178 once invoked), scanned A, original, Apache-2.0.

A workflow for turning a scientific paper, preprint, PDF, article, figure legends, or reading notes into a complete Chinese PowerPoint presentation. It is designed for journal clubs, group meetings, thesis seminars, conferences, defences, and paper-sharing talks.

In plain words
What is it for?
Use it to prepare Chinese presentations for paper discussions, lab meetings, thesis or conference talks, defences, and reading reports.
Why use it?
It removes the need to decide from scratch what each slide should explain and how the paper's evidence should be presented. It keeps the presentation focused on the study's question, methods, results, and conclusions.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to prepare Chinese presentations for paper discussions, lab meetings, thesis or conference talks, defences, and reading reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yuan1z0825/nature-skills/nature-paper2ppt
About the project

Nature Skills is a collection of reusable skills that help AI agents handle academic writing and scientific visualization. Researchers and AI-assisted scholars use it to turn research tasks into repeatable workflows and usable outputs. The catalogue entries are skills from this collection.

Yuan1z0825/nature-skills · 40,913 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Yuan1z0825/nature-skills --skill nature-paper2ppt
Clone the repo
git clone --depth 1 https://github.com/Yuan1z0825/nature-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nature-paper2ppt

README.md
[![agentmods](https://agentmods.dev/badge/skills/yuan1z0825/nature-skills/nature-paper2ppt/github.svg)](https://agentmods.dev/skills/yuan1z0825/nature-skills/nature-paper2ppt)
Your own site
<a href="https://agentmods.dev/skills/yuan1z0825/nature-skills/nature-paper2ppt"><img src="https://agentmods.dev/badge/skills/yuan1z0825/nature-skills/nature-paper2ppt/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nature-paper2ppt

Your own site · 80×15
<a href="https://agentmods.dev/skills/yuan1z0825/nature-skills/nature-paper2ppt"><img src="https://agentmods.dev/badge/skills/yuan1z0825/nature-skills/nature-paper2ppt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 177 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,178 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. ✓ AI security review Sonnet 5 · 6 Sept 2026 📄 Read the review Third-party audits
  • Socket pass 25 May 2026
  • Snyk pass 25 May 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00177 $0.01178
Opus 5 $0.00088 $0.00589
Sonnet 5 $0.00035 $0.00236
Haiku 4.5 $0.00018 $0.00118

Measured 13d ago against content hash 945136f11200, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

nature-paper2ppt scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/audit_pptx_quality.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

2 near-identical copies found in the catalogue:

skills/nature-paper2ppt/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Paper-to-PPTX — Router

This skill is split into two layers:

  • A static layer under static/ that holds versioned, reusable content fragments (core principles, toolchain policy, the 9-step workflow, output/quality rules, and per-paper-type presentation arcs).
  • A dynamic layer (this file plus manifest.yaml) that detects the paper type and loads only the fragments needed for the current job. Deep design, figure, and self-review material lives in on-demand references.

Do not try to apply the deck-building logic from memory or from this router. Always load fragments from disk as described below.

Routing protocol

Follow these five steps every time the skill is invoked.

1. Load the manifest and the core layer

Read manifest.yaml. It declares the paper_type axis, the allowed values, and the file paths each value maps to.

Also read every file listed under always_load. These hold the purpose and core principle, the lean operating mode and toolchain policy, the 9-step workflow spine, and the output/quality rules that apply to every deck, plus the shared Terminology Ledger used to keep technical terms consistent across slides.

2. Classify the paper type

Decide the paper_type value using the manifest's detect: hint and the source:

  • discovery — discovery / mechanism papers (question-to-evidence arc). Default.
  • methods — methods / AI / tool / algorithm papers (problem-to-solution arc).
  • resource — resource / dataset / atlas / omics / benchmark papers (workflow-to-validation arc).
  • clinical — clinical / population / intervention studies (design-to-inference arc).
  • materials — materials / chemistry / physics / engineering papers (property-to-mechanism / design-to-performance arc).
  • review — reviews / perspectives / commentaries / meta-analyses (evidence-map arc).

State the detected value in one short line to the user before designing slides, so they can correct you cheaply.

3. Load the matching fragment

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 72 lines · 177 tokens per session scan A 945136f11200

Subscribe to this mod's changes

nature-paper2ppt is a skill published in the GitHub repository Yuan1z0825/nature-skills (40,913 stars, last pushed 2d ago), licensed Apache-2.0. It adds 177 tokens to every session and 1,178 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

latex-empirical-tables

Set up, format, fix, and clean up LaTeX regression and estimation tables in empirical economics or finance papers. Use when (a) creating a .tex, results.tex, main.tex, or preamble to display regression or estimation output from Python (pyfixest), Stata, or R — including any mention of estout, esttab, estauto, estwide…

kennethkhoocy/applied-micro-skills · 240 tokens

latex-to-word

Convert between LaTeX and Microsoft Word for academic manuscripts in either direction, and assemble .tex from mixed sources. Fires on: converting .tex/LaTeX to Word/.docx ("tex to docx", "latex to word", "tex2docx", "convert to word", "pandoc convert"); converting .docx manuscripts to LaTeX for editing and back…

kennethkhoocy/applied-micro-skills · 228 tokens

remote-sensing-report

A writing guide for turning Chinese remote-sensing experiment materials into a formal Word or PDF lab report. It uses the report template, experiment instructions, draft, and original screenshots as sources.

xuedai-mayi/envi-classic-remote-sensing · 105 tokens

envi-classic-lab-automation

An automation guide for completing remote-sensing experiments in ENVI Classic 5.6 and producing a checked lab report. ENVI Classic is software for analysing satellite and other remote-sensing images.

xuedai-mayi/envi-classic-remote-sensing · 130 tokens

ieee-latex

Compile, diagnose, and fix IEEEtran LaTeX manuscripts for JSAC, TWC, TCOM, WCL, CL, and related IEEE journals: documentclass options, BibTeX/IEEEtran bibliography, undefined citations/refs, overfull hboxes, figure/table placement, algorithm/equation numbering, Index Terms, EDICS, biographies, and final PDF checks. Use…

TenWalk/ieee-skills · 161 tokens

scientific-slides

Build slide decks and presentations for research talks. Use this for making PowerPoint slides, conference presentations, seminar talks, research presentations, thesis defense slides, or any scientific talk. Provides slide structure, design templates, timing guidance, and visual validation. Works with PowerPoint and…

userInner/SKILLS · 65 tokens