skills/smithery.ai/arxiv-paper-extract

arxiv-paper-extract

SKILL.md

arXiv CS.CV Paper Extraction Skill

Extract papers from arXiv Computer Vision category for a specific date, translate titles to Chinese using a subagent, and save to JSON.

Workflow

Step 1: Download the arXiv page

curl -s "https://arxiv.org/list/cs.CV/recent?skip=0&show=2000" -o /tmp/arxiv_cs_cv.html

Step 2: Parse papers for the target date

Use Python to extract papers. The HTML structure uses <h3> tags for date headers (e.g., <h3>Thu, 25 Dec 2025).

import re
from html import unescape
Installs
2
First Seen
Apr 23, 2026
arxiv-paper-extract from smithery.ai