Install
openclaw skills install arxiv-sourceRead and analyze arXiv papers by fetching LaTeX source, listing sections, or extracting abstracts
openclaw skills install arxiv-sourceRead and analyze arXiv papers by fetching their public LaTeX source. Converts LaTeX into clean text suitable for LLM analysis.
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.
arxiv_abstract to get a paper's abstract before committing to a full readarxiv_sections to understand the paper's outlinearxiv_fetch to get the full flattened LaTeX for analysisFetch the full flattened LaTeX source of an arXiv paper.
Parameters:
arxiv_id (string, required): arXiv paper ID (e.g. 2301.00001 or 2301.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 }
List all sections and subsections of an arXiv paper.
Parameters:
arxiv_id (string, required): arXiv paper IDReturns: { arxiv_id: string, sections: string[] }
Example:
{ "arxiv_id": "2301.00001" }
Extract just the abstract from an arXiv paper.
Parameters:
arxiv_id (string, required): arXiv paper IDReturns: { arxiv_id: string, abstract: string }
Example:
{ "arxiv_id": "2301.00001" }
2301.00001v2)arxiv_abstract uses the public arXiv Atom API for fast metadata retrieval