← 返回 Skills 市场
devioslang

arXiv 论文推荐器

作者 DeviosLang · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
240
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install arxiv-paper-recommender
功能描述
推荐高质量的 Agent/RAG 论文。当用户提到"推荐论文"、"arxiv论文"、"Agent论文"、"RAG论文"、"论文推荐"、"看论文"、"找论文"、"最近有什么好论文"时触发此技能。支持主题:Agent测评、RAG测评、Agent架构、RAG架构。自动验证 GitHub 代码,生成结构化报告。
使用说明 (SKILL.md)

arXiv 论文推荐器

推荐近期高质量 Agent/RAG 领域论文,确保有配套代码,1分钟内让读者抓住核心价值。

触发词

  • "推荐一篇论文"、"帮我找篇论文"
  • "Agent论文"、"RAG论文"
  • "论文推荐"、"arxiv推荐"
  • "最近有什么好论文"
  • "推荐一篇 Agent/RAG 相关的论文"

支持的主题

主题代码 中文名称 说明
agent-eval Agent测评 Agent 评估方法、Benchmark
rag-eval RAG测评 RAG 评估方法、Benchmark
agent-arch Agent架构 Agent 框架设计、系统构建
rag-arch RAG架构 RAG 系统架构、框架设计

用户可指定主题,不指定则随机选择。

工作流程

Step 1: 确定主题

如果用户指定了主题 → 使用指定主题
否则 → 从四个主题中随机选择一个

Step 2: 执行搜索脚本

cd ~/.openclaw/workspace/skills/arxiv-paper-recommender/scripts
python3 recommend.py [topic]

参数:

  • topic 可选,值为 agent-evalrag-evalagent-archrag-arch 之一
  • 不传参数则随机选择

Step 3: 读取生成的报告

脚本会自动:

  1. 搜索 arXiv 最近 6 个月的论文
  2. 访问论文页面查找 GitHub 链接
  3. 验证 GitHub 仓库有效性
  4. 分析论文摘要提取关键信息
  5. 生成 Markdown 报告

报告保存位置:~/papers/recommendations/YYYY-MM-DD_[arxiv_id].md

Step 4: 向用户展示推荐结果

输出格式示例:

📄 推荐论文:[标题]

🎯 主题:Agent架构设计
📅 发布:2026-03-01
⭐ GitHub:1.2k stars

一句话:这篇论文提出了 [方法名],解决了 [问题]。

推荐理由:
1️⃣ 解决了 [具体问题]
2️⃣ 采用 [方法],亮点是 [创新点]
3️⃣ 实践建议:[核心建议]
4️⃣ 代码质量:⭐ X stars,最近 X 天更新

🔗 arxiv.org/abs/xxxx.xxxxx
💻 github.com/xxx/xxx

完整报告已保存至:~/papers/recommendations/xxx.md

Step 5: 后续交互

推荐完成后,询问用户:

需要我进一步帮你:
1. 📖 深入解读这篇论文?
2. 🔍 查找相关论文?
3. 🛠️ 分析代码实现?
4. 📋 生成论文阅读笔记模板?

报告结构

生成的 Markdown 报告包含:

  1. 基本信息表 - arXiv ID、发布日期、作者、链接
  2. 摘要 - 论文摘要(截取前 600 字)
  3. 推荐理由
    • 解决了什么问题
    • 使用了什么方法
    • 工程实践建议
    • 代码质量评估
  4. 1分钟速览 - 快速理解论文核心
  5. 快速链接 - PDF、GitHub、arXiv

质量控制

论文筛选标准

  • ✅ 必须有 GitHub 代码链接
  • ✅ 发表时间在最近 6 个月内
  • ✅ GitHub 仓库存在且公开
  • ✅ 自动分析摘要提取关键信息

避免

  • ❌ 纯理论无代码的论文
  • ❌ GitHub 仓库已删除或私有

记忆功能

记录用户已推荐的论文,避免重复:

// 保存到 ~/papers/history.json
{
  "recommended": [
    {
      "arxiv_id": "2403.12345",
      "title": "论文标题",
      "date": "2026-03-15",
      "topic": "Agent架构"
    }
  ]
}

每次推荐前自动检查历史记录。

脚本说明

脚本 功能
search.py arXiv 搜索 + GitHub 链接提取 + 仓库验证
analyze.py 论文摘要智能分析,提取问题/方法/结论
recommend.py 完整推荐流程,生成报告

