Install
openclaw skills install paper-reading-fourierRead academic papers from local PDF files, arXiv URLs, or paper titles and generate structured reading notes in Chinese. Use when the user provides a PDF file path, an arXiv URL, a paper title, or asks to read/summarize/analyze a research paper. Supports automatic arXiv title search, PDF download, text extraction, and standardized note generation following a consistent template format.
openclaw skills install paper-reading-fourierRead a paper and produce structured notes following the standard template.
Before starting, the user must provide:
/tmp/paper.pdf)/Users/xxx/notes/Paper Title.md)Given a local path, arXiv URL, or paper title from the user:
python scripts/fetch_pdf.py <path_or_url_or_title> -o <pdf_output_path>
/abs/ and /pdf/ URL formats)-o 参数指定 PDF 存储的绝对路径(由用户提供)pip install pdfplumber # if not already installed
python scripts/read_pdf.py <pdf_path> [-p <page_range>] [-o <extracted_text_path>]
-p 1-10 or -p 3)-o 可选,指定提取文本的输出路径;不指定则输出到 stdoutRead the extracted text. For papers with complex layouts (columns, figures, equations), supplement extraction with direct PDF reading using the pdf tool if available, or ask the user to clarify specific sections.
Produce notes following the standard template.
# 一、基本信息
1.paper:《标题》
2.github:链接或未知
3.会议:会议名或未知
# 二、文章理解
## 1. 研究背景与动机 (Motivation)
## 2. 核心问题 (Problem Statement)
## 3. 解决方法 (Methodology)
## 4. 实验结果 (Experiments)
$...$ inline, $$...$$ block) format**...**:::info blocks# → ## → ### → ####Save the generated notes to the path specified by the user (e.g. /Users/xxx/notes/Paper Title.md).