# arXiv **Mode**: ๐ŸŒ Public ยท **Domain**: `arxiv.org` ## Commands | Command | Description | |---------|-------------| | `opencli arxiv search ` | Search arXiv papers | | `opencli arxiv paper ` | Get arXiv paper details by ID | | `opencli arxiv recent ` | List recent submissions in a category | | `opencli arxiv author ` | List papers by a given author (newest first) | ## Usage Examples ```bash # Search for papers opencli arxiv search "transformer attention" --limit 10 # Get full paper details (full abstract, all authors, primary/all categories, pdf url) opencli arxiv paper 1706.03762 # Newest papers in a category, sorted by submitted date desc opencli arxiv recent cs.CL --limit 10 opencli arxiv recent math.PR --limit 5 # Newest papers by an author (best-effort fuzzy match โ€” try alternate spellings if empty) opencli arxiv author "Yoshua Bengio" --limit 20 opencli arxiv author "Y Bengio" --limit 5 # JSON output opencli arxiv search "LLM" -f json ``` ## Output Columns | Command | Columns | |---------|---------| | `paper` | `id, title, authors, published, updated, primary_category, categories, abstract, comment, pdf, url` | | `search` | `id, title, authors, published, primary_category, url` | | `recent` | `id, title, authors, published, primary_category, url` | | `author` | `id, title, authors, published, primary_category, url` | `paper` returns the full abstract and full author list. `search`/`recent` are list-style outputs that omit the abstract for readability โ€” pipe an id into `paper` for the full record. ## Common Categories `cs.AI`, `cs.CL`, `cs.LG`, `cs.CV`, `cs.RO`, `stat.ML`, `math.PR`, `math.ST`, `q-bio.NC`, `econ.TH`, `physics.comp-ph`. Full list: . ## Prerequisites - No browser required โ€” uses public arXiv API