依赖

  • Python 3.8+
  • arXiv API(免费,无需密钥)
  • GitHub API(公开接口)
  • 网络访问

示例用法

用户:推荐一篇 Agent 论文

执行

python3 recommend.py agent-eval

输出

📄 推荐论文:Video Streaming Thinking: VideoLLMs Can Watch and Think Simultaneously
🎯 主题:Agent测评
📅 发布:2026-03-12
⭐ GitHub:53 stars
...

技能版本:1.0 | 创建时间:2026-03-15

安全使用建议
This skill appears coherent and implements what it claims: it queries arXiv and arxiv.org pages, calls the public GitHub repo API (unauthenticated), analyzes abstracts, and writes recommendations and a small history to ~/papers. Things to consider before installing: 1) it will perform outbound HTTP(S) requests to export.arxiv.org, arxiv.org, and api.github.com — ensure your environment/network policy allows that; 2) it writes files to your home directory (~/papers); review or sandbox those writes if you have policy or privacy concerns; 3) GitHub API calls are unauthenticated and subject to rate limits — if you expect heavy use you may want to modify the code to use a token (this would require adding a credential); 4) if you want to audit behavior, inspect the three scripts (search.py, recommend.py, analyze.py) — they are short and readable; 5) the SKILL.md path suggestions assume the skill lives under ~/.openclaw/workspace/skills/, so confirm that path before running. Overall the skill is internally consistent, but follow standard caution: review included scripts and run in a controlled environment if you have strict security requirements.
功能分析
Type: OpenClaw Skill Name: arxiv-paper-recommender Version: 1.1.0 The skill is a legitimate tool designed to search for and recommend arXiv papers related to AI Agents and RAG. It uses standard Python libraries (urllib, re, json, xml) to query the arXiv API and GitHub API for paper metadata and repository statistics. The logic involves parsing XML/HTML to extract GitHub links and using regex to summarize abstracts. All file operations are restricted to local directories (~/papers/), and no evidence of data exfiltration, malicious execution, or prompt injection was found across scripts like recommend.py and search.py.
能力评估
Purpose & Capability
Name/description (arXiv paper recommender that verifies GitHub code and generates reports) matches the included scripts (search.py, recommend.py, analyze.py). The required operations (fetch arXiv, fetch arXiv pages, call GitHub repo API, analyze text, write Markdown reports) are all consistent with the stated functionality.
Instruction Scope
SKILL.md instructs running the bundled recommend.py and reading reports. The runtime instructions and scripts only reference arXiv and GitHub endpoints and local files (~/papers/* and ~/.openclaw/.../scripts). The skill reads/writes its own history and report files (~/papers/history.json and ~/papers/recommendations/...), which is expected for a recommender and not outside the declared scope.
Install Mechanism
No install spec; code is included and run directly (instruction-only install). No downloads from external URLs or package installs are invoked by the skill itself, so there is no high-risk install mechanism in the bundle.
Credentials
The skill requires no environment variables or credentials. It uses public arXiv endpoints and unauthenticated GitHub API calls (api.github.com). No secrets are requested or accessed, so credential requests are proportionate to the described task.
Persistence & Privilege
The skill persists state by creating and updating files under the user's home directory: ~/papers/history.json and Markdown reports under ~/papers/recommendations. always:false (normal). This is within reason for a recommender, but users should be aware of the local file writes and the path hardcoded in SKILL.md.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install arxiv-paper-recommender
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /arxiv-paper-recommender 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
优化工程实践建议提取:基于论文内容推断实际工程价值,而非通用的代码使用说明
v1.0.0
初始版本:支持 Agent/RAG 论文搜索、GitHub 代码验证、智能摘要分析、Markdown 报告生成
元数据
Slug arxiv-paper-recommender
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

arXiv 论文推荐器 是什么?

推荐高质量的 Agent/RAG 论文。当用户提到"推荐论文"、"arxiv论文"、"Agent论文"、"RAG论文"、"论文推荐"、"看论文"、"找论文"、"最近有什么好论文"时触发此技能。支持主题:Agent测评、RAG测评、Agent架构、RAG架构。自动验证 GitHub 代码,生成结构化报告。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 240 次。

如何安装 arXiv 论文推荐器?

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

arXiv 论文推荐器 是免费的吗?

是的,arXiv 论文推荐器 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

arXiv 论文推荐器 支持哪些平台?

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

谁开发了 arXiv 论文推荐器?

由 DeviosLang(@devioslang)开发并维护,当前版本 v1.1.0。

💬 留言讨论