smithery/sdbuch

arxiv-html

Convert any arxiv URL (abs, pdf, versioned) to HTML format for better parsing. Use when you encounter arxiv.org URLs that need to be fetched or read.

Installation

$ npx skills add smithery/sdbuch --skill arxiv-html

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/sdbuch.

npx skills add smithery/sdbuch

Browse all from smithery/sdbuch

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash(python3:*)
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,095 B
  • docs SUMMARY.md 167 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

ArXiv URL to HTML Conversion

When to Use

Use this whenever you see an arxiv URL and need to fetch or parse its content. The HTML version is much better for content extraction than PDF.

How to Convert

Run the conversion script:

python3 ~/.claude/skills/arxiv-html/convert.py "URL"

Conversion Rules

Input Format Example Output
abs arxiv.org/abs/2401.12345 arxiv.org/html/2401.12345
pdf arxiv.org/pdf/2401.12345.pdf arxiv.org/html/2401.12345
versioned arxiv.org/abs/2401.12345v2 arxiv.org/html/2401.12345v2

Version Handling

  • If URL has version (v1, v2, etc.), preserve it
  • If no version, get latest (no version suffix)

Fallback Behavior

  • Try HTML URL first (best for parsing)
  • If HTML returns 404 or fails, use abs URL instead (older papers may not have HTML)