Nature Paper Card logo

Nature Paper Card

CommunityPopular
Yuan1z0825
nature-paper-card

Build a structured deep-reading Paper Card for one scientific paper, analysing methods, experiment-to-claim evidence, limitations, and research ideas. Use for 论文精读卡、方法拆解、证据链分析; not full-paper bilingual translation or formal peer review.

Overview

PublisherYuan1z0825
Repositorynature-skills
Skill namenature-paper-card
Stars
42.8K
Forks
2.3K
Bundled files
19
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 19 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by Yuan1z0825 on GitHub. Read the source before you install it.

Installation

Install the Nature Paper Card AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Yuan1z0825/nature-skills.git /tmp/nature-skills
mkdir -p .claude/skills
cp -r /tmp/nature-skills/skills/nature-paper-card .claude/skills/nature-paper-card
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Nature Paper Card in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Nature Paper Card on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Nature Paper Card is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Nature Paper Card - Router

Use this skill to turn one paper into an evidence-grounded research card, not a translated abstract, generic summary, reviewer report, or publication article.

The skill uses:

  • a static core under static/core/ for principles, workflow, and the fixed output contract;
  • one paper-type fragment under static/fragments/paper_type/;
  • on-demand references for evidence labels, the exact card schema, and research-idea checks.

Routing protocol

Follow these steps every time.

1. Load the manifest and core layer

Read manifest.yaml, then read every file under always_load. Do not generate the card from this router alone.

2. Establish the source boundary

Identify which material is available:

  • full paper with figures and tables;
  • paper text without reliable layout;
  • abstract or metadata only;
  • an existing nature-reader artifact with stable source IDs.

Prefer an existing nature-reader artifact when supplied. Do not repeat full bilingual translation or figure extraction. If only partial material is available, create a visibly partial card and mark every unsupported section Not assessable from supplied material.

For a PDF or nature-reader source-map JSON, the bundled script is mandatory.

  1. Resolve SKILL_DIR as the directory containing this loaded SKILL.md.
  2. Verify SKILL_DIR/scripts/prepare_paper.py exists.
  3. Run exactly the bundled script by its resolved path:
text
python "SKILL_DIR/scripts/prepare_paper.py" INPUT \
  --output WORKDIR/source_bundle.json

Add --render-dir WORKDIR/rendered-pages when visual page review is needed. Inspect the script exit code and the bundle validation block before drafting.

For source-map input, also inspect locator_summary and unlocated_blocks. Only records under pages have verified positive PDF page locators. Missing or invalid page locators remain in unlocated_blocks with an explicit status and must be cited structurally, never as page 1.

Never write inline Python, a temporary extraction script, or a replacement script during a Paper Card run. Never patch the bundled scripts during a normal Paper Card run. Modify these scripts only when the user explicitly asks to develop, debug, or improve the skill itself.

Use this fixed locator state machine:

  • page-grounded: the bundled script succeeds and validates reliable PDF page indices. Use PDF page plus structural locators. Printed page labels are optional metadata.
  • structure-grounded: page extraction is unreliable, but reliable sections, figures, tables, equations, source blocks, or full text remain available. Do not emit page-number citations.
  • source-limited: only an abstract, metadata, or user-provided excerpt is reliable. Do not emit page-number citations or infer unseen evidence.

If preparation fails, record the failure. Prefer an existing nature-reader source map or the environment PDF/OCR capability, but do not create a replacement script. Then enter the strongest supported fallback mode.

3. Classify the paper type

Use the manifest to choose one primary paper_type and, only for a genuinely hybrid paper, one secondary contribution lens:

  • methods
  • discovery
  • resource
  • clinical
  • materials
  • review

Load the primary fragment and no more than one secondary fragment. Classify by the paper's argument and evidence structure, not merely its discipline. State both selections before analysis. For example, an algorithm paper that also introduces a substantial dataset may use methods as the primary lens and resource as the secondary lens.

4. Build the evidence base before drafting

Build an internal evidence inventory before drafting. At minimum, enumerate:

  • bibliographic metadata and access status;
  • research question and claimed contribution;
  • method components, assumptions, and data flow;
  • every main figure, table, and essential equation with its argumentative role;
  • experiments, baselines, metrics, ablations, and reported results;
  • author-stated limitations;
  • stable source pointers to pages, sections, equations, figures, tables, or nature-reader block IDs.

