summarise-paper
Installation
SKILL.md
When to use
- Reading and summarising an academic paper.
Workflow
- Determine whether the input is a PDF file or an arXiv URL.
- If the input is a PDF file:
- Use
pdftoppmto convert the PDF into PNG images. Save them under.cache/{paper name}/as[1,2,3,...].png. - Read the converted images.
- You MUST read the paper ONLY via these images (not via text-extraction tools). Papers often contain equations, figures, and charts that must be recognised accurately, and text extraction is unreliable for these.
- Use
- If the input is an arXiv URL (e.g.
https://www.arxiv.org/abs/2601.07372):- Normalise the input by replacing the
absin the URL intosrcfor TeX source, e.g.:https://www.arxiv.org/src/2601.07372. - Download the source as a local
.tar.gzarchive and store it under.cache/downloads/{paper name}/. - Unpack the archive into
.cache/{paper name}/. - Locate the entry point (e.g.
main.tex) and read all relevant contents, including referenced figures.
- Normalise the input by replacing the
- Summarise the paper as a LaTeX research note and write it under
note/{paper name}/, following the Paper Summarisation Instructions below. - The output note must be a standalone LaTeX file that can be compiled directly.
Related skills