Download and summarize academic papers from arXiv
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill paper-summarization --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Paper Summarization?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-paper-summarization)More formats (shields.io, HTML) on the badges page.
---
name: paper-summarization
description: "Download and summarize academic papers from arXiv"
---
# Paper Summarization
## Download from arXiv
```python
import urllib.request, xml.etree.ElementTree as ET
url = "http://export.arxiv.org/api/query?id_list=2303.08774"
resp = urllib.request.urlopen(url)
root = ET.fromstring(resp.read())
ns = {"a": "http://www.w3.org/2005/Atom"}
title = root.find(".//a:title", ns).text
summary = root.find(".//a:summary", ns).text
```
## Structured Extraction
Extract: problem, method, results, contribution, limitations
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!