From ai-frontier
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-frontier:hf-papers-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search HF Papers for AI/ML research with AI-generated summaries and keywords. No API key required.
Search HF Papers for AI/ML research with AI-generated summaries and keywords. No API key required.
Three modes:
SCRIPT=$(find ~/.claude/plugins -path "*/ai-frontier/skills/hf-papers-search/scripts/search.mjs" 2>/dev/null | head -1)
# Search mode
node "$SCRIPT" "your query" [maxResults]
# Trending papers
node "$SCRIPT" --trending [maxResults]
# Paper detail by arXiv ID
node "$SCRIPT" --detail=<arxivId>
results[].tldr — AI-generated one-sentence summary (from HF)results[].key_methods — AI-extracted keywords/methodsresults[].source_specific.upvotes — community upvote countresults[].code_repos — GitHub repos when availableresults[].source_specific.organization — authoring organization# Search for papers on LoRA
node "$SCRIPT" "low-rank adaptation LoRA" 10
# Get today's trending papers
node "$SCRIPT" --trending 15
# Get details on a specific paper
node "$SCRIPT" --detail=2106.09685
npx claudepluginhub flight505/ai-frontierFetches and summarizes AI research papers from Hugging Face Papers or arXiv. Returns markdown content or structured metadata including authors, linked models/datasets, GitHub repos, and project pages.
Reads 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.
Finds all arXiv papers for a research question using fastCRW's Research API. Use for literature surveys, paper enumeration, citation graph queries, or recovering papers from vague descriptions.