返回顶部
l

literature-reviewer-skill文献综述技能

|

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 3.0.0
安全检测
已通过
480
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

literature-reviewer-skill

文献回顾(Literature Survey)

根据用户提供的论文主题,进行系统性的中英文文献检索、整理和综述撰写。
采用 8阶段工作流,无需API配置,通过浏览器自动化获取文献。



8阶段工作流

Phase 0: Session Log → 创建会话目录
Phase 1: Query Analysis → 生成中英文检索策略
Phase 2: Parallel Search → 浏览器自动化检索
Phase 3: Deduplication → 标题相似度去重
Phase 4: Verification → 基础元数据校验
Phase 5: Data Export → 导出文献信息
Phase 6: Paper Analysis → 单篇文献深度分析
Phase 7: Citation Format → GB/T 7714-2015格式化
Phase 8: Synthesis → 生成综述文档



Phase 0: Session Log(会话管理)

创建会话目录,记录工作进度。

目录结构

sessions/{YYYYMMDD}{topicshort}/
├── session_log.md # 工作日志
├── metadata.json # 会话元数据
├── papers_raw.json # 原始检索结果
├── papers_deduplicated.json # 去重后文献
├── papers_analysis.json # 文献分析结果
└── output/
├── references.md # 文献清单(含摘要)
├── papers_analysis.md # 单篇文献分析
└── literature_review.md # 最终综述



Phase 1: Query Analysis(查询分析)

AI 智能分析研究主题,生成相关关键词和检索策略。

AI 提示词模板

You are tasked with generating relevant keywords or phrases for a given research direction.

The research direction is provided below:

{{用户输入的研究主题}}

To complete this task:

  1. 1. Carefully analyze the provided research direction.
  2. Identify core concepts, methods, techniques, or topics in this research area.
  3. Generate 5 to 8 of the most relevant and representative keywords or phrases.
  4. Ensure keywords are concise, typically 1-3 words each.
  5. Make sure the keywords cover different aspects of the research direction.
  6. Order the keywords by importance or relevance.
  7. Separate keywords with English commas (,).
  8. Do not include any explanations, descriptions, or additional text.
  9. Provide keywords in both Chinese and English.

Present your result in the following format:

中文关键词:keyword1, keyword2, keyword3, ...
英文关键词:englishkeyword1, englishkeyword2, english_keyword3, ...

Example for 人工智能在医疗诊断中的应用:
中文关键词:人工智能, 医疗诊断, 机器学习, 深度学习, 医学影像, 辅助诊断, 疾病预测, 智能诊疗
英文关键词:artificial intelligence, medical diagnosis, machine learning, deep learning, medical imaging, computer-aided diagnosis, disease prediction, intelligent diagnosis

输出格式

yaml
研究主题: 基于深度学习的医学图像诊断研究

中文关键词:
- 深度学习
- 医学图像
- 诊断
- 神经网络
- 计算机辅助诊断

英文关键词:
- deep learning
- medical imaging
- diagnosis
- neural network
- computer-aided diagnosis

检索策略:
CNKI: SU=(深度学习+神经网络)(医学图像+影像)(诊断+辅助诊断)
WOS: TS=((deep learning OR neural network) AND (medical imaging) AND (diagnosis))



Phase 2: Parallel Search(并行检索)

核心数据库(无需API,浏览器自动化):

数据库优先级检索方式
CNKI1浏览器访问高级检索页面
Web of Science
2 | 浏览器访问检索页面 |
| ScienceDirect | 3 | 浏览器访问检索页面 |
| PubMed | 4 | 网页搜索 + 浏览器访问 |
| Google Scholar | 5 | 网页搜索 |

检索步骤

  1. 1. 使用 browsernavigate 访问各数据库检索页面
  2. 填充检索式,执行搜索
  3. 提取前50条结果的标题、作者、期刊、年份、DOI、摘要
  4. 保存到 papersraw.json

字段提取
json
{
source_db: cnki,
title: 文献标题,
authors: [作者1, 作者2],
journal: 期刊名称,
year: 2023,
volume: 46,
issue: 5,
pages: 1023-1035,
doi: 10.xxxx,
abstract: 摘要内容...,
keywords: [关键词1, 关键词2],
url: 原文链接
}



Phase 3: Deduplication(去重筛选)

简化去重策略

  1. 1. DOI匹配 - 相同DOI视为重复
  2. 标题相似度 - Levenshtein距离 > 0.85 视为重复
  3. 保留规则 - 保留信息更完整的记录

