← 返回 Skills 市场
lifei68801

arXiv Paper Digest

作者 lifei68801 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
301
总下载
1
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install arxiv-digest
功能描述
Daily AI/ML paper digest from HuggingFace Papers Trending with accessible interpretations. Fetch trending papers from arXiv, provide plain-language summaries...
使用说明 (SKILL.md)

arXiv Paper Digest

Daily AI/ML trending papers with accessible interpretations. Never miss important research again.

What It Does

  • Fetch trending papers from HuggingFace Papers Trending (real-time hot papers)
  • Smart ranking by combining trending position, upvotes, and freshness
  • Plain-language summaries - one-sentence takeaways, key innovations, why it matters
  • Automated delivery via cron - daily QQ/Notion push
  • Deduplication - tracks history, no repeats

Quick Start

Check Dependencies

python3 --version && curl --version

Basic Usage

# Today's top 5 trending AI papers (Chinese)
python3 scripts/fetch_papers.py --days 1 --limit 5 --lang zh

# Custom categories
python3 scripts/fetch_papers.py --category cs.AI --category cs.CV --days 7 --limit 10

# Markdown output
python3 scripts/fetch_papers.py --days 1 --limit 5 --output markdown

In OpenClaw Agent

Just say:

"今天有什么热门 AI 论文"

The agent will automatically:

  1. Fetch trending papers from HuggingFace
  2. Rank by combined score
  3. Generate accessible summaries

Commands Reference

Command Description
python3 scripts/fetch_papers.py --days 1 --limit 5 Today's top 5 papers
--category cs.AI --category cs.CL Custom categories
--days 7 Last 7 days
--lang zh Chinese summaries (default)
--lang en English summaries
--output json JSON format
--output markdown Markdown format

How It Works

Ranking Algorithm

Papers sorted by combined score:

Score Type Range Description
Position 0-100 Higher trending rank = higher score
Upvote 0-50 More community votes = higher score
Freshness 0-30 Newer papers get bonus

This ensures both latest and hottest papers surface.

Processing Pipeline

HuggingFace Papers API
         ↓
    Fetch Trending
         ↓
    Score & Rank
         ↓
    Deduplication (history file)
         ↓
    Generate Summaries
         ↓
    Output (JSON/Markdown)

Interpretation Template

Each paper includes:

### 📄 {Title}

**One-sentence summary**: {Core contribution, \x3C20 words}

**Key innovations**:
1. {Technical breakthrough}
2. {Method improvement}

**Plain-language explanation**:
{200-300 words in everyday language}

**Why it matters**:
{50-100 words on practical significance}

---

Cron Integration

Daily automated digest:

{
  "name": "arxiv-daily",
  "schedule": { "kind": "cron", "expr": "0 12 * * *", "tz": "Asia/Shanghai" },
  "sessionTarget": "isolated",
  "wakeMode": "now",
  "payload": {
    "kind": "agentTurn",
    "message": "Use arxiv-digest skill. Fetch 5 papers, language zh. Push to QQ.",
    "deliver": true,
    "channel": "qqbot",
    "to": "YOUR_QQ_ID"
  }
}

arXiv Categories

Code Field
cs.AI Artificial Intelligence
cs.CL Natural Language Processing
cs.LG Machine Learning
cs.CV Computer Vision
cs.RO Robotics
cs.NE Neural Computing
stat.ML Statistical ML

Full list: https://arxiv.org/category_taxonomy


File Structure

~/.openclaw/workspace/skills/arxiv-digest/
├── SKILL.md                    # This file
├── scripts/
│   └── fetch_papers.py         # Main fetch script
├── references/
│   └── digest-guide.md         # Interpretation patterns
└── memory/history/
    └── papers-trending-history.md  # Deduplication history

Troubleshooting

"No papers returned"

  • HuggingFace API may be slow - retry in a few seconds
  • Check network connectivity

"Python module not found"

pip install requests

"History file not found"

First run creates it automatically at memory/history/papers-trending-history.md


Changelog

v1.0.1 (2026-03-12)

  • Security: Use requests library (preferred) to reduce false positives
  • Security: Simplify User-Agent header
  • Dependency: Added requests to pypi requirements
  • Fallback: Still supports urllib if requests not installed

