nature-literature-pipeline
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseNature Literature Pipeline
Nature 学术文献自动化处理管道
A complete, production-tested automated literature pipeline. Not just "search for papers" — it's a structured engine that scores, classifies, reads, delivers, and archives research papers daily.
这是一套经过生产环境验证的完整学术文献自动化处理管道。它不仅仅是“搜索论文”——而是一个结构化引擎,每日对研究论文进行评分、分类、精读、交付和归档。
What It Does
功能说明
Cron (daily trigger, e.g. 08:30)
│
├─ ① SEARCH (30 candidates)
│ arXiv / OpenAlex / Crossref / Semantic Scholar (auto-degradation)
│
├─ ② COARSE FILTER (30 → 5)
│ Six-dimension scoring: topic match × 35 + methodology × 20
│ + journal quality × 15 + network relevance × 10
│ + applied value × 10 + archival value × 10
│
├─ ③ FINE READ (top 5)
│ Abstract-level or full-text. Source level tagged:
│ Full-text / Abstract only / Metadata only
│
├─ ④ DELIVER
│ Formatted digest to Feishu/Telegram/etc.
│ 🏅 rank | title | journal | ⭐ score | 💡 one-liner
│ 🔬 methods | 📊 key results | 🧭 commentary
│
└─ ⑤ ARCHIVE
DOI/arXiv de-dup → classify → write notes → update indexCron (daily trigger, e.g. 08:30)
│
├─ ① SEARCH (30 candidates)
│ arXiv / OpenAlex / Crossref / Semantic Scholar (auto-degradation)
│
├─ ② COARSE FILTER (30 → 5)
│ Six-dimension scoring: topic match × 35 + methodology × 20
│ + journal quality × 15 + network relevance × 10
│ + applied value × 10 + archival value × 10
│
├─ ③ FINE READ (top 5)
│ Abstract-level or full-text. Source level tagged:
│ Full-text / Abstract only / Metadata only
│
├─ ④ DELIVER
│ Formatted digest to Feishu/Telegram/etc.
│ 🏅 rank | title | journal | ⭐ score | 💡 one-liner
│ 🔬 methods | 📊 key results | 🧭 commentary
│
└─ ⑤ ARCHIVE
DOI/arXiv de-dup → classify → write notes → update indexQuick Start
快速开始
After installing, tell your agent:
My research area is [X], keywords: [Y], deliver to [feishu group name], archive to [path]The agent will configure keywords, delivery target, and archive path automatically.
Then set up a daily cron job:
Set up a daily literature push at 08:30 Beijing time, 30 candidates, top 5 delivered安装完成后,告知你的Agent:
My research area is [X], keywords: [Y], deliver to [feishu group name], archive to [path]Agent会自动配置关键词、交付目标和归档路径。
然后设置每日cron任务:
Set up a daily literature push at 08:30 Beijing time, 30 candidates, top 5 deliveredArchitecture
架构设计
The skill is organized in two layers:
| Layer | Purpose | Files |
|---|---|---|
| Engine | Scoring, classification, note templates, gap analysis | |
| Application | Daily cron pipeline, delivery formatting, archival workflow | |
本技能分为两层架构:
| 层级 | 用途 | 文件 |
|---|---|---|
| 引擎层 | 评分、分类、笔记模板、研究缺口分析 | |
| 应用层 | 每日cron流程、交付格式化、归档工作流 | |
Configuration
配置说明
All domain-specific content is configurable:
- Keywords — your research keywords (English + Chinese)
- Scoring weights — adjust the six dimensions for your field
- Classification rules — define your own tier system (A-E or custom)
- Delivery target — Feishu group, Telegram channel, email, etc.
- Archive path — local vault/wiki directory
A config template is provided in .
templates/literature-push-template.md所有领域相关内容均可配置:
- 关键词 — 你的研究关键词(中英文均可)
- 评分权重 — 根据你的研究领域调整六维度权重
- 分类规则 — 自定义层级体系(A-E或自定义)
- 交付目标 — 飞书群组、Telegram频道、邮箱等
- 归档路径 — 本地知识库/wiki目录
配置模板可在 中找到。
templates/literature-push-template.mdBuilt-in Safeguards
内置保障机制
- Score validation: Each dimension capped, total recalculated — no 11/10 allowed
- Triple de-duplication: DOI / arXiv ID / OpenAlex ID
- Graceful degradation: Semantic Scholar down → auto-switch to OpenAlex + Crossref + arXiv
- Read-only archive: Daily pipeline writes to literature directory only; never modifies wiki/knowledge base without user approval
raw/
- 评分验证:每个维度设置上限,总分重新计算——不允许出现11/10的分数
- 三重去重:DOI / arXiv ID / OpenAlex ID
- 优雅降级:当Semantic Scholar不可用时,自动切换至OpenAlex + Crossref + arXiv
- 只读归档:每日流程仅写入文献目录;未经用户许可,绝不修改wiki/知识库
raw/
Related Skills
相关技能
- — ad-hoc literature search (complementary; this skill adds structured daily automation)
nature-academic-search - — CNS citation export (for importing pipeline discoveries into manuscripts)
nature-citation - — library management (for long-term organization of pipeline outputs)
zotero - — arXiv API (used as a search source)
arxiv
- — 临时文献搜索(补充功能;本技能增加了结构化的每日自动化处理)
nature-academic-search - — CNS文献引用导出(用于将流程发现的文献导入手稿)
nature-citation - — 文献库管理(用于长期整理流程输出内容)
zotero - — arXiv API(作为搜索数据源使用)
arxiv
References
参考文档
| Reference | Purpose |
|---|---|
| Six-dimension scoring rubric with weights, caps, and evaluation logic |
| Methodology for identifying research gaps through systematic literature survey |
| Standardized literature note format with YAML frontmatter |
| Daily digest message template with field guidelines and example |
| Cron job creation, verification, and manual fallback procedures |
| End-to-end workflow for concentrated literature review writing |
| 参考文档 | 用途 |
|---|---|
| 包含权重、上限和评估逻辑的六维度评分细则 |
| 通过系统性文献调研识别研究缺口的方法 |
| 带有YAML前置元数据的标准化文献笔记格式 |
| 包含字段指南和示例的每日摘要消息模板 |
| Cron任务创建、验证和手动回退流程 |
| 集中式文献综述撰写的端到端工作流 |
Pitfalls
注意事项
- Keyword drift: Review keywords monthly — research directions evolve
- Score inflation: Subagents may inflate scores; always validate arithmetic
- Duplicate creep: Classic papers will reappear; maintain a dedup index
- Wiki safety: Pipeline writes to only; wiki integration is manual
raw/ - Cron locality: Hermes cron is local, not cloud — machine must be running
- 关键词偏移:每月检查关键词——研究方向会不断演变
- 评分虚高:子Agent可能会虚增分数;务必验证计算结果
- 重复文献滋生:经典论文会重复出现;需维护去重索引
- Wiki安全:流程仅写入目录;Wiki集成需手动操作
raw/ - Cron本地性:Hermes cron是本地任务而非云端任务——运行机器必须保持开机状态