🦀 ClawHub
该 Skill 支持基于关键词的学术论文检索,可以设置发表时间范围与数量 并将论文下载到指定目录,帮助用户快速获取目标领域(如大模型)的最新或代表性研究成果。This skill enables keyword-based academic paper retrieval with optional constraints on time range and result size and dow
by @ppingzhang
Search and download related arXiv papers by topic plus date range, or from a seed paper title/id. Use when user asks to crawl related papers, collect arXiv a...
TERMINAL
clawhub install paper-search-and-download📖 About This Skill
name: arxiv-related-papers description: Search and download related arXiv papers by topic plus date range, or from a seed paper title/id. Use when user asks to crawl related papers, collect arXiv articles, or bulk download PDFs into an arxiv folder with structured filenames.
arXiv Related Papers Downloader
What this skill does
topic + time range, or
- seed paper (arXiv id or title)
arxiv/.versionDate-title.pdf, where versionDate is vN_YYYYMMDD.When to use
Use this skill when the user asks to:
Required user input
The user must provide one of these modes:
1. Topic mode
- topic
- start date (YYYY-MM-DD)
- end date (YYYY-MM-DD)
2. Seed paper mode
- seed arXiv id (preferred) or seed title
- optional start date / end date
Optional:
max results (default: 20)Execution steps
1. Confirm missing parameters with the user. 2. Run the script from workspace root:
# Topic mode
python ./arxiv-related-papers/scripts/download_arxiv.py \
--topic "graph neural network" \
--start-date 2024-01-01 \
--end-date 2024-12-31 \
--max-results 20Seed mode by arXiv id
python ./arxiv-related-papers/scripts/download_arxiv.py \
--seed-id "2401.12345v1" \
--max-results 20Seed mode by title
python ./arxiv-related-papers/scripts/download_arxiv.py \
--seed-title "Attention Is All You Need" \
--start-date 2018-01-01 \
--end-date 2024-12-31 \
--max-results 20
3. Report back: - how many papers were found; - how many PDFs were downloaded; - the output directory path.
Output location and naming
./arxiv/ (auto-created if missing)v1_20240213-Your_Paper_Title.pdf
- v3_20231105-Your_Paper_Title.pdf