/install arxiv-source
arxiv-reader
Read and analyze arXiv papers by fetching their public LaTeX source. Converts LaTeX into clean text suitable for LLM analysis.
Description
This skill fetches arXiv papers from the public arXiv API (arxiv.org), flattens LaTeX includes, and returns clean text. No local file access is required — all content is fetched over HTTPS from arXiv's public endpoints and cached in memory for the session.
Network access: Only connects to arxiv.org and export.arxiv.org to download publicly available paper source tarballs and metadata. No other network connections are made. No data is sent to external services — this is read-only.
Caching: Results are cached in memory (process-scoped) for fast repeat access within the same session. No files are written to disk.
Usage Examples
- "Read the paper 2301.00001 from arXiv"
- "What sections does paper 2405.12345 have?"
- "Get the abstract of 2312.09876"
- "Fetch paper 2301.00001 without the appendix"
Process
- Quick look — Use
arxiv_abstractto get a paper's abstract before committing to a full read - Survey structure — Use
arxiv_sectionsto understand the paper's outline - Deep read — Use
arxiv_fetchto get the full flattened LaTeX for analysis
Tools
arxiv_fetch
Fetch the full flattened LaTeX source of an arXiv paper.
Parameters:
arxiv_id(string, required): arXiv paper ID (e.g.2301.00001or2301.00001v2)remove_comments(boolean, optional): Strip LaTeX comments (default: true)remove_appendix(boolean, optional): Remove appendix sections (default: false)figure_paths(boolean, optional): Replace figures with file paths only (default: false)
Returns: { content: string, arxiv_id: string, cached: boolean }
Example:
{ "arxiv_id": "2301.00001", "remove_appendix": true }
arxiv_sections
List all sections and subsections of an arXiv paper.
Parameters:
arxiv_id(string, required): arXiv paper ID
Returns: { arxiv_id: string, sections: string[] }
Example:
{ "arxiv_id": "2301.00001" }
arxiv_abstract
Extract just the abstract from an arXiv paper.
Parameters:
arxiv_id(string, required): arXiv paper ID
Returns: { arxiv_id: string, abstract: string }
Example:
{ "arxiv_id": "2301.00001" }
Notes
- Results are cached in memory — repeat requests within the same session are instant
- Paper IDs support version suffixes (e.g.
2301.00001v2) - Very large papers may take 10-30 seconds on first fetch
arxiv_abstractuses the public arXiv Atom API for fast metadata retrieval- No filesystem writes — all caching is in-memory only
- Only connects to arxiv.org (read-only, public data)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install arxiv-source - 安装完成后,直接呼叫该 Skill 的名称或使用
/arxiv-source触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
arXiv Source Reader 是什么?
Read and analyze arXiv papers by fetching LaTeX source, listing sections, or extracting abstracts. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 580 次。
如何安装 arXiv Source Reader?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install arxiv-source」即可一键安装,无需额外配置。
arXiv Source Reader 是免费的吗?
是的,arXiv Source Reader 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
arXiv Source Reader 支持哪些平台?
arXiv Source Reader 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 arXiv Source Reader?
由 Will.hou(@willamhou)开发并维护,当前版本 v1.0.5。