科研文献智能监测与摘要推送系统。自动监测多个学术信源(arXiv、PubMed、CNKI等),根据用户关注的领域和关键词采集最新论文,生成中文摘要并推送。适用于需要跟踪学术前沿的科研工作者、研究生、教师等。使用场景包括:(1) 定时监测特定研究领域的最新论文,(2) 根据关键词筛选高相关度论文,(3) 自动生成论文中文摘要,(4) 接收每日/每周文献推送(需配置飞书渠道)。
本技能帮助科研工作者自动跟踪学术前沿,从多个权威信源采集最新论文,生成中文摘要,并支持本地归档和推送通知。
使用 arXiv 公开 API(免费、无需注册、无需 API Key):
bash
用户配置关键词 → 定时触发采集 → 多源检索论文 → 去重过滤
↓
关键词匹配评分 → 生成中文摘要 → 本地归档 → 推送高相关论文
Step 1: 采集 (Collection)
Step 2: 去重 (Deduplication)
Step 3: 评分 (Scoring)
Step 4: 摘要 (Summarization)
Step 5: 归档 (Archiving)
Step 6: 推送 (Notification)
| 信源 | 学科领域 | 更新频率 | 备注 |
|---|---|---|---|
| arXiv | 物理、数学、计算机、生物等 | 实时 | 预印本,开源免费 |
| PubMed |
配置文件位置:~/.openclaw/research-monitor/config.json
json
{
user_profile: {
name: 张三,
institution: 某大学,
research_field: 人工智能
},
keywords: [
large language model,
reasoning,
AI safety,
multimodal
],
sources: [
arxiv,
pubmed,
google_scholar
],
filters: {
maxpapersper_source: 20,
minscorethreshold: 50,
daterangedays: 1
},
notification: {
enabled: true,
feishu_webhook: https://open.feishu.cn/open-apis/bot/v2/hook/xxx,
minscorefor_notification: 80
},
storage: {
papers_dir: ~/.openclaw/research-papers,
index_file: ~/.openclaw/research-monitor/literature-index.json
}
}
用法:
bash
python scripts/search_papers.py --source arxiv --keywords transformer --days 7
用法:
bash
python scripts/generate_digest.py --days 7 --output weekly-digest.md
json
{
papers: [
{
id: arxiv-2403.12345,
title: 论文标题,
authors: [作者1, 作者2],
source: arxiv,
url: https://arxiv.org/abs/2403.12345,
doi: 10.1234/example,
published_date: 2024-03-12,
collected_date: 2024-03-12,
score: 85,
keywords_matched: [transformer, attention],
local_file: research-papers/2024-03/20240312-paper-title.md
}
]
}
markdown
作者: 作者1, 作者2
来源: arXiv
链接: https://arxiv.org/abs/2403.12345
发布日期: 2024-03-12
采集日期: 2024-03-12
相关度评分: 85/100
(英文原文摘要)
| 问题 | 解决方案 |
|---|---|
| 未找到相关论文 | 检查关键词是否太窄,尝试同义词 |
| 重复推送 |
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 research-paper-monitor-1776112563 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 research-paper-monitor-1776112563 技能
skillhub install research-paper-monitor-1776112563
文件大小: 22.35 KB | 发布时间: 2026-4-15 14:10