π¦ ClawHub
ArXiv Research
by @nantes
Search and download research papers from arXiv.org - Research skill for OpenClaw agents
TERMINAL
clawhub install arxiv-researchπ About This Skill
name: arxiv-research version: 1.0.0 description: Search and download research papers from arXiv.org - Research skill for OpenClaw agents metadata: {"openclaw": {"emoji": "π", "requires": {"bins": ["python"], "pip": ["arxiv"]}, "homepage": "https://arxiv.org"}}
ArXiv Research Skill
Search and download scientific papers from arXiv.org - the largest free distribution of scientific preprints.
What it does
Installation
# Install Python dependency
pip install arxiv
Usage
Search for papers
# Basic search
python arxiv_search.py search "quantum computing"With max results
python arxiv_search.py search "machine learning" --max 10With category filter (physics, cs, math, q-bio, etc.)
python arxiv_search.py search "neural networks" --cats cs,stat
Download a paper
# By arXiv ID
python arxiv_search.py download "2310.12345"
Python API
from arxiv import search, downloadSearch
results = search("simulation hypothesis", max_results=5)
for paper in results:
print(f"{paper.title} - {paper.pdf_url}")Download
paper.download("/path/to/save")
Categories
Common arXiv categories:
cs.* - Computer Sciencephysics.* - Physics math.* - Mathematicsq-bio.* - Quantitative Biologyq-fin.* - Quantitative Financestat.* - StatisticsExamples
python 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)Notes
π‘ Examples
python 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)