guangzhaoli avatar

arxiv-paper-extract

Extract, translate and save arXiv CS.CV papers for a specific date. Use when user asks to fetch arXi

提供方 guangzhaoli|开源

arXiv CS.CV Paper Extraction Skill

A Claude Code skill for extracting and translating arXiv Computer Vision papers.

中文文档

Overview

This skill automates the extraction of papers from arXiv's Computer Vision (cs.CV) category for a specific date, translates titles to Chinese using AI, and saves the results in a structured JSON format.

Features

  • Automated Paper Extraction: Fetches papers from arXiv cs.CV category
  • Date-specific Filtering: Extracts papers for any specific date
  • AI-powered Translation: Uses Claude subagent to translate paper titles to Chinese
  • Structured Output: Saves papers in clean JSON format with both English and Chinese titles

Installation

As a Claude Code Skill

Copy this directory to your Claude Code skills folder:

cp -r arxiv_extract_skill ~/.claude/skills/

Standalone Script

The extraction script can be used independently:

python scripts/extract_papers.py --day 25 --month Dec --year 2025

Usage

Via Claude Code

Simply ask Claude to extract arXiv papers:

Extract arXiv CS.CV papers for December 25, 2025

or in Chinese:

提取2025年12月25日的arXiv cs.CV论文

Command Line

# Basic usage
python scripts/extract_papers.py --day 25 --month Dec --year 2025

# Custom output path
python scripts/extract_papers.py --day 25 --month Dec --year 2025 --output ~/my_papers/papers.json

Parameters

ParameterDescriptionRequiredDefault
--dayDay of month (1-31)Yes-
--monthMonth (Jan, Feb, ..., Dec)Yes-
--yearYearNo2025
--outputCustom output file pathNo~/paper_list/YYYY-MM-DD.json

Output Format

Papers are saved to ~/paper_list/YYYY-MM-DD.json:

[
  {
    "id": "https://arxiv.org/abs/2512.21338",
    "title_en": "HiStream: Efficient High-Resolution Video Generation via Redundancy-Eliminated Streaming",
    "title_cn": "HiStream:通过消除冗余的流式传输实现高效高分辨率视频生成"
  }
]

Workflow

  1. Download: Fetches the arXiv cs.CV recent submissions page
  2. Parse: Extracts paper IDs and titles for the specified date
  3. Save: Stores extracted papers in JSON format
  4. Translate: Uses Claude Task subagent to translate titles to Chinese

Translation Guidelines

The translation preserves:

  • Model names: SAM, SAM2, NeRF, CLIP, Transformer, Mamba, Diffusion, etc.
  • Acronyms: VLM, LLM, 3D, 2D, 6DoF, MRI, CT, GAN, CNN, RNN, etc.
  • Benchmark names: COCO, ImageNet, KITTI

File Structure

arxiv_extract_skill/
├── SKILL.md           # Skill definition for Claude Code
├── examples.md        # Usage examples
├── scripts/
│   └── extract_papers.py  # Standalone extraction script
├── README.md          # This file
└── readme_zh.md       # Chinese documentation

Requirements

  • Python 3.7+
  • curl (for downloading arXiv pages)
  • Claude Code (for skill usage and translation)

License

MIT License