Back to Registry View Author Profile
Official Verified
arxiv-osiris
Search and download research papers from arXiv.org - Research version for OpenClaw agents
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/nantes/arxiv-osirisOr
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 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 Sciencephysics.*- Physicsmath.*- Mathematicsq-bio.*- Quantitative Biologyq-fin.*- Quantitative Financestat.*- 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
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-nantes-arxiv-osiris": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.
Related Skills
a2a-protocol
Agent2Agent (A2A) Protocol implementation - communicate with other AI agents
nantes 1335
mcp-client
Model Context Protocol (MCP) client - connect to tools, data sources and services
nantes 1335
Pdfreader
Skill by nantes
nantes 1335
Agent Watcher
Skill by nantes
nantes 1335
simplemem
Efficient Lifelong Memory for LLM Agents - semantic compression, cross-session memory, and intent-aware retrieval
nantes 1335