From claude-scholar
Fetches structured JSON metadata for arXiv papers from ID or URL, including title, authors, published date, categories, DOI, and links. Use when referencing papers in docs or research.
npx claudepluginhub yy/claude-scholar --plugin claude-scholarThis skill uses the workspace's default tool permissions.
```bash
Fetches and analyzes Hugging Face paper pages or arXiv papers using markdown and Papers API metadata. Activates on HF paper/arXiv URLs/IDs or AI research queries.
Fetches Hugging Face paper pages as markdown and API metadata like authors, linked models/datasets/spaces, GitHub repos. Use for HF/arXiv URLs or AI paper summarization/analysis.
Fetches BibTeX entries from arXiv by ID/URL or Semantic Scholar by title search. Outputs standard @article entries for .bib files, with batch support and custom keys.
Share bugs, ideas, or general feedback.
./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).