v1.0.0 (2026-03-12)

  • Initial release
  • HuggingFace Papers Trending integration
  • Combined score ranking (position + upvote + freshness)
  • Chinese/English output support
  • Deduplication history tracking

Stay on top of AI research. Read less, learn more.

安全使用建议
This skill is mostly coherent and does what it claims: it fetches HuggingFace's daily_papers API and formats summaries without requiring credentials. Before installing, note these gaps and act accordingly: - The SKILL.md says it will track history/deduplicate and push digests to QQ/Notion, but scripts/fetch_papers.py does not implement history file writes or messaging integrations — expect the agent or additional code to handle delivery and deduplication. - Metadata declares modifiesLocalFiles; the script currently only prints output. If you need local history, review or add explicit, safe file-write code and verify where files are stored (use an isolated workspace). - Ensure network access to huggingface.co is acceptable in your environment. The script obeys only HF endpoints (no hidden endpoints or credential exfiltration detected). - Install the requests dependency in a controlled environment (virtualenv) before running, and inspect future versions for any added endpoints or credential requirements. If the author intends automated delivery or persistent history, ask them to provide the code that performs those actions so you can review it prior to enabling cron/automation.
功能分析
Type: OpenClaw Skill Name: arxiv-digest Version: 1.0.1 The arxiv-digest skill is a legitimate tool for fetching and summarizing trending AI/ML papers from the HuggingFace Papers API. The Python script (scripts/fetch_papers.py) uses standard libraries (requests/urllib) to retrieve data from a hardcoded, reputable endpoint (huggingface.co) and contains no evidence of data exfiltration, obfuscation, or unauthorized execution. While the documentation (SKILL.md) mentions local file modification for deduplication that isn't explicitly implemented in the provided script, the overall behavior remains well-aligned with its stated purpose.
能力评估
Purpose & Capability
Name/description (arXiv paper digest via HuggingFace Trending) aligns with the script and metadata: the script calls HuggingFace's daily_papers API and formats JSON/Markdown summaries. Required binary (python3) and dependency (requests) are reasonable for this task. Minor mismatch: SKILL.md and metadata mention deduplication/history tracking and automated delivery, but the provided script does not implement writing a history file or pushing to QQ/Notion.
Instruction Scope
SKILL.md instructs the agent to fetch from HuggingFace and optionally run a cron payload to push to QQ/Notion; the script only fetches and prints JSON/Markdown to stdout. The documentation claims local history/deduplication but the script contains no file-read/write for history. The instructions do not ask for unrelated files, secrets, or external endpoints beyond HuggingFace and arXiv links.
Install Mechanism
No install spec (instruction-only plus a small script). No downloads from arbitrary URLs or package managers beyond an expected PyPI dependency (requests). This is a low-risk install footprint.
Credentials
The skill declares no required environment variables or credentials and the code does not access secrets or other env vars. Network access is limited to huggingface.co (HF API) and constructs arXiv/HF links only — proportional to purpose.
Persistence & Privilege
always is false and the skill does not request elevated or persistent platform privileges. Metadata states it may modify local files, but the included script does not actually write files; this mismatch should be clarified but is not itself an elevated privilege.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install arxiv-digest
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /arxiv-digest 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Security: use requests library to reduce false positives
v1.0.0
Initial release: HuggingFace Papers Trending integration, combined score ranking, Chinese/English support
元数据
Slug arxiv-digest
版本 1.0.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 2
常见问题

arXiv Paper Digest 是什么?

Daily AI/ML paper digest from HuggingFace Papers Trending with accessible interpretations. Fetch trending papers from arXiv, provide plain-language summaries... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 301 次。

如何安装 arXiv Paper Digest?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install arxiv-digest」即可一键安装,无需额外配置。

arXiv Paper Digest 是免费的吗?

是的,arXiv Paper Digest 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

arXiv Paper Digest 支持哪些平台?

arXiv Paper Digest 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 arXiv Paper Digest?

由 lifei68801(@lifei68801)开发并维护,当前版本 v1.0.1。

💬 留言讨论