Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
yuan1z0825 avatar

Nature Reader

  • 5.3k installs
  • 33.4k repo stars
  • Updated August 4, 2026
  • yuan1z0825/nature-skills

nature-reader builds bilingual side-by-side Markdown readers for academic papers with source-grounded anchors.

About

Nature Reader builds full-paper Chinese-English side-by-side Markdown readers for journal and conference papers from PDF, DOI, arXiv, publisher HTML, or pasted text. A static layer under static/ holds versioned fragments for core principles, workflow, output contract, and per-source extraction guidance, while this router and manifest.yaml load only what each job needs. Routing detects source_format as pdf-text, scanned-pdf, html, doi-arxiv, or pasted-text, states the choice to the user, then loads matching fragments without reading every file. Applied priority is core principles first, then source-format extraction, six-step source-map-first workflow, and output contract verification. The skill must not degrade to summary-only output unless explicitly requested. It produces paper.md, source_map.json, translation_notes.md, and a Terminology Ledger glossary. References for figure extraction, output schema, and grounding rules load on demand. The split mirrors nature-writing and nature-polishing so shared content lives in _shared/.

  • Static and dynamic layers load only source-format fragments per invocation.
  • Detects pdf-text, scanned-pdf, html, doi-arxiv, or pasted-text before processing.
  • Six-step source-map-first workflow with bilingual reader output contract.
  • Builds Terminology Ledger glossary into paper.md and source_map.json.
  • Never degrades to summary-only unless the user explicitly requests it.

Nature Reader by the numbers

  • 5,280 all-time installs (skills.sh)
  • +927 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #76 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

nature-reader capabilities & compatibility

Capabilities
source format routing via manifest.yaml · bilingual side by side markdown reader generatio · figure and table placement near relevant prose · terminology ledger and source_map.json grounding · on demand reference loading for output schema
Use cases
research · translation · documentation
Runs
Runs locally
Pricing
Free
From the docs

What nature-reader says it does

This skill must not degrade into a summary-only output unless the user explicitly asks for a summary.
SKILL.md
Load only what step 2 selected.
SKILL.md
npx skills add https://github.com/yuan1z0825/nature-skills --skill nature-reader

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs5.3k
repo stars33.4k
Security audit2 / 3 scanners passed
Last updatedAugust 4, 2026
Repositoryyuan1z0825/nature-skills

How do I translate or read a full academic paper with figures, tables, and exact source anchors?

Build full-paper Chinese-English side-by-side Markdown readers from PDF, DOI, arXiv, HTML, or pasted text with figure and table placement.

Who is it for?

Full-paper translation, bilingual reading, or figure-aware literature review from PDF or DOI inputs.

Skip if: Skip for summary-only requests or papers where the user wants a brief abstract recap.

When should I use this skill?

User asks to read, translate, or produce 中英文对照 readers from PDF, DOI, arXiv, or HTML.

What you get

paper.md reader files, source_map.json anchors, translation_notes.md, and recurring-term glossary tables.

  • Bilingual Chinese-English Markdown reader
  • Positioned figures and tables
  • Per-block source anchors

Files

SKILL.mdMarkdownGitHub ↗

Full-Paper Markdown Reader — Router

This skill is split into two layers:

  • A static layer under static/ that holds versioned, reusable content fragments (core principles, the reading workflow, the output contract, and per-source-format extraction guidance).
  • A dynamic layer (this file plus manifest.yaml) that detects the request's source format and loads only the fragments needed for the current job.

Do not try to apply the reading 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 source_format axis, the allowed values, and the file paths each value maps to.

Also read every file listed under always_load. These hold the core principles, the reading workflow, and the output contract that apply to every reading job, plus the shared Terminology Ledger used to build the recurring-term table.

2. Detect the source format

Decide the source_format value using the manifest's detect: hint and the user's input:

  • pdf-text — selectable-text PDF. Default.
  • scanned-pdf — image-only or OCR-required PDF.
  • html — publisher or preprint HTML page.
  • doi-arxiv — a bare DOI or arXiv link that must be resolved first.
  • pasted-text — pasted prose or notes with no retrievable original layout.

State the detected value in one short line to the user before processing, so they can correct you cheaply. A source may map to more than one value (for example a DOI that resolves to a PDF); load the resolution fragment first, then the fragment for the resolved artifact.

3. Load the matching fragment(s)

Read the file mapped for the detected source_format. Do not read every fragment in static/. Load only what step 2 selected.

4. Build the reader using the loaded material

Apply the loaded fragments in this priority order:

1. Core principles (core/principles.md) — bilingual reader by default, translate for meaning, never degrade to a summary, copyright caution. 2. Source-format fragment — how to extract text, figures, and tables for this input. 3. Reading workflow (core/workflow.md) — the six-step source-map-first process. 4. Output contract (core/output-contract.md) — required files and the pre-response verification checklist.

Build the Terminology Ledger as you translate (../_shared/core/terminology-ledger.md); it becomes the paper.md recurring-term table and the source_map.json glossary.

If constraints prevent full processing, still create a draft reader and label missing pages, figures, or low-confidence crops in translation_notes.md. Do not switch to summary mode.

5. Reach for references only when needed

The files under references/ are deep references, not defaults. Open them on demand per the references.on_demand table in the manifest:

  • detailed figure/table cropping and placement → references/figure-extraction.md.
  • exact field schema for paper.md / source_map.jsonreferences/output-spec.md.
  • answering follow-up questions with source citations → references/grounding-rules.md.

Why this split

  • The static layer is versioned and reviewable. Adding a new source format is one new fragment plus one manifest line.
  • The dynamic layer keeps each invocation cheap: only the fragment relevant to this input enters context.
  • The router itself is short on purpose. Update fragments, not this file, when adding scope.
  • This structure mirrors nature-writing and nature-polishing so shared content lives in _shared/.

Related skills

Forks & variants (1)

Nature Reader has 1 known copy in the catalog totaling 2 installs. They canonicalize to this original listing.

How it compares

Choose nature-reader when you need faithful full-paper bilingual Markdown with layout preserved, not quick abstract summaries or citation-only extraction.

FAQ

Can this output a summary instead of a full reader?

Only when the user explicitly asks for a summary; default is full-paper bilingual reader output.

How does it choose extraction guidance?

It reads manifest.yaml, detects source_format, and loads only the matching static fragment.

What files does a completed job produce?

paper.md, source_map.json, translation_notes.md, plus a Terminology Ledger glossary.

Is Nature Reader safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.