ArXiv Research

v1.0.0

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

0· 1.3k·10 current·12 all-time
byIvan Cetta@nantes

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for nantes/arxiv-research.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "ArXiv Research" (nantes/arxiv-research) from ClawHub.
Skill page: https://clawhub.ai/nantes/arxiv-research
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: python
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install arxiv-research

ClawHub CLI

Package manager switcher

npx clawhub@latest install arxiv-research
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (search and download papers from arXiv) match the included Python code and SKILL.md. Required binary is only python and the metadata/prompted pip dependency is the arxiv library — all appropriate for this purpose. Minor bookkeeping inconsistencies exist: duplicate copies of the same Python file under different paths and mismatched version fields (registry lists 1.0.0 while _meta.json shows 1.0.4), but these are not security-critical.
Instruction Scope
SKILL.md instructions only cover installing the 'arxiv' Python package and running the provided script or using the Python API. The runtime instructions do not read unrelated files or environment variables nor send data to unexpected endpoints. Note: one SKILL.md variant references PowerShell wrapper names (arxiv.ps1, Windows-style examples) that are not included — this is an inconsistency in documentation but not a malicious behavior.
Install Mechanism
There is no automated install spec; the skill is instruction-only and asks the user to pip install the public 'arxiv' package. No downloads from arbitrary URLs or archive extraction are present.
Credentials
The skill requires no environment variables, credentials, or config paths. It writes downloaded PDFs to a Downloads/arxiv directory under the user's home — a reasonable, proportional filesystem access for a download tool.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or persistent platform privileges. It does not modify other skills or system-wide agent settings.
Assessment
This skill appears to do what it says: search arXiv and download PDFs. Before installing, consider: 1) the skill requires you to pip install the third-party 'arxiv' package — confirm you trust that package and its source (PyPI). 2) The script will create and write PDFs to ~/Downloads/arxiv; ensure you are comfortable with that write location. 3) Documentation inconsistencies exist (duplicate files, differing version numbers, and a SKILL.md that references a missing PowerShell wrapper); these are likely packaging/documentation issues, not malicious signs, but you may want to get a clean single-file package or inspect the repository yourself. 4) If you run this in a sensitive environment, restrict network access or review the 'arxiv' package source to be extra cautious.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

📚 Clawdis
Binspython
latestvk97dvpyc6tfpss6vvg4brexdn981t2tp
1.3kdownloads
0stars
1versions
Updated 2mo ago
v1.0.0
MIT-0

ArXiv Research 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
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

Download a paper

# By arXiv ID
python arxiv_search.py download "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 Science
  • physics.* - Physics
  • math.* - Mathematics
  • q-bio.* - Quantitative Biology
  • q-fin.* - Quantitative Finance
  • stat.* - Statistics

Examples

  • Search for consciousness papers: python arxiv_search.py search "consciousness" --max 5
  • Find physics papers: python arxiv_search.py search "quantum" --cats physics --max 10
  • Download paper: python arxiv_search.py 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

Comments

Loading comments...