SKILL.md
arXiv CLI Tools
Overview
arxiv-cli-tools is a Python command-line interface for searching and downloading papers from arXiv.org. It wraps the arxiv Python client library into convenient CLI commands, enabling researchers to search by keyword, author, or category, view abstracts, and batch-download PDFs directly from the terminal. No API key is required.
Installation
# Recommended: isolated install with pipx
pipx install arxiv-cli-tools
# Alternative: pip
pip install arxiv-cli-tools
# Verify installation
arxiv-cli --help
Searching Papers
Basic Search
# Search by keyword (default: 10 results)
arxiv-cli search "transformer attention mechanism"
# Limit results
arxiv-cli search "quantum computing" -n 5
# Show abstracts in results
arxiv-cli search "prompt engineering" -n 5 --summary
Filtered Search
# Filter by author
arxiv-cli search "attention mechanism" --authors "Vaswani"
# Filter by arXiv category
arxiv-cli search "neural networks" --categories "cs.LG,cs.AI"
# Combine filters
arxiv-cli search "protein folding" --categories "q-bio" -n 20 --summary
Common arXiv Categories
| Prefix | Field | Popular Subcategories |
|---|---|---|
cs | Computer Science | cs.AI, cs.CL, cs.CV, cs.LG, cs.SE |
math | Mathematics | math.ST, math.OC, math.PR |
physics | Physics | physics.comp-ph, hep-th, cond-mat |
stat | Statistics | stat.ML, stat.ME, stat.TH |
q-bio | Quantitative Biology | q-bio.BM, q-bio.GN |
