← ClaudeAtlas

nature-readerlisted

Build full-paper Chinese-English side-by-side, figure/table-aware, source-grounded Markdown readers for journal or conference papers from PDF, DOI, arXiv, publisher HTML, or pasted text. Use whenever the user asks to translate or read a paper, make 中英文对照/原文对照/全文翻译解读, extract figures or tables into the right positions, preserve figure/table placement near relevant prose, or keep exact source anchors for every block. This skill must not degrade into a summary-only output unless the user explicitly asks for a summary. Also trigger on general paper-reading and translation requests even without the word "Nature", such as reading/translating an academic paper, literature reading, understanding a paper, and Chinese phrasings like 读论文、精读论文、论文翻译、文献翻译、文献阅读、学术阅读、帮我读这篇文章、翻译这篇paper.
tuoxie2046/claude-code-research-skills · ★ 1 · Data & Documents · score 67
Install: claude install-skill tuoxie2046/claude-code-research-skills
# 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](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 t