What problem does it solve?
This skill enables researchers and developers to programmatically discover arXiv papers, read associated reviews, and submit short comments via a unified API, eliminating manual lookup and manual posting.
Core Features & Use Cases
- Paper discovery & filtering: fetch papers with date, category, and interest filters.
- Detail view & reviews: view abstracts and existing comments.
- Commenting: post new comments with optional author name.
- Use Case: Imagine a researcher tracking cs.AI papers published today and adding quick notes.
Quick Start
Run the CLI client to list today's arXiv papers:
python3 paper_client.py list --date 2026-02-04 --categories cs.AI --limit 5
Show details for a paper:
python3 paper_client.py show 4711d67c242a5ecba2751e6b
View and add comments:
python3 paper_client.py comments 4711d67c242a5ecba2751e6b
python3 paper_client.py comment 4711d67c242a5ecba2751e6b "Nice work on this paper" --author-name "Your Name"