スキル一覧に戻る
fundamental-physics

arxiv

by fundamental-physics

Plugins for astrophysics coding and analysis

6🍴 1📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: arxiv description: Use when the user mentions 'arxiv' or asks to find, search for, or download arxiv papers (by arxiv ID, author name, or topic), get paper source code, or retrieve LaTeX files from arxiv. Can search for papers to find arxiv IDs when only author/topic is provided, then download them. Prefer source format over PDF.

ArXiv Search and Download Skill

Download and view arXiv paper sources using the arxiv command-line tool.

Requires: requests (pip install requests)

ArXiv ID Format

  • Modern: YYMM.NNNNN (e.g., 2301.07041)
  • Old format: category/YYMMNNN (e.g., astro-ph/0701123)

Downloading Papers

Use the arxiv CLI tool bundled with this skill:

# View all LaTeX source files (.tex, .bib, .bbl) with syntax highlighting
python scripts/arxiv.py 2301.07041

# Save entire source to a directory
python scripts/arxiv.py 2301.07041 --save

# List files in the archive
python scripts/arxiv.py 2301.07041 --list

# View only specific file types
python scripts/arxiv.py 2301.07041 --tex   # Only .tex files
python scripts/arxiv.py 2301.07041 --bib   # Only .bib files
python scripts/arxiv.py 2301.07041 --bbl   # Only .bbl files

The default output (no flags) wraps each file in markdown code blocks with appropriate language tags (latex/bibtex).

Searching ArXiv

# Search by author
python scripts/arxiv.py --search "au:Handley"

# Search by title
python scripts/arxiv.py --search "ti:cosmology"

# Search by category
python scripts/arxiv.py --search "cat:astro-ph.CO"

# Combined search
python scripts/arxiv.py --search "ti:cosmology+AND+au:Planck"

# Limit results (default 10)
python scripts/arxiv.py --search "au:Hinton" -n 5

Search Query Prefixes

PrefixField
ti:Title
au:Author
abs:Abstract
cat:Category
all:All fields

Typical Workflow

  1. Search for papers: python scripts/arxiv.py --search "au:Author"
  2. Pick an arxiv ID from results
  3. View the source: python scripts/arxiv.py <id>
  4. Use --save to extract files locally if needed

Integration with LLM Analysis

After saving source with --save:

python scripts/arxiv.py 2301.07041 --save
code2prompt 2301.07041 --include "*.tex" --output-file /tmp/paper.md

Then pass to external LLMs for analysis.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です