筛选条件

  • - 时间:近10年优先
  • 来源:优先保留核心期刊/高质量来源
  • 数量:中英文各15-25篇,总计30-50篇



Phase 4: Verification(基础验证)

简化验证流程:

  1. 1. 元数据完整性检查 - 确保标题、作者、期刊、年份存在
  2. DOI格式校验 - 检查DOI格式有效性
  3. 明显错误过滤 - 排除标题为无或作者缺失的记录

Phase 5: Data Export(数据导出)

导出文献信息到Markdown文件。

输出文件:output/references.md

文件格式
markdown

文献清单

中文文献

C1

  • - 标题: 基于深度学习的医学图像诊断研究
  • 作者: 张三, 李四, 王五
  • 期刊: 计算机学报
  • 年份: 2023
  • 卷期: 46(5): 1023-1035
  • DOI: 10.xxxx
  • 摘要: 本文研究了...
  • 来源: CNKI

英文文献

E1

  • - Title: Deep Learning for Medical Image Analysis
  • Authors: Smith J, Johnson K, Lee M
  • Journal: Nature Medicine
  • Year: 2022
  • Volume/Issue: 28(8): 1500-1510
  • DOI: 10.1038/s41591-022-01900-0
  • Abstract: This study presents...
  • Source: ScienceDirect

Phase 6: Paper Analysis(单篇文献分析)

对每篇文献进行深度分析,提取关键信息。

AI 提示词模板

You are an AI assistant tasked with analyzing and interpreting academic articles.

For each article, follow these steps:

  1. 1. Identify and summarize the main research question(s) and objective(s) of the article.
  2. Describe the theoretical framework or model used in the study.
  3. Summarize the research methodology and design employed.
  4. Extract and summarize the key findings and conclusions.
  5. Highlight any innovative aspects of the study and point out potential limitations.
  6. Analyze how this article relates to other research in the field.
  7. Identify any controversial points or unresolved issues mentioned in the article.
  8. Identify any trends or emerging directions in the research field mentioned.

Present your analysis in the following structured format:

文章[N]:[Article Title]
主要观点和结论:[Summary of main points and conclusions]
局限性:[Discussion of limitations]
争议点:[Identified controversies or disputed points]
研究内容缺陷:[Areas not covered by the research]
参考文献格式:[GB/T 7714-2015 format for this paper]

Use --- to separate each article analysis.

Ensure that you analyze and provide output for ALL articles. Do not omit any article from your analysis.

输出格式

markdown

文献深度分析




文章1:基于深度学习的医学图像诊断研究

主要观点和结论
本文提出了一种基于卷积神经网络的医学图像诊断方法,在肺结节检测任务上取得了95%的准确率。研究表明深度学习方法能够有效辅助医生进行病灶识别。

局限性

  1. 1. 数据集规模相对较小,仅有1000例样本
  2. 缺乏多中心验证
  3. 模型对少见病例的泛化能力有待验证

争议点

  • - 深度学习模型的黑盒特性与医疗可解释性需求的矛盾
  • 辅助诊断系统的责任归属问题

研究内容缺陷

  • - 未涉及模型的临床部署方案
  • 缺少与现有商用系统的对比
  • 未讨论数据隐私保护机制

参考文献格式
张三, 李四, 王五. 基于深度学习的医学图像诊断研究[J]. 计算机学报, 2023, 46(5): 1023-1035. DOI:10.xxxx.




Phase

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 literature-reviewer-skill-1776186559 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 literature-reviewer-skill-1776186559 技能

通过命令行安装

skillhub install literature-reviewer-skill-1776186559

下载

⬇ 下载 literature-reviewer-skill v3.0.0(免费)

文件大小: 50.99 KB | 发布时间: 2026-4-15 13:17

v3.0.0 最新 2026-4-15 13:17
**Major update: Adds comprehensive, workflow-driven literature review capability with multilingual support and browser-based database search.**

- Introduces an 8-phase workflow covering topic analysis, automated literature retrieval (CNKI, Web of Science, ScienceDirect, PubMed, Google Scholar), deduplication, validation, citation formatting, and review synthesis.
- No API keys required—retrieves bibliographic data via browser automation for both Chinese and English sources.
- Outputs a well-structured Markdown summary with GB/T 7714-2015 citations, abstracts, and deep analysis for each paper.
- Automatically triggers on keywords such as "文献回顾", "文献综述", "帮我找文献", "中英文文献搜索", "写综述", etc.
- Workflow and output formats are extensively documented for ease of use and transparency.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部