Search arXiv in One Command — No API Key, No Tokens

Published: (April 7, 2026 at 05:46 AM EDT)
2 min read
Source: Dev.to

Source: Dev.to

npx -y @taprun/cli arxiv search --keyword "LLM" \
  | npx -y @taprun/cli sort --field published \
  | npx -y @taprun/cli table

Output: 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 table

Each 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.json

Other Community Skills

SkillReturns
arxiv/search --keyword XPapers matching keyword
github/trendingTrending repos today
reddit/search --keyword XPosts matching keyword
stackoverflow/hotHot 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
0 views
Back to Blog

Related posts

Read more »

A Practical Guide to nylas timezone info

How It Works These timezone commands use the IANA timezone database compiled into the binary. No network calls, no API keys, no rate limits. They work on airpl...

Gitnova

!open-sourced-ithttps://media2.dev.to/dynamic/image/width=50,height=50,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fupload...