arxiv

Search and retrieve academic papers from arXiv and Semantic Scholar APIs.

Updated Dec 7, 2025
One-click install
npx skills add https://github.com/harlanljones/dotfiles --skill arxiv-harlanljones
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: arxiv
Source: https://github.com/harlanljones/dotfiles/tree/main/dot_hermes/skills/research/arxiv
Command: npx skills add https://github.com/harlanljones/dotfiles --skill arxiv-harlanljones

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Finding relevant academic papers, checking their citation impact, and tracking related research requires juggling multiple websites and APIs. This Skill provides ready-to-use commands for searching arXiv, fetching paper metadata, generating BibTeX citations, and exploring citation networks through Semantic Scholar. ## Core Features & Use Cases - arXiv Search & Retrieval: Query papers by keyword, author, category, or ID using the arXiv REST API, with a Python helper script that parses Atom XML into clean readable output. - Citation Analysis via Semantic Scholar: Fetch citation counts, references, citing papers, author profiles, and paper recommendations using the free Semantic Scholar Graph API. - BibTeX Generation: Convert arXiv metadata into properly formatted BibTeX entries for academic writing. - Use Case: A researcher starting a literature review on GRPO reinforcement learning runs the search script to find the 10 most recent papers, checks each paper's citation count via Semantic Scholar, reads abstracts, and generates BibTeX entries for their bibliography. ## Quick Start Ask the assistant to search arXiv for recent papers on a topic such as "GRPO reinforcement learning" and summarize the top results with authors and citation counts.

Frequently Asked Questions about arxiv

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search arXiv papers from the command line?▼

Use the arXiv REST API with curl, querying export.arxiv.org/api/query with a search_query parameter like all:keyword or au:author. The included search_arxiv.py script wraps this and parses the Atom XML into clean readable output.

How to get citation counts for an arXiv paper?▼

arXiv does not provide citation data, so use the Semantic Scholar Graph API instead. Query api.semanticscholar.org/graph/v1/paper/arXiv:ID with fields like citationCount and influentialCitationCount; no API key is needed at 1 request per second.

Does the arXiv API require an API key or dependencies?▼

No API key is required for either arXiv or basic Semantic Scholar usage. The helper script uses only the Python standard library (urllib and xml.etree), so there are no packages to install.

What are the arXiv API rate limits?▼

arXiv allows roughly one request every three seconds, while Semantic Scholar allows one request per second without a key and up to 100 per second with one. Exceeding these limits can result in throttled or blocked requests.

How do I generate a BibTeX entry from an arXiv paper?▼

Fetch the paper metadata via the arXiv API id_list parameter, then run the provided Python snippet that extracts title, authors, year, and ID to print a formatted @article BibTeX entry with eprint and archivePrefix fields.