Search arXiv in One Command — No API Key, No Tokens
Source: Dev.to
Quick One‑Liner Search
npx -y @taprun/cli arxiv search --keyword "LLM" \
| npx -y @taprun/cli sort --field published \
| npx -y @taprun/cli tableOutput: 20 papers sorted newest‑first, with title, authors, published date, abstract, and URL — in under 2 seconds. No account, no API key, no AI tokens consumed. The first run downloads a ~30 MB binary and caches it; subsequent calls are instant.
How It Works
The arXiv Atom API has been public and stable for 15 years. arxiv/search is a Tap skill—a 20‑line deterministic program that calls the API directly. It was written once and runs forever at $0.
Every Tap skill is a composable Unix filter. Data flows as JSON:
Composable Filters
Search Only
npx -y @taprun/cli arxiv search --keyword "RAG"Search → Sort → Filter → Display
npx -y @taprun/cli arxiv search --keyword "RAG" \
| npx -y @taprun/cli sort --field published \
| npx -y @taprun/cli filter --field published --gt "2025-01-01" \
| npx -y @taprun/cli tableEach command reads JSON from stdin and writes JSON to stdout, exactly like traditional Unix tools.
GitHub Actions – Daily Paper Digest
- name: Paper digest
run: |
npx -y @taprun/cli arxiv search --keyword "LLM agents" \
| npx -y @taprun/cli sort --field published \
| npx -y @taprun/cli limit --n 5 \
> papers.jsonOther Community Skills
| Skill | Returns |
|---|---|
arxiv/search --keyword X | Papers matching keyword |
github/trending | Trending repos today |
reddit/search --keyword X | Posts matching keyword |
stackoverflow/hot | Hot questions |
Explore and contribute at .
Try It Now
No installation required—just run the command on any machine with Node.js:
npx -y @taprun/cli arxiv search --keyword "your topic" \
| npx -y @taprun/cli sort --field published \
| npx -y @taprun/cli table