huggingface-papers

Fetches Hugging Face paper pages and arXiv metadata via the papers API.

507|40|Updated Apr 26, 2026
One-click install
npx skills add https://github.com/waybarrios/opencode-power-pack --skill huggingface-papers-waybarrios
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: huggingface-papers
Source: https://github.com/waybarrios/opencode-power-pack/tree/main/skills/huggingface-papers
Command: npx skills add https://github.com/waybarrios/opencode-power-pack --skill huggingface-papers-waybarrios

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Reading and analyzing AI research papers requires manually navigating arXiv pages, PDFs, and scattered metadata. This Skill lets you fetch Hugging Face paper pages as markdown and query structured metadata such as authors, linked models, datasets, Spaces, GitHub repos, and project pages through the Hugging Face papers API. ## Core Features & Use Cases - Markdown Paper Retrieval: Fetch any paper page as clean markdown via the .md endpoint or an Accept: text/markdown header, with automatic fallback to arXiv sources. - Structured Metadata Queries: Retrieve authors, summaries, upvotes, linked models/datasets/spaces, GitHub repos, and project pages as JSON from /api/papers/{PAPER_ID}. - Discovery and Management: Search papers semantically, list the Daily Papers feed, index new arXiv papers, claim authorship, and update paper links with an HF token. - Use Case: A user shares https://arxiv.org/abs/2602.08025 and asks for a summary. The Skill parses the arXiv ID, fetches the markdown content, and pulls linked models and datasets to produce a complete analysis. ## Quick Start Summarize the Hugging Face paper at https://huggingface.co/papers/2602.08025 and list its linked models and datasets.

Frequently Asked Questions about huggingface-papers

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get a Hugging Face paper page as markdown?▼

Fetch the markdown version by requesting https://huggingface.co/papers/{PAPER_ID}.md with curl, or send an Accept: text/markdown header to the normal paper page URL. This relies on the arXiv HTML version of the paper when available.

How do I find models and datasets linked to an arXiv paper?▼

Query the Hugging Face API with an arXiv filter: use /api/models?filter=arxiv:{PAPER_ID} for models, /api/datasets?filter=arxiv:{PAPER_ID} for datasets, and /api/spaces?filter=arxiv:{PAPER_ID} for Spaces.

Does the Hugging Face papers API require authentication?▼

Public paper pages and read endpoints like /api/papers/{PAPER_ID} work without authentication. Write operations such as claiming authorship, indexing papers, and updating paper links require an Authorization: Bearer $HF_TOKEN header.

Why does a Hugging Face paper page return 404?▼

A 404 means the paper is not yet indexed on hf.co/papers. Verify the extracted arXiv ID including any version suffix, then fall back to the arXiv abstract page at arxiv.org/abs/{PAPER_ID} or the PDF for the original source.

Can I search Hugging Face papers by keyword?▼

Yes, the /api/papers/search endpoint performs hybrid semantic and full-text search over paper titles, authors, and content. Pass a query string with the q parameter (max 250 characters) and a limit between 1 and 120.