Skip to content

stormaker/SKILL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Claude Code Skills Collection

English | 中文


English

A collection of custom skills for Claude Code that extend Claude's professional capabilities.

Skills

1. med-review - Medical Systematic Literature Review

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

2. note-taking - Lecture Transcript Organizer

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:

  1. Project initialization & workload assessment
  2. Outline generation
  3. Document splitting (for long texts)
  4. Content cleanup & sentence merging
  5. Structure optimization & heading design
  6. Content polishing
  7. Quality check

Output Files:

  • outline.md - Lecture outline
  • lecture-detailed.md - Final organized document

Installation

Option 1: Copy to Claude Code skills directory

# 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/

Option 2: Manual download

  1. Download the desired skill folder
  2. Place it in ~/.claude/skills/ (global) or .claude/skills/ (project-level)

Requirements

med-review

  • Python 3.8+
  • Required packages: requests
pip install requests

Optional: Configure .env file for API keys (see .env.example)

note-taking

  • No additional dependencies

License

This project is licensed under the AGPL-3.0 License.


中文

这是一个 Claude Code 技能集合,包含实用的自定义技能,用于扩展 Claude 的专业能力。

技能列表

1. med-review - 医学文献系统综述

基于 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 引用格式验证

2. note-taking - 讲座逐字稿整理

将讲座课程的原始逐字稿整理成结构清晰、易于阅读的正式文稿。

适用场景:

  • 会议记录整理
  • 课程录音转写稿处理
  • 演讲逐字稿格式化
  • 长时间讲座(1-3小时)的内容优化

主要功能:

  • 智能分段处理长文档
  • 自动删除时间戳、语气词和赘词
  • 保持讲者原话风格和语气
  • 生成结构化的 Markdown 讲义
  • 完整的质量检查流程

处理流程:

  1. 项目初始化与工作量评估
  2. 大纲生成
  3. 文档拆分(针对长文本)
  4. 内容清理与合并断句
  5. 结构优化与标题设计
  6. 内容润色
  7. 质量检查

输出文件:

  • outline.md - 讲座大纲
  • lecture-detailed.md - 最终整理稿

安装使用

方式一:直接复制到 Claude Code 技能目录

# 克隆仓库
git clone https://github.com/stormaker/SKILL.git

# 复制技能到 Claude Code 目录
cp -r SKILL/med-review ~/.claude/skills/
cp -r SKILL/note-taking ~/.claude/skills/

方式二:手动下载

  1. 下载对应技能文件夹
  2. 将文件夹放入 ~/.claude/skills/ 目录(全局)或项目的 .claude/skills/ 目录(项目级)

依赖要求

med-review

  • Python 3.8+
  • 需要的 Python 包:requests
pip install requests

可选:配置 .env 文件以使用 API 密钥(参考 .env.example

note-taking

  • 无额外依赖

文件结构

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 许可证。


相关链接 / Related Links

About

Claude Code Skills

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages