한 번의 명령으로 arXiv 검색 — API Key 없이, Tokens 없이

발행: (2026년 4월 7일 PM 06:46 GMT+9)
3 분 소요
원문: 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

출력: 최신 순으로 정렬된 20개의 논문, 제목, 저자, 발표 날짜, 초록, URL 포함 — 2초 이내에 완료됩니다. 계정 필요 없고, API 키도 없으며, AI 토큰도 소모되지 않습니다. 첫 실행 시 약 30 MB 바이너리를 다운로드하고 캐시합니다; 이후 호출은 즉시 실행됩니다.

작동 원리

arXiv Atom API는 15년 동안 공개되고 안정적으로 운영되어 왔습니다. arxiv/search는 Tap 스킬이며, API를 직접 호출하는 20줄짜리 결정적 프로그램입니다. 한 번 작성하면 비용 $0으로 영원히 실행됩니다.

모든 Tap 스킬은 조합 가능한 Unix 필터입니다. 데이터는 JSON 형태로 흐릅니다:

조합 가능한 필터

검색만

npx -y @taprun/cli arxiv search --keyword "RAG"

검색 → 정렬 → 필터 → 표시

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

각 명령은 stdin에서 JSON을 읽고 stdout에 JSON을 출력합니다. 전통적인 Unix 도구와 정확히 동일합니다.

GitHub Actions – 일일 논문 요약

- 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

기타 커뮤니티 스킬

스킬반환값
arxiv/search --keyword X키워드와 일치하는 논문
github/trending오늘의 트렌딩 레포지토리
reddit/search --keyword X키워드와 일치하는 게시물
stackoverflow/hot인기 질문

Explore and contribute at .

지금 바로 사용해 보기

설치가 필요 없습니다—Node.js가 설치된 어떤 머신에서도 아래 명령을 실행하면 됩니다:

npx -y @taprun/cli arxiv search --keyword "your topic" \
  | npx -y @taprun/cli sort --field published \
  | npx -y @taprun/cli table
0 조회
Back to Blog

관련 글

더 보기 »

단계별 Git 명령 가이드

초기 설정 bash git config --global user.name 'Your Name' git config --global user.email 'your@email.com' 새 저장소 초기화 git init 원격 추가…