Install
openclaw skills install arxiv-researchSearch and download research papers from arXiv.org - Research skill for OpenClaw agents
openclaw skills install arxiv-researchSearch and download scientific papers from arXiv.org - the largest free distribution of scientific preprints.
# Install Python dependency
pip install arxiv
# Basic search
python arxiv_search.py search "quantum computing"
# With max results
python arxiv_search.py search "machine learning" --max 10
# With category filter (physics, cs, math, q-bio, etc.)
python arxiv_search.py search "neural networks" --cats cs,stat
# By arXiv ID
python arxiv_search.py download "2310.12345"
from arxiv import search, download
# Search
results = search("simulation hypothesis", max_results=5)
for paper in results:
print(f"{paper.title} - {paper.pdf_url}")
# Download
paper.download("/path/to/save")
Common arXiv categories:
cs.* - Computer Sciencephysics.* - Physicsmath.* - Mathematicsq-bio.* - Quantitative Biologyq-fin.* - Quantitative Financestat.* - Statisticspython arxiv_search.py search "consciousness" --max 5python arxiv_search.py search "quantum" --cats physics --max 10python arxiv_search.py download "1706.03762" (Attention is All You Need)