arxiv-watcher

Search and summarize recent ArXiv papers via the ArXiv API.

1|Updated Jul 13, 2026
One-click install
npx skills add https://github.com/HalseyYang/Skills-HY --skill arxiv-watcher-halseyyang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: arxiv-watcher
Source: https://github.com/HalseyYang/Skills-HY/tree/main/arxiv-watcher
Command: npx skills add https://github.com/HalseyYang/Skills-HY --skill arxiv-watcher-halseyyang

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Keeping up with the latest research on ArXiv requires manually browsing categories and reading abstracts, which is time-consuming for researchers and engineers tracking fast-moving fields like AI. ## Core Features & Use Cases - Keyword and Category Search: Query the ArXiv API by keyword, author, or category using a shell script that returns XML results sorted by submission date. - Paper Summarization: Parse titles, abstracts, and PDF links from the API response and present concise summaries, with optional deep dives into full PDFs. - Research Logging: Automatically append every discussed paper's title, authors, date, and summary to a persistent memory/RESEARCH_LOG.md file for long-term tracking. - Use Case: Ask for today's new papers on LLM agents, receive a summarized digest, and have each entry recorded in your research log for future reference. ## Quick Start Ask the assistant to search ArXiv for the latest papers on a topic such as LLM reasoning and summarize the top results.

Frequently Asked Questions about arxiv-watcher

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

FAQPage Schema
How do I search ArXiv papers by keyword from the command line?

Run the search_arxiv.sh script with a query string, which calls the ArXiv API at export.arxiv.org and returns XML results sorted by submission date. An optional second argument controls how many results are returned, defaulting to five.

How to get a daily summary of new AI papers from ArXiv?

Ask for the latest papers on a topic such as agents or LLM reasoning, and the skill queries the ArXiv API sorted by newest submissions. Each paper's abstract is summarized and logged to memory/RESEARCH_LOG.md for ongoing tracking.

Can I look up a specific ArXiv paper by its ID?

Yes, you can ask about a specific paper ID such as 2512.08769, and the skill retrieves its title, authors, and abstract from ArXiv. It can also fetch the PDF link for a deeper read of the full text.

What are the limitations of the ArXiv API search script?

The script relies on curl and network access to export.arxiv.org, so it fails offline. It returns raw XML that must be parsed for entries, and the ArXiv API rate-limits frequent requests, so large batch queries may be throttled.