← 返回
AI智能 中文

HF Papers

Browse trending papers, search by keyword, and get paper details from Hugging Face Papers
浏览热门论文,通过关键词搜索,并从 Hugging Face Papers 获取论文详情。
willamhou
AI智能 clawhub v1.0.3 1 版本 100000 Key: 无需
★ 0
Stars
📥 709
下载
💾 11
安装
1
版本
#latest

概述

hf-papers

Browse, search, and analyze papers from the Hugging Face Papers platform. Get trending papers, search by topic, and retrieve detailed metadata including community engagement and linked resources.

Description

This skill wraps the Hugging Face Papers public API. It provides access to daily trending papers, keyword search, paper details (abstract, authors, upvotes, GitHub repos, project pages), and discussion comments. No authentication required.

For full paper text, use the returned arXiv ID with the arxiv-reader skill.

Results are cached locally (~/.cache/hf-papers/) for fast repeat access.

Usage Examples

  • "What are today's trending papers on Hugging Face?"
  • "Search Hugging Face Papers for diffusion models"
  • "Get details for paper 2401.12345 on HF"
  • "Show me comments on HF paper 2405.67890"

Process

  1. Discover — Use hf_daily_papers to see what's trending today
  2. Search — Use hf_search_papers to find papers on a topic
  3. Inspect — Use hf_paper_detail to get full metadata for a specific paper
  4. Discuss — Use hf_paper_comments to read community discussion
  5. Deep read — Use arxiv_fetch (from arxiv-reader) with the paper's arXiv ID for full text

Tools

hf_daily_papers

Get today's trending papers from Hugging Face.

Parameters:

  • limit (number, optional): Max papers to return (default: 20, max: 100)
  • sort (string, optional): Sort by upvotes or date (default: upvotes)

Returns: { papers: [{ id, title, summary, upvotes, authors, publishedAt, githubRepo?, projectPage?, ai_summary?, ai_keywords? }], count: number }

Example:

{ "limit": 10, "sort": "upvotes" }

hf_search_papers

Search Hugging Face Papers by keyword.

Parameters:

  • query (string, required): Search query

Returns: { papers: [{ id, title, summary, upvotes, authors, publishedAt, githubRepo?, projectPage?, ai_summary? }], query: string, count: number }

Example:

{ "query": "multimodal reasoning" }

hf_paper_detail

Get detailed metadata for a specific paper.

Parameters:

  • paper_id (string, required): Paper ID (arXiv ID, e.g. 2401.12345)

Returns: { id, title, summary, authors, publishedAt, upvotes, numComments, githubRepo?, githubStars?, projectPage?, ai_summary?, ai_keywords?, organization? }

Example:

{ "paper_id": "2401.12345" }

hf_paper_comments

Get discussion comments for a paper.

Parameters:

  • paper_id (string, required): Paper ID (arXiv ID)

Returns: { paper_id, comments: [{ author, content, createdAt }], count: number }

Example:

{ "paper_id": "2401.12345" }

Notes

  • All results are cached locally — repeat requests are instant (15-minute TTL for daily/search, 1-hour for details)
  • Paper IDs are arXiv IDs — use with arxiv-reader skill for full LaTeX text
  • No authentication required; uses HF public API
  • Daily papers update throughout the day as the community submits and upvotes

版本历史

共 1 个版本

  • v1.0.3 当前
    2026-03-29 22:35 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 714 📥 244,006
ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 837 📥 213,304
content-creation

LaTeX Compiler

willamhou
使用 pdflatex、xelatex 或 lualatex 将 LaTeX 文档编译为 PDF,支持模板。
★ 0 📥 1,033