✓ Verified 💻 Development ✓ Enhanced Data

Arxiv Osiris

Search and download research papers from arXiv.org - Research version for OpenClaw agents.

Rating
4.4 (210 reviews)
Downloads
39,348 downloads
Version
1.0.0

Overview

Search and download research papers from arXiv.org - Research version for OpenClaw agents.

Key Features

1

Search papers by keywords, titles, abstracts

2

Download PDFs directly

3

Filter by category (physics, cs, math, etc.)

4

Get metadata including authors, dates, categories

Complete Documentation

View Source →

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

powershell
# Install Python dependency
pip install arxiv

Usage

Search for papers

powershell
# 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

powershell
# By arXiv ID
.\arxiv.ps1 -Action download -ArxivId "2310.12345"

Python API

python
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")

Categories

Common arXiv categories:

  • cs.* - Computer Science
  • physics.* - Physics
  • math.* - Mathematics
  • q-bio.* - Quantitative Biology
  • q-fin.* - Quantitative Finance
  • stat.* - Statistics

Examples

  • Search for consciousness papers: arxiv.ps1 -search "consciousness" -max 5
  • Find physics papers: arxiv.ps1 -search "quantum" -cats "physics" -max 10
  • Download paper: arxiv.ps1 -download "1706.03762" (Attention is All You Need)

Notes

  • arXiv is free and open
  • Papers are preprints - may not be peer-reviewed
  • Great for staying current with research

Installation

Terminal bash

openclaw install arxiv-osiris
    
Copied!

💻Code Examples

pip install arxiv

pip-install-arxiv.txt
## Usage

### Search for papers
example.txt
# 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"
example.py
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")

Tags

#coding_agents-and-ides

Quick Info

Category Development
Model Claude 3.5
Complexity Multi-Agent
Author nantes
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install arxiv-osiris