arxiv-database
The arxiv-database skill enables searching and retrieving academic preprints from arXiv.org through its Atom API, supporting keyword searches, author lookups, arXiv ID retrieval, category filtering, and PDF downloads across physics, mathematics, computer science, quantitative biology, finance, statistics, electrical engineering, and economics. Use this skill when researching papers in these domains, building literature review datasets, tracking specific authors, or monitoring new submissions in academic subfields.
git clone --depth 1 https://github.com/beita6969/ScienceClaw /tmp/arxiv-database && cp -r /tmp/arxiv-database/skills/arxiv-database ~/.claude/skills/arxiv-databaseSKILL.md
# arXiv Database
## Overview
This skill provides Python tools for searching and retrieving preprints from arXiv.org via its public Atom API. It supports keyword search, author search, category filtering, arXiv ID lookup, and PDF download. Results are returned as structured JSON with titles, abstracts, authors, categories, and links.
## When to Use This Skill
Use this skill when:
- Searching for preprints in CS, ML, AI, physics, math, statistics, q-bio, q-fin, or economics
- Looking up specific papers by arXiv ID (e.g., `2309.10668`)
- Tracking an author's recent preprints
- Filtering papers by arXiv category (e.g., `cs.LG`, `cs.CL`, `stat.ML`)
- Downloading PDFs for full-text analysis
- Building literature review datasets for AI/ML research
- Monitoring new submissions in a subfield
Consider alternatives when:
- Searching for biomedical literature specifically -> Use **pubmed-database** or **biorxiv-database**
- You need citation counts or impact metrics -> Use **openalex-database**
- You need peer-reviewed journal articles only -> Use **pubmed-database**
## Core Search Capabilities
### 1. Keyword Search
Search for papers by keywords in titles, abstracts, or all fields.
```bash
python scripts/arxiv_search.py \
--keywords "sparse autoencoders" "mechanistic interpretability" \
--max-results 20 \
--output results.json
```
With category filter:
```bash
python scripts/arxiv_search.py \
--keywords "transformer" "attention mechanism" \
--category cs.LG \
--max-results 50 \
--output transformer_papers.json
```
Search specific fields:
```bash
# Title only
python scripts/arxiv_search.py \
--keywords "GRPO" \
--search-field ti \
--max-results 10
# Abstract only
python scripts/arxiv_search.py \
--keywords "reward model" "RLHF" \
--search-field abs \
--max-results 30
```
### 2. Author Search
```bash
python scripts/arxiv_search.py \
--author "Anthropic" \
--max-results 50 \
--output anthropic_papers.json
```
```bash
python scripts/arxiv_search.py \
--author "Ilya Sutskever" \
--category cs.LG \
--max-results 20
```
### 3. arXiv ID Lookup
Retrieve metadata for specific papers:
```bash
python scripts/arxiv_search.py \
--ids 2309.10668 2406.04093 2310.01405 \
--output sae_papers.json
```
Full arXiv URLs also accepted:
```bash
python scripts/arxiv_search.py \
--ids "https://arxiv.org/abs/2309.10668"
```
### 4. Category Browsing
List recent papers in a category:
```bash
python scripts/arxiv_search.py \
--category cs.AI \
--max-results 100 \
--sort-by submittedDate \
--output recent_cs_ai.json
```
### 5. PDF Download
```bash
python scripts/arxiv_search.py \
--ids 2309.10668 \
--download-pdf papers/
```
Batch download from search results:
```python
import json
from scripts.arxiv_search import ArxivSearcher
searcher = ArxivSearcher()
# Search first
results = searcher.search(query="ti:sparse autoencoder", max_results=5)
# Download all
for paper in results:
arxiv_id = paper["arxiv_id"]
searcher.download_pdf(arxiv_id, f"papers/{arxiv_id.replace('/', '_')}.pdf")
```
## arXiv Categories
### Computer Science (cs.*)
| Category | Description |
|----------|-------------|
| `cs.AI` | Artificial Intelligence |
| `cs.CL` | Computation and Language (NLP) |
| `cs.CV` | Computer Vision |
| `cs.LG` | Machine Learning |
| `cs.NE` | Neural and Evolutionary Computing |
| `cs.RO` | Robotics |
| `cs.CR` | Cryptography and Security |
| `cs.DS` | Data Structures and Algorithms |
| `cs.IR` | Information Retrieval |
| `cs.SE` | Software Engineering |
### Statistics & Math
| Category | Description |
|----------|-------------|
| `stat.ML` | Machine Learning (Statistics) |
| `stat.ME` | Methodology |
| `math.OC` | Optimization and Control |
| `math.ST` | Statistics Theory |
### Other Relevant Categories
| Category | Description |
|----------|-------------|
| `q-bio.BM` | Biomolecules |
| `q-bio.GN` | Genomics |
| `q-bio.QM` | Quantitative Methods |
| `q-fin.ST` | Statistical Finance |
| `eess.SP` | Signal Processing |
| `physics.comp-ph` | Computational Physics |
Full list: see [references/api_reference.md](references/api_reference.md).
## Query Syntax
The arXiv API uses prefix-based field searches combined with Boolean operators.
**Field prefixes:**
- `ti:` - Title
- `au:` - Author
- `abs:` - Abstract
- `cat:` - Category
- `all:` - All fields (default)
- `co:` - Comment
- `jr:` - Journal reference
- `id:` - arXiv ID
**Boolean operators** (must be UPPERCASE):
```
ti:transformer AND abs:attention
au:bengio OR au:lecun
cat:cs.LG ANDNOT cat:cs.CV
```
**Grouping with parentheses:**
```
(ti:sparse AND ti:autoencoder) AND cat:cs.LG
au:anthropic AND (abs:interpretability OR abs:alignment)
```
**Examples:**
```python
from scripts.arxiv_search import ArxivSearcher
searcher = ArxivSearcher()
# Papers about SAEs in ML
results = searcher.search(
query="ti:sparse autoencoder AND cat:cs.LG",
max_results=50,
sort_by="submittedDate"
)
# Specific author in specific field
results = searcher.search(
query="au:neel nanda AND cat:cs.LG",
max_results=20
)
# Complex boolean query
results = searcher.search(
query="(abs:RLHF OR abs:reinforcement learning from human feedback) AND cat:cs.CL",
max_results=100
)
```
## Output Format
All searches return structured JSON:
```json
{
"query": "ti:sparse autoencoder AND cat:cs.LG",
"result_count": 15,
"results": [
{
"arxiv_id": "2309.10668",
"title": "Towards Monosemanticity: Decomposing Language Models With Dictionary Learning",
"authors": ["Trenton Bricken", "Adly Templeton", "..."],
"abstract": "Full abstract text...",
"categories": ["cs.LG", "cs.AI"],
"primary_category": "cs.LG",
"published": "2023-09-19T17:58:00Z",
"updated": "2023-10-04T14:22:00Z",
"doi": "10.48550/arXiv.2309.10668",
"pdf_url": "http://arxiv.org/pdf/2309.10668v1",
"abs_url": "http://arxiv.org/abs/2309.10668v1",
"comment": "42 pages,Route plain-language requests for Pi, Claude Code, Codex, OpenCode, Gemini CLI, or ACP harness work into either OpenClaw ACP runtime sessions or direct acpx-driven sessions ("telephone game" flow). For coding-agent thread requests, read this skill first, then use only `sessions_spawn` for thread creation.
Use the diffs tool to produce real, shareable diffs (viewer URL, file artifact, or both) instead of manual edit summaries.
|
|
|
|
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.