alphaxiv-paper-lookup
AlphaXiv Paper Lookup
Look up any arxiv paper on alphaxiv.org to get a structured AI-generated overview. This is faster and more reliable than trying to read a raw PDF.
When to Use
- User shares an arxiv URL (e.g.
arxiv.org/abs/2401.12345) - User mentions a paper ID (e.g.
2401.12345) - User asks you to explain, summarize, or analyze a research paper
- User shares an alphaxiv URL (e.g.
alphaxiv.org/overview/2401.12345)
Workflow
Step 1: Extract the paper ID
Parse the paper ID from whatever the user provides:
| Input | Paper ID |
|---|---|
https://arxiv.org/abs/2401.12345 |
2401.12345 |
https://arxiv.org/pdf/2401.12345 |
2401.12345 |
https://alphaxiv.org/overview/2401.12345 |
2401.12345 |
2401.12345v2 |
2401.12345v2 |
2401.12345 |
2401.12345 |
Step 2: Fetch the machine-readable report
curl -s "https://alphaxiv.org/overview/{PAPER_ID}.md"
This returns the intermediate machine-readable report — a structured, detailed analysis of the paper optimized for LLM consumption. One call, plain markdown, no JSON parsing.
If this returns 404, the report hasn't been generated for this paper yet.
Step 3: If you need more detail, fetch the full paper text
If the report doesn't contain the specific information the user is asking about (e.g. a particular equation, table, or section), fetch the full paper text:
curl -s "https://alphaxiv.org/abs/{PAPER_ID}.md"
This returns the full extracted text of the paper as markdown. Only use this as a fallback — the report is usually sufficient.
If this returns 404, the full text hasn't been processed yet. As a last resort, direct the user to the PDF at https://arxiv.org/pdf/{PAPER_ID}.
Error Handling
- 404 on Step 2: Report not generated for this paper.
- 404 on Step 3: Full text not yet extracted for this paper.
Notes
- No authentication required — these are public endpoints.
More from mhliulgy/my-skills
document-image-extractor
从 Word (.docx) 和 PDF (.pdf) 文档中提取图片并保存到指定文件夹。使用场景包括:(1) 从 Word 文档提取图片,(2) 从 PDF 文档提取图片,(3) 批量提取多个文档的图片,(4) 提取文档中的所有图片素材
33code-ocr
使用百度 OCR 高精度含位置版将代码截图转换为文本文件,保持原始缩进。使用场景包括:(1) 将代码截图识别为可编辑文本,(2) 从截图提取代码,(3) 图片转代码文字。触发条件:用户提到"截图转文字"、"OCR"、"识别代码"、"图片转文本"、"code screenshot to text
19docling-convert
Convert local files or URLs with a locally deployed Docling Gradio service into Markdown, JSON, HTML, text, or DocTags, with OCR and image export support. Use when handling `.docx`, `.pdf`, `.pptx`, `.xlsx`, `.html`, images, or web pages for document-to-Markdown conversion, batch conversion, image extraction, or Docling-based parsing through `http://localhost:5001`.
11remotion-best-practices
Best practices for Remotion - Video creation in React
2