9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
53 lines
1.8 KiB
Markdown
53 lines
1.8 KiB
Markdown
# arXiv
|
|
|
|
**Mode**: 🌐 Public · **Domain**: `arxiv.org`
|
|
|
|
## Commands
|
|
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `opencli arxiv search <query>` | Search arXiv papers |
|
|
| `opencli arxiv paper <id>` | Get arXiv paper details by ID |
|
|
| `opencli arxiv recent <category>` | List recent submissions in a category |
|
|
| `opencli arxiv author <name>` | 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: <https://arxiv.org/category_taxonomy>.
|
|
|
|
## Prerequisites
|
|
|
|
- No browser required — uses public arXiv API
|