A collection of custom skills for Claude Code that extend Claude's professional capabilities.
Conduct systematic literature reviews following PRISMA guidelines and NLM citation standards.
Use Cases:
- Systematic reviews in clinical medicine, pharmacology, and biomedical sciences
- Meta-analyses of clinical intervention effects
- Scoping reviews for medical research topics
- Cochrane-style evidence synthesis
- Literature review chapters for medical dissertations or journal submissions
Features:
- Search PubMed/MEDLINE, Semantic Scholar, and OpenAlex databases
- Generate NLM (Vancouver format) citations with DOI
- Complete search scripts and result aggregation tools
- Follow PRISMA 2020 reporting standards
Included Scripts:
| Script | Function |
|---|---|
search_pubmed.py |
PubMed/MEDLINE search |
search_semantic_scholar.py |
Semantic Scholar search |
search_openalex.py |
OpenAlex API search |
aggregate_results.py |
Result aggregation & deduplication |
verify_nlm_citations.py |
NLM citation verification |
Transform raw lecture transcripts into well-structured, readable formal documents.
Use Cases:
- Meeting notes organization
- Course recording transcription processing
- Speech transcript formatting
- Long lecture (1-3 hours) content optimization
Features:
- Intelligent segmentation for long documents
- Auto-remove timestamps, filler words, and redundancies
- Preserve speaker's original style and tone
- Generate structured Markdown notes
- Complete quality check workflow
Workflow:
- Project initialization & workload assessment
- Outline generation
- Document splitting (for long texts)
- Content cleanup & sentence merging
- Structure optimization & heading design
- Content polishing
- Quality check
Output Files:
outline.md- Lecture outlinelecture-detailed.md- Final organized document
# Clone the repository
git clone https://github.com/stormaker/SKILL.git
# Copy skills to Claude Code directory
cp -r SKILL/med-review ~/.claude/skills/
cp -r SKILL/note-taking ~/.claude/skills/- Download the desired skill folder
- Place it in
~/.claude/skills/(global) or.claude/skills/(project-level)
- Python 3.8+
- Required packages:
requests
pip install requestsOptional: Configure .env file for API keys (see .env.example)
- No additional dependencies
This project is licensed under the AGPL-3.0 License.
这是一个 Claude Code 技能集合,包含实用的自定义技能,用于扩展 Claude 的专业能力。
基于 PRISMA 指南和 NLM 引用标准,进行专业的医学文献系统综述。
适用场景:
- 临床医学、药理学、生物医学的系统综述
- 临床干预效果的 Meta 分析
- 医学研究主题的范围综述
- Cochrane 风格的证据合成
- 医学论文或期刊投稿的文献综述章节
主要功能:
- 支持 PubMed/MEDLINE、Semantic Scholar、OpenAlex 数据库搜索
- 生成符合 NLM(温哥华格式)标准的引用,包含 DOI
- 提供完整的检索脚本和结果聚合工具
- 遵循 PRISMA 2020 报告标准
包含脚本:
| 脚本 | 功能 |
|---|---|
search_pubmed.py |
PubMed/MEDLINE 检索 |
search_semantic_scholar.py |
Semantic Scholar 检索 |
search_openalex.py |
OpenAlex API 检索 |
aggregate_results.py |
结果聚合与去重 |
verify_nlm_citations.py |
NLM 引用格式验证 |
将讲座课程的原始逐字稿整理成结构清晰、易于阅读的正式文稿。
适用场景:
- 会议记录整理
- 课程录音转写稿处理
- 演讲逐字稿格式化
- 长时间讲座(1-3小时)的内容优化
主要功能:
- 智能分段处理长文档
- 自动删除时间戳、语气词和赘词
- 保持讲者原话风格和语气
- 生成结构化的 Markdown 讲义
- 完整的质量检查流程
处理流程:
- 项目初始化与工作量评估
- 大纲生成
- 文档拆分(针对长文本)
- 内容清理与合并断句
- 结构优化与标题设计
- 内容润色
- 质量检查
输出文件:
outline.md- 讲座大纲lecture-detailed.md- 最终整理稿
# 克隆仓库
git clone https://github.com/stormaker/SKILL.git
# 复制技能到 Claude Code 目录
cp -r SKILL/med-review ~/.claude/skills/
cp -r SKILL/note-taking ~/.claude/skills/- 下载对应技能文件夹
- 将文件夹放入
~/.claude/skills/目录(全局)或项目的.claude/skills/目录(项目级)
- Python 3.8+
- 需要的 Python 包:
requests
pip install requests可选:配置 .env 文件以使用 API 密钥(参考 .env.example)
- 无额外依赖
SKILL/
├── README.md
├── LICENSE
├── med-review/
│ ├── SKILL.md # Skill definition / 技能定义
│ ├── SKILL.zh.md # Chinese documentation / 中文说明
│ ├── user-guide.md # User guide / 用户指南
│ ├── assets/
│ │ └── nlm_template.md # NLM template / NLM 模板
│ ├── references/ # Reference docs / 参考文档
│ │ ├── workflow-guide.md
│ │ ├── pubmed_guide.md
│ │ ├── openalex_guide.md
│ │ ├── semantic_scholar_guide.md
│ │ ├── nlm_guide.md
│ │ ├── mesh_guide.md
│ │ └── quality_tools.md
│ └── scripts/ # Search scripts / 检索脚本
│ ├── search_pubmed.py
│ ├── search_semantic_scholar.py
│ ├── search_openalex.py
│ ├── aggregate_results.py
│ └── verify_nlm_citations.py
└── note-taking/
└── SKILL.md # Skill definition / 技能定义
本项目采用 AGPL-3.0 License 许可证。