
Arxiv Watcher
- 4 installs
- Updated March 23, 2026
- iamzhihuix/zhihui-awesome-skills-open
Helps with ai & agent building tasks.
About
arxiv-watcher is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- arxiv-watcher
- AI & Agent Building
- AI-coding skill
Arxiv Watcher by the numbers
- 4 all-time installs (skills.sh)
- Ranked #13,372 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/iamzhihuix/zhihui-awesome-skills-open --skill arxiv-watcherAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 4 |
|---|---|
| Last updated | March 23, 2026 |
| Repository | iamzhihuix/zhihui-awesome-skills-open ↗ |
What it does
Helps with ai & agent building tasks.
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.
{
"owner": "rubenfb23",
"slug": "arxiv-watcher",
"displayName": "ArXiv Watcher",
"latest": {
"version": "1.0.0",
"publishedAt": 1769434876997,
"commit": "https://github.com/clawdbot/skills/commit/8f7a7c8f69e939e8eb0690c343c17792d97db777"
},
"history": []
}
#!/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"