Install
openclaw skills install arxiv-watchFetch and monitor latest arXiv papers by category, generate summaries, and manage starred papers for easy reference.
openclaw skills install arxiv-watchMonitor and track new papers on arXiv.org by category.
This skill helps you:
# Check latest papers in a category
/arxiv-watcher cs.AI
# Multiple categories
/arxiv-watcher cs.AI cs.CL cs.LG
# View starred papers
/arxiv-watcher --starred
| Category | Description |
|---|---|
| cs.AI | Artificial Intelligence |
| cs.CL | Computation and Language |
| cs.CV | Computer Vision |
| cs.LG | Machine Learning |
| cs.NE | Neural and Evolutionary Computing |
| cs.RO | Robotics |
| cs.SE | Software Engineering |
| Category | Description |
|---|---|
| astro-ph | Astrophysics |
| cond-mat | Condensed Matter |
| hep-ex | High Energy Physics - Experiment |
| hep-th | High Energy Physics - Theory |
| quant-ph | Quantum Physics |
| Category | Description |
|---|---|
| math.AG | Algebraic Geometry |
| math.CO | Combinatorics |
| math.DG | Differential Geometry |
| math.NT | Number Theory |
| math.ST | Statistics Theory |
| Category | Description |
|---|---|
| stat.ML | Machine Learning |
| stat.TH | Statistics Theory |
Full category list: https://arxiv.org/category_taxonomy
python scripts/arxiv_watcher.py fetch <category> [--limit N]
Fetches recent papers from arXiv. Outputs Markdown format with:
python scripts/arxiv_watcher.py star <arxiv_id>
Adds a paper to starred list for later reference.
python scripts/arxiv_watcher.py unstar <arxiv_id>
Removes a paper from starred list.
python scripts/arxiv_watcher.py starred
Lists all starred papers with their details.
Papers are displayed in Markdown format:
## [2403.12345] Paper Title Here
**Authors:** John Doe, Jane Smith
**Category:** cs.AI
**Submitted:** 2024-03-15
**Abstract:**
This paper presents a novel approach to...
**Links:**
- arXiv: https://arxiv.org/abs/2403.12345
- PDF: https://arxiv.org/pdf/2403.12345.pdf
---
Starred papers include a ⭐ marker for easy identification.
When user asks to check arXiv:
arxiv_watcher.py fetch <category>User: "check new papers in cs.AI"
Assistant: Runs fetch command, displays 5-10 recent papers, asks if any should be starred.
User: "star the second one"
Assistant: Parses the arxiv_id from previous output, runs star command, confirms action.
User: "show my starred papers"
Assistant: Runs starred command, displays list with details.
arxiv_watcher.py - Main CLI for fetching and managing papersstarred.json - Persistent storage for starred papers (auto-created)