arxiv

Search arXiv paper metadata by keywords, author, category, or ID.

Updated May 10, 2026
One-click install
npx skills add https://github.com/Mateus2411/Hermes-PersonalBot --skill arxiv-mateus2411
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: arxiv
Source: https://github.com/Mateus2411/Hermes-PersonalBot/tree/main/skills/research/arxiv
Command: npx skills add https://github.com/Mateus2411/Hermes-PersonalBot --skill arxiv-mateus2411

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

It helps you quickly discover relevant research papers on arXiv by topic, author, category, or specific IDs, and then extract usable metadata like titles, authors, abstracts, and links.

Core Features & Use Cases

  • Search arXiv via the public REST API using keywords (query), author names, categories (e.g., cs.AI), or direct arXiv IDs.
  • Clean and structured output by parsing the returned Atom XML into readable fields (title, authors, dates, categories, abstract).
  • Read paper content by pairing arXiv metadata retrieval with web extraction of the abstract page or the PDF when you need to go deeper.

Use case: You’re preparing a literature review on reinforcement learning and need the latest 10 papers from recent submissions; you search, skim abstracts, and open the PDFs for the most promising results.

Quick Start

Run the command: python scripts/search_arxiv.py "GRPO reinforcement learning" --max 5 to get a clean list of the most relevant arXiv papers.

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 by author or category?

Search arXiv papers by passing author names or category codes (e.g., cs.AI) as query parameters to the public REST API, which returns matching paper metadata including titles, authors, and abstracts.

What is the best way to retrieve arXiv paper metadata in bulk?

Retrieve arXiv paper metadata in bulk by supplying multiple direct arXiv IDs to the search query, which fetches and parses the Atom XML output into structured readable fields for each ID.

Can I parse arXiv Atom XML output into readable abstracts and links?

Parse arXiv Atom XML output into readable abstracts and links by using the Skill's internal XML parser, which safely extracts titles, authors, dates, categories, and PDF links into deterministic command-line output.

Does the arXiv search API support filtering by specific subject categories?

The arXiv search API supports filtering by specific subject categories by passing the category code as a parameter, allowing targeted literature discovery within academic research domains.

How do I find the latest arXiv submissions on a specific research topic?

Find the latest arXiv submissions on a specific research topic by running a keyword query through the export API, which returns recent papers sorted by relevance with clean metadata for literature review workflows.

What are the limitations of using the arXiv REST API for paper search?

Limitations of using the arXiv REST API for paper search include relying on the public export endpoint's rate limits and only returning metadata fields available in the Atom XML, without full-text search capabilities.