| name | arxiv-osiris |
| version | 1.0.0 |
| description | Search and download research papers from arXiv.org - Research version for OpenClaw agents |
| metadata | {"openclaw":{"emoji":"📚","requires":{"bins":"[Truncated]","pip":"[Truncated]"},"homepage":"https://arxiv.org"}} |
ArXiv Skill
Search and download scientific papers from arXiv.org - the largest free distribution of scientific preprints.
What it does
- Search papers by keywords, titles, abstracts
- Download PDFs directly
- Filter by category (physics, cs, math, etc.)
- Get metadata including authors, dates, categories
Installation
# Install Python dependency
pip install arxiv
Usage
Search for papers
# Basic search
.\arxiv.ps1 -Action search -Query "quantum computing"
# With max results
.\arxiv.ps1 -Action search -Query "machine learning" -MaxResults 10
# With category filter (physics, cs, math, q-bio, etc.)
.\arxiv.ps1 -Action search -Query "neural networks" -Categories "cs,stat"
Download a paper
# By arXiv ID
.\arxiv.ps1 -Action download -ArxivId "2310.12345"
Python API
from arxiv search, download
results = search(, max_results=)
paper results:
()
paper.download()