Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

arxiv-doc-builderarxiv 文档生成器

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

192

周安装

8

GitHub Stars

14

下载量

64
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:arxiv-doc-builder(arxiv 文档生成器)
来源仓库:https://github.com/ultimatile/arxiv-skills
仓库路径:skills/arxiv-doc-builder
安装命令:
npx skills add https://github.com/ultimatile/arxiv-skills --skill arxiv-doc-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ultimatile/arxiv-skills --skill arxiv-doc-builder

简介

将 arXiv 论文自动转换为结构化 Markdown 文档。

  • 优先获取 LaTeX 源码以确保数学公式和结构准确性。
  • 支持单双栏等多种排版模式转换,适配 LLM 消费习惯。
  • 需本地安装 pandoc 及相关依赖才能完成完整转换流程。
  • arxiv-doc-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

arXiv Document Builder

Automatically converts arXiv papers into structured Markdown documentation for implementation reference.

Capabilities

This skill automatically:

  1. Fetches paper materials from arXiv

- Attempts to download LaTeX source first (preferred for accuracy) - Falls back to PDF if source is unavailable - Handles all HTTP requests, extraction, and directory setup

  1. Converts to structured Markdown

- LaTeX source → Markdown via pandoc (preserves all math and structure) - PDF → Markdown via text extraction with multiple conversion modes: - Simple single-column conversion (default) - Full double-column conversion for academic papers - Page-wise extraction with mixed column support - Preserves mathematical formulas in MathJax/LaTeX format ($...$, $$...$$) - Maintains section hierarchy and document structure - Includes abstracts, figures, and references

  1. Generates implementation-ready documentation

- Output saved to {ARXIV_ID}/{ARXIV_ID}.md under the output directory (default: current working directory) - Easy to reference during code implementation - Optimized for Claude to read and understand

When to Use This Skill

Invoke this skill when the user requests:

  • "Convert arXiv paper {ID} to markdown"
  • "Fetch and process paper {ID}"
  • "Create documentation for arXiv:{ID}"
  • "I need to read/reference paper {ID}"

How It Works

Single Entry Point

Use the main orchestrator script or the globally installed convert-paper command:

# Using global command (recommended)
convert-paper ARXIV_ID [--output-dir DIR]

# Using script directly
uv run arxiv_doc_builder/convert_paper.py ARXIV_ID [--output-dir DIR]
  • --output-dir: Directory where {ARXIV_ID}/{ARXIV_ID}.md will be created. Default: current working directory (not a papers/ subdirectory).
  • Use absolute paths to control output location precisely.

The orchestrator:

  1. Calls fetch_paper.py to download materials (with automatic source→PDF fallback)
  2. Detects available format (LaTeX source or PDF)
  3. Calls the appropriate converter (convert_latex.py or convert_pdf_simple.py)
  4. Outputs structured Markdown to {output-dir}/{ARXIV_ID}/{ARXIV_ID}.md

All HTTP requests (curl), file extraction (tar), and directory creation (mkdir) are handled automatically.

Automatic Source Detection and Fallback

The fetcher tries LaTeX source first, then PDF:

  • LaTeX source available: Downloads .tar.gz, extracts to papers/{ID}/source/, converts with pandoc
  • PDF only: Downloads PDF to papers/{ID}/pdf/, extracts text with pdfplumber

No manual intervention needed—the skill handles format detection and fallback automatically.

Output Structure

Generated Markdown includes:

  • Title, authors, and abstract
  • Full paper content with section hierarchy
  • Inline math: $f(x) = x^2$
  • Display math: $$\int_0^\infty e^{-x} dx = 1$$
  • Preserved LaTeX commands for complex formulas
  • References section

Output location: {output-dir}/{ARXIV_ID}/{ARXIV_ID}.md (default output-dir is current working directory)

PDF Conversion Scripts

Three specialized scripts for direct PDF conversion:

convert_pdf_simple.py

Convert all pages as single-column layout.

uv run arxiv_doc_builder/convert_pdf_simple.py paper.pdf -o output.md

convert_pdf_double_column.py

Convert all pages as double-column layout (for academic papers).

uv run arxiv_doc_builder/convert_pdf_double_column.py paper.pdf -o output.md

convert_pdf_extract.py

Extract specific pages with optional double-column processing.

# Extract specific pages
uv run arxiv_doc_builder/convert_pdf_extract.py paper.pdf --pages 1-5,10 -o output.md

# Extract with mixed column layouts
uv run arxiv_doc_builder/convert_pdf_extract.py paper.pdf --pages 1-10 --double-column-pages 3-7 -o output.md

Note: --double-column-pages must be a subset of --pages. Invalid page ranges cause immediate error.

Architecture

All three scripts share common conversion logic through pdf_converter_lib.py, ensuring consistent behavior while keeping each script focused on its specific use case.

Advanced: Vision-Based PDF Conversion

For papers with complex mathematical formulas where text extraction fails, a vision-based approach is available as a manual fallback:

# Generate high-resolution images from PDF
python arxiv_doc_builder/convert_pdf_with_vision.py paper.pdf --dpi 300 --columns 2

This creates page images (with optional column splitting) that can be read manually with Claude's vision capabilities for maximum accuracy. This is NOT part of the automatic workflow—use it only when automatic conversion produces poor results.

See references/pdf-conversion.md for details on vision-based conversion.

Troubleshooting: Multiple \documentclass Files

Some arXiv papers (e.g., PRL with supplemental material) contain multiple .tex files, each with its own \documentclass. When this happens, the converter warns:

⚠ Found 2 files with \documentclass:
  [0] main_paper.tex
  [1] supplemental_material.tex
  Non-interactive mode, selecting [0] main_paper.tex

If the wrong file was selected, re-run the LaTeX converter directly with --tex-file:

convert_latex.py ARXIV_ID --source-dir {output-dir}/{ARXIV_ID}/source --tex-file {output-dir}/{ARXIV_ID}/source/correct_file.tex --output {output-dir}/{ARXIV_ID}/{ARXIV_ID}.md

Troubleshooting: pandoc Conversion Failures

When pandoc fails on a LaTeX source, the error may point to \end{document} with unexpected \end. This means pandoc's parser broke down due to a syntax issue elsewhere — \end{document} itself is not the cause. Do NOT attempt broad preprocessing (replacing documentclass, expanding \newcommand, removing environments, etc.) — pandoc handles revtex4/revtex4-2, custom commands, picture environments, and theorem environments correctly.

Diagnosis steps

  1. Binary search for the failing line. Extract the body (\begin{document} to \end{document}), then test pandoc with increasing prefixes to find the first line that causes failure.
  2. Check that line for brace mismatches. The most common cause is an unbalanced { or } in the LaTeX source. LaTeX's TeX engine silently tolerates these, but pandoc's structured parser does not.
  3. Fix only the mismatch and retry. A single-character fix (e.g., removing an orphaned {) is usually sufficient.

Example

The source (see, e.g., {\cite{makhlin}) has an unmatched {. LaTeX compiles fine but pandoc fails. Fix: remove the stray {.

Directory Structure

Output is created under --output-dir (default: current working directory):

{output-dir}/
└── {ARXIV_ID}/
    ├── source/           # LaTeX source files (if available)
    ├── pdf/              # PDF file
    ├── {ARXIV_ID}.md     # Generated Markdown output
    └── figures/          # Extracted figures (if any)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.43%
按下载量换算25

Claude

30.13%
按下载量换算19

Cursor

18.37%
按下载量换算12

Gemini CLI

8.34%
按下载量换算5

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills