← Back to Skills Marketplace
Arxiv Watcher
by
constx1337
· GitHub ↗
· v1.0.0
· MIT-0
281
Downloads
1
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install arxiv-watch
Description
Fetch and monitor latest arXiv papers by category, generate summaries, and manage starred papers for easy reference.
README (SKILL.md)
\r \r
ArXiv Watcher\r
\r Monitor and track new papers on arXiv.org by category.\r \r
Overview\r
\r This skill helps you:\r
- Fetch latest papers from specific arXiv categories\r
- Generate formatted Markdown summaries\r
- Star/bookmark papers for later reading\r \r
Quick Start\r
\r
# Check latest papers in a category\r
/arxiv-watcher cs.AI\r
\r
# Multiple categories\r
/arxiv-watcher cs.AI cs.CL cs.LG\r
\r
# View starred papers\r
/arxiv-watcher --starred\r
```\r
\r
## Available Categories\r
\r
### Computer Science (cs.*)\r
| Category | Description |\r
|----------|-------------|\r
| cs.AI | Artificial Intelligence |\r
| cs.CL | Computation and Language |\r
| cs.CV | Computer Vision |\r
| cs.LG | Machine Learning |\r
| cs.NE | Neural and Evolutionary Computing |\r
| cs.RO | Robotics |\r
| cs.SE | Software Engineering |\r
\r
### Physics (physics.*)\r
| Category | Description |\r
|----------|-------------|\r
| astro-ph | Astrophysics |\r
| cond-mat | Condensed Matter |\r
| hep-ex | High Energy Physics - Experiment |\r
| hep-th | High Energy Physics - Theory |\r
| quant-ph | Quantum Physics |\r
\r
### Mathematics (math.*)\r
| Category | Description |\r
|----------|-------------|\r
| math.AG | Algebraic Geometry |\r
| math.CO | Combinatorics |\r
| math.DG | Differential Geometry |\r
| math.NT | Number Theory |\r
| math.ST | Statistics Theory |\r
\r
### Statistics (stat.*)\r
| Category | Description |\r
|----------|-------------|\r
| stat.ML | Machine Learning |\r
| stat.TH | Statistics Theory |\r
\r
Full category list: https://arxiv.org/category_taxonomy\r
\r
## Commands\r
\r
### Fetch Latest Papers\r
\r
```bash\r
python scripts/arxiv_watcher.py fetch \x3Ccategory> [--limit N]\r
```\r
\r
Fetches recent papers from arXiv. Outputs Markdown format with:\r
- Paper title and arXiv ID\r
- Authors\r
- Abstract preview (first 200 chars)\r
- Link to full paper\r
\r
### Star Papers\r
\r
```bash\r
python scripts/arxiv_watcher.py star \x3Carxiv_id>\r
```\r
\r
Adds a paper to starred list for later reference.\r
\r
### Unstar Papers\r
\r
```bash\r
python scripts/arxiv_watcher.py unstar \x3Carxiv_id>\r
```\r
\r
Removes a paper from starred list.\r
\r
### View Starred Papers\r
\r
```bash\r
python scripts/arxiv_watcher.py starred\r
```\r
\r
Lists all starred papers with their details.\r
\r
## Output Format\r
\r
Papers are displayed in Markdown format:\r
\r
```markdown\r
## [2403.12345] Paper Title Here\r
\r
**Authors:** John Doe, Jane Smith\r
**Category:** cs.AI\r
**Submitted:** 2024-03-15\r
\r
**Abstract:**\r
This paper presents a novel approach to...\r
\r
**Links:**\r
- arXiv: https://arxiv.org/abs/2403.12345\r
- PDF: https://arxiv.org/pdf/2403.12345.pdf\r
\r
---\r
```\r
\r
Starred papers include a ⭐ marker for easy identification.\r
\r
## Workflow\r
\r
When user asks to check arXiv:\r
\r
1. **Identify categories** - Parse user request for category names\r
2. **Fetch papers** - Run `arxiv_watcher.py fetch \x3Ccategory>`\r
3. **Format output** - Present papers in readable Markdown\r
4. **Offer actions** - Ask if user wants to star any papers\r
\r
### Example Interactions\r
\r
**User:** "check new papers in cs.AI"\r
\r
**Assistant:** Runs fetch command, displays 5-10 recent papers, asks if any should be starred.\r
\r
**User:** "star the second one"\r
\r
**Assistant:** Parses the arxiv_id from previous output, runs star command, confirms action.\r
\r
**User:** "show my starred papers"\r
\r
**Assistant:** Runs starred command, displays list with details.\r
\r
## Resources\r
\r
### scripts/\r
- `arxiv_watcher.py` - Main CLI for fetching and managing papers\r
\r
### assets/\r
- `starred.json` - Persistent storage for starred papers (auto-created)\r
Usage Guidance
This skill appears coherent and does what it claims: it fetches arXiv Atom feeds (export.arxiv.org / arxiv.org), formats results, and stores starred papers in assets/starred.json. It requires no credentials and has no install steps. Before installing or running: 1) confirm you trust the skill source (no homepage provided); 2) note it needs outbound network access to arxiv.org and will create/write assets/starred.json in the skill directory (avoid running in a sensitive/shared directory if you have concerns); 3) ensure a suitable Python environment is available; and 4) review the full script file locally (the provided file listing here was truncated at the end, so verify the script's complete main() dispatch and any remaining lines before granting runtime access).
Capability Analysis
Type: OpenClaw Skill
Name: arxiv-watch
Version: 1.0.0
The arxiv-watch skill is a legitimate tool designed to fetch and track research papers from arXiv.org. The Python script (scripts/arxiv_watcher.py) uses standard libraries to query the official arXiv API and manages a local bookmarking system via a JSON file (assets/starred.json). There is no evidence of data exfiltration, malicious execution, or prompt injection attempts.
Capability Assessment
Purpose & Capability
Name/description, SKILL.md, and the included script all focus on fetching arXiv feeds, formatting results, and managing a local starred list. The requested capabilities (none) match what the skill does. No unrelated credentials, binaries, or config paths are required.
Instruction Scope
SKILL.md instructs the agent to run the bundled CLI to fetch papers and manage starred entries. The runtime behavior described and the script itself only read/write the local assets/starred.json and perform HTTP requests to arxiv.org; there are no instructions to read unrelated files or exfiltrate data to third-party endpoints.
Install Mechanism
There is no install spec (instruction-only). A Python script is included and relies on stdlib modules; nothing is downloaded from external or unknown URLs and no archives are extracted.
Credentials
The skill requests no environment variables or secrets. It performs plain HTTP(S) requests to arxiv.org only and stores starred metadata locally in assets/starred.json. No unrelated credentials or high-privilege paths are requested.
Persistence & Privilege
always is false and the skill does not request persistent platform-wide privileges. It writes only its own assets/starred.json and does not modify other skills or system-wide configurations.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install arxiv-watch - After installation, invoke the skill by name or use
/arxiv-watch - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
init
Metadata
Frequently Asked Questions
What is Arxiv Watcher?
Fetch and monitor latest arXiv papers by category, generate summaries, and manage starred papers for easy reference. It is an AI Agent Skill for Claude Code / OpenClaw, with 281 downloads so far.
How do I install Arxiv Watcher?
Run "/install arxiv-watch" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Arxiv Watcher free?
Yes, Arxiv Watcher is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Arxiv Watcher support?
Arxiv Watcher is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Arxiv Watcher?
It is built and maintained by constx1337 (@constx1337); the current version is v1.0.0.
More Skills