Then build a compact claim-evidence matrix linking each central claim to the evidence that supports it and to any unresolved gap.

Use external search only for Section 04, Section 15, bibliographic verification, or an explicit novelty check. Never present the paper's own related-work narrative as independently verified field history. Record whether the context mode is paper-only, targeted external check, or externally verified.

5. Generate the fixed Sections 01-16 Paper Card

Apply, in order:

  1. core principles;
  2. the selected paper-type fragment;
  3. core workflow;
  4. output contract.

Read references/evidence-and-provenance.md before making analytical or externally verified claims. Read references/card-schema.md when drafting the final Markdown. Read references/research-idea-gates.md before writing Section 16.

Write a real Markdown artifact, defaulting to paper-card.md. Keep all 16 numbered sections in order, but write Not applicable or Not assessable instead of inventing content.

Match the user's language by default. The skill source and schema remain English, but localize the Paper Card headings and prose when the user writes in another language. Preserve canonical technical terms and formulas.

6. Run groundedness QA

Before delivery, resolve the bundled auditor from SKILL_DIR. In page-grounded mode, run:

text
python "SKILL_DIR/scripts/audit_paper_card.py" \
  --card WORKDIR/paper-card.md \
  --bundle WORKDIR/source_bundle.json \
  --locator-mode page-grounded \
  --report WORKDIR/audit-report.json

In either fallback mode, run the same auditor without a bundle:

text
python "SKILL_DIR/scripts/audit_paper_card.py" \
  --card WORKDIR/paper-card.md \
  --locator-mode structure-grounded-or-source-limited \
  --report WORKDIR/audit-report.json

Replace the last value with the actual canonical mode. Treat audit errors as blockers. Review warnings with scientific judgment rather than suppressing them mechanically.

Also verify:

  • numerical results match the source;
  • the evidence inventory covers every main figure and table;
  • every major method, result, boundary, and limitation has a source pointer;
  • PDF page pointers distinguish PDF page index from printed page labels;
  • author statements are separated from Agent analysis;
  • external field-history claims have external citations or are marked unverified;
  • proposed ideas are hypotheses, not novelty claims;
  • Sections 17 and 18 do not exist;
  • no academic-English collection, comprehension quiz, or public-article draft was added.

If the auditor itself cannot run, state that failure and manually apply only its documented checks. Do not write a substitute auditor.

Script red lines

  • Do not resolve bundled scripts relative to the user's current working directory.
  • Do not write or execute inline Python as a substitute for either bundled script.
  • Do not create extract_pdf.py, parse_paper.py, or another one-off replacement.
  • Do not patch skill code during a normal Paper Card generation request.
  • Do not fabricate page numbers when preparation fails.
  • Do not remove all grounding in fallback mode; use structural locators or explicit source-scope locators.

Relationship to adjacent skills

  • Use nature-reader for full-text bilingual reading artifacts, extraction, and stable source maps.
  • Use nature-academic-search when external literature is needed to verify field history or knowledge connections.
  • Use nature-reviewer for formal reviewer-style manuscript assessment.
  • Use nature-literature-pipeline for batch discovery and lightweight monitoring notes.
  • Use nature-paper2ppt when the requested end product is a presentation.

Do not silently switch the requested Paper Card into any of these outputs.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Nature Paper Card AI skill do?

Build a structured deep-reading Paper Card for one scientific paper, analysing methods, experiment-to-claim evidence, limitations, and research ideas. Use for 论文精读卡、方法拆解、证据链分析; not full-paper bilingual translation or formal peer review.

Why use Nature Paper Card on TypingMind?

Because you install it once and use it with any model. Nature Paper Card is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Nature Paper Card in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Yuan1z0825/nature-skills/tree/main/skills/nature-paper-card. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Nature Paper Card?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Nature Paper Card?

As many as you like. As long as a model supports skills, you can use Nature Paper Card with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Nature Paper Card AI skill free?

Yes. It is published on GitHub by Yuan1z0825 under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