From claude-scholar
Fetches structured metadata for an arXiv paper given an ID or URL. Returns JSON with title, authors, published date, categories, and DOI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-scholar:arxiv-metadataThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
./scripts/arxiv_metadata.py <arXiv-ID-or-URL>
Paths are relative to this skill's directory.
Accepts bare IDs (2301.10140), old-style IDs (hep-ph/9901234), or full URLs (https://arxiv.org/abs/2301.10140).
Returns JSON:
{
"arxiv_id": "2301.10140",
"title": "Paper title",
"authors": ["Author One", "Author Two"],
"published": "2023-01-24",
"primary_category": "cs.CL",
"categories": ["cs.CL", "cs.AI"],
"doi": "10.1234/..." or null,
"url": "https://arxiv.org/abs/2301.10140"
}
url prefers the DOI link (https://doi.org/...) when a published DOI exists, otherwise uses the arXiv abstract page.published is the original arXiv submission date (YYYY-MM-DD).npx claudepluginhub yy/claude-scholar --plugin claude-scholarReads and analyzes Hugging Face paper pages or arXiv papers via markdown and API metadata. Automatically activated when a user shares a paper URL or asks for summary/analysis.
Fetches and summarizes AI research papers from Hugging Face Papers or arXiv. Retrieves markdown content and structured metadata including authors, linked models/datasets, GitHub repos, and project pages.
Searches arXiv papers, retrieves metadata, downloads LaTeX source, generates BibTeX citations, and finds citing papers via Semantic Scholar or OpenAlex.