
Arxiv Watcher
- 8 installs
- 33 repo stars
- Updated April 26, 2026
- bighardperson/computer-science-skills-collection
arxiv-watcher is a skill that searches and summarizes the latest ArXiv research papers and records them to a memory log.
About
This skill queries the ArXiv API to find and summarize the latest research papers by keyword, author, or category. It fetches abstracts, presents findings, and appends each discussed paper to a persistent RESEARCH_LOG.md memory file. A developer uses it for daily research monitoring and building a searchable log of AI papers.
- Searches ArXiv by keyword, author, or category and summarizes abstracts
- Logs every discussed paper to memory/RESEARCH_LOG.md for long-term tracking
- Can deep-dive PDFs via web_fetch when more detail is requested
Arxiv Watcher by the numbers
- 8 all-time installs (skills.sh)
- Ranked #12,269 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 30, 2026 (Skillselion catalog sync)
arxiv-watcher capabilities & compatibility
Free; uses the public ArXiv API and a bundled search script, no API keys mentioned.
- Capabilities
- arxiv reader
- Use cases
- research · web search
- Runs
- Runs locally
- Pricing
- Free
What arxiv-watcher says it does
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
Save to Memory**: Automatically record summarized papers to `memory/RESEARCH_LOG.md` for long-term tracking.
Use `scripts/search_arxiv.sh "<query>"` to get the XML results.
npx skills add https://github.com/bighardperson/computer-science-skills-collection --skill arxiv-watcherAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 8 |
|---|---|
| repo stars | ★ 33 |
| Last updated | April 26, 2026 |
| Repository | bighardperson/computer-science-skills-collection ↗ |
What it does
Search ArXiv and summarize the latest research papers, logging each to a persistent research memory file.
Who is it for?
Researchers wanting a running summary and log of the latest ArXiv papers on chosen topics.
Skip if: Deep single-paper analysis; it summarizes abstracts rather than fully reading each paper.
When should I use this skill?
the user asks for the latest research, specific ArXiv topics, or a daily summary of AI papers.
What you get
- Summarized paper findings
- Appended entries in memory/RESEARCH_LOG.md
By the numbers
- Four workflow steps ending in a mandatory research-log append
Files
ArXiv Watcher
This skill interacts with the ArXiv API to find and summarize the latest research papers.
Capabilities
- Search: Find papers by keyword, author, or category.
- Summarize: Fetch the abstract and provide a concise summary.
- Save to Memory: Automatically record summarized papers to
memory/RESEARCH_LOG.mdfor long-term tracking. - Deep Dive: Use
web_fetchon the PDF link to extract more details if requested.
Workflow
1. Use scripts/search_arxiv.sh "<query>" to get the XML results. 2. Parse the XML (look for <entry>, <title>, <summary>, and <link title="pdf">). 3. Present the findings to the user. 4. MANDATORY: Append the title, authors, date, and summary of any paper discussed to memory/RESEARCH_LOG.md. Use the format:
### [YYYY-MM-DD] TITLE_OF_PAPER
- **Authors**: Author List
- **Link**: ArXiv Link
- **Summary**: Brief summary of the paper and its relevance.Examples
- "Busca los últimos papers sobre LLM reasoning en ArXiv."
- "Dime de qué trata el paper con ID 2512.08769."
- "Hazme un resumen de las novedades de hoy en ArXiv sobre agentes."
Resources
scripts/search_arxiv.sh: Direct API access script.
#!/usr/bin/env bash
# scripts/search_arxiv.sh
QUERY=$1
COUNT=${2:-5}
# Use curl to query ArXiv API
curl -sL "https://export.arxiv.org/api/query?search_query=all:$QUERY&start=0&max_results=$COUNT&sortBy=submittedDate&sortOrder=descending"