| name | hf-papers-search |
| description | Search Hugging Face Papers for AI/ML research with AI-generated summaries, keywords, community upvotes, and trending papers. Use when Claude needs community-curated research, AI-generated paper summaries, or trending ML papers. |
| keywords | ["huggingface","papers","research","trending","ai-summary","ai-keywords","machine-learning","community"] |
Hugging Face Papers Search
Search HF Papers for AI/ML research with AI-generated summaries and keywords. No API key required.
Three modes:
- Search — find papers by query
- Trending — get today's trending papers from HF Daily Papers
- Detail — get full info on a specific paper by arXiv ID
Usage
SCRIPT=$(find ~/.claude/plugins -path "*/ai-frontier/skills/hf-papers-search/scripts/search.mjs" 2>/dev/null | head -1)
node "$SCRIPT" "your query" [maxResults]
node "$SCRIPT" --trending [maxResults]
node "$SCRIPT" --detail=<arxivId>
When to Use
- Finding papers with AI-generated summaries (tldr) and keywords
- Browsing trending ML papers (community-curated via upvotes)
- Getting AI-extracted keywords for a paper (maps to key methods)
- Discovering papers from specific organizations (Google, Meta, etc.)
- Finding papers that have associated GitHub repos
Key Fields
results[].tldr — AI-generated one-sentence summary (from HF)
results[].key_methods — AI-extracted keywords/methods
results[].source_specific.upvotes — community upvote count
results[].code_repos — GitHub repos when available
results[].source_specific.organization — authoring organization
Examples
node "$SCRIPT" "low-rank adaptation LoRA" 10
node "$SCRIPT" --trending 15
node "$SCRIPT" --detail=2106.09685