arxiv-osiris

TotalClaw 作者 totalclaw v1.0.0

从 arXiv.org 搜索并下载研究论文 - OpenClaw 代理的研究版本

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~nantes-arxiv-osiris
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~nantes-arxiv-osiris/file -o nantes-arxiv-osiris.md
# 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

---

## 中文说明

# ArXiv 技能

从 arXiv.org 搜索并下载科学论文——全球最大的免费科学预印本发布平台。

## 功能

- **搜索** 按关键词、标题、摘要检索论文
- **下载** 直接下载 PDF
- **筛选** 按类别筛选(物理、计算机科学、数学等)
- **获取元数据** 包括作者、日期、类别

## 安装

```powershell
# Install Python dependency
pip install arxiv
```

## 用法

### 搜索论文

```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"
```

### 下载论文

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

## 类别

常见的 arXiv 类别:
- `cs.*` - 计算机科学
- `physics.*` - 物理
- `math.*` - 数学
- `q-bio.*` - 定量生物学
- `q-fin.*` - 定量金融
- `stat.*` - 统计学

## 示例

- 搜索意识相关论文:`arxiv.ps1 -search "consciousness" -max 5`
- 查找物理论文:`arxiv.ps1 -search "quantum" -cats "physics" -max 10`
- 下载论文:`arxiv.ps1 -download "1706.03762"`(Attention is All You Need)

## 注意事项

- arXiv 是免费且开放的
- 论文为预印本——可能未经同行评审
- 非常适合及时跟进最新研究