read-arxiv-paper

Fetch arXiv LaTeX sources and generate Markdown summaries.

71|18|Updated Mar 6, 2026
One-click install
npx skills add https://github.com/Science-Discovery/Aether --skill read-arxiv-paper-science-discovery
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: read-arxiv-paper
Source: https://github.com/Science-Discovery/Aether/tree/main/.opencode/skills/read-arxiv-paper
Command: npx skills add https://github.com/Science-Discovery/Aether --skill read-arxiv-paper-science-discovery

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Reading arXiv papers manually is time-consuming and error-prone; this skill automates fetching and reading the LaTeX source from arXiv, enabling faster comprehension and summarization.

Core Features & Use Cases

  • URL normalization and source retrieval: converts a given arXiv URL to the /src/ URL and downloads the paper's LaTeX sources.
  • Local processing and reading: unpacks the tarball, locates the entrypoint (e.g., main.tex), and reads relevant source files to understand the paper's structure and content.
  • Summary generation and knowledge storage: produces a Markdown summary to ./knowledge/summary_{tag}.md and preserves results in a local knowledge directory for easy reference.

Quick Start

Provide an arXiv URL and the skill will fetch the paper source, unpack it locally, read the entrypoint, and generate a Markdown summary in the knowledge directory.

Frequently Asked Questions about read-arxiv-paper

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I summarize an arXiv paper from a URL?▼

Fetching arXiv paper LaTeX source involves normalizing the provided URL to the /src/ endpoint, downloading the tarball, and unpacking it to locate the main.tex entrypoint for recursive reading.

Can I read the LaTeX source of an arXiv paper locally?▼

Yes, reading arXiv LaTeX source locally works by downloading the paper's tarball from the /src/ URL, unpacking it, and recursively parsing the entrypoint and related files to understand the paper's structure.

What is the best way to extract knowledge from arXiv LaTeX source files?▼

Extracting knowledge from arXiv LaTeX sources is best handled by unpacking the tarball, iterating recursively through dependencies to build coherent understanding, and storing the results as a local Markdown summary.

Does arXiv paper summarization require manual source file downloads?▼

No, arXiv paper summarization does not require manual downloads; the process automates URL normalization to fetch the tarball, unpacks the LaTeX source, and builds a local Markdown summary automatically.

Where are the generated summaries of arXiv papers stored?▼

Generated arXiv paper summaries are stored as Markdown files at ./knowledge/summary_{tag}.md within a user-writable local knowledge directory for easy reference and retrieval.

Why does the arXiv reader need to unpack a tarball instead of reading the PDF?▼

Unpacking a tarball is needed instead of reading a PDF because the tool parses the raw LaTeX source files, allowing it to recursively iterate through structural dependencies for accurate comprehension.