Medical-research-skills research-hotspot-analysis
Analyzes research hotspots and recommends literature based on a disease or topic. Use when the user wants to identify current research trends, hot topics, or get literature recommendations for a specific medical field or disease.
install
source · Clone the upstream repo
git clone https://github.com/aipoch/medical-research-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aipoch/medical-research-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/scientific-skills/Evidence Insight/research-hotspot-analysis" ~/.claude/skills/aipoch-medical-research-skills-research-hotspot-analysis && rm -rf "$T"
manifest:
scientific-skills/Evidence Insight/research-hotspot-analysis/SKILL.mdsource content
Research Hotspot Analysis
When to Use
- Use this skill when you need analyzes research hotspots and recommends literature based on a disease or topic. use when the user wants to identify current research trends, hot topics, or get literature recommendations for a specific medical field or disease in a reproducible workflow.
- Use this skill when a evidence insight task needs a packaged method instead of ad-hoc freeform output.
- Use this skill when the user expects a concrete deliverable, validation step, or file-based result.
- Use this skill when
is the most direct path to complete the request.scripts/analysis_ops.py - Use this skill when you need the
package behavior rather than a generic answer.research-hotspot-analysis
Key Features
- Scope-focused workflow aligned to: Analyzes research hotspots and recommends literature based on a disease or topic. Use when the user wants to identify current research trends, hot topics, or get literature recommendations for a specific medical field or disease.
- Packaged executable path(s):
.scripts/analysis_ops.py - Reference material available in
for task-specific guidance.references/ - Structured execution path designed to keep outputs consistent and reviewable.
Dependencies
:Python
. Repository baseline for current packaged skills.3.10+
:Third-party packages
. Add pinned versions if this skill needs stricter environment control.not explicitly version-pinned in this skill package
Example Usage
See
## Usage above for related details.
cd "20260316/scientific-skills/Evidence Insight/research-hotspot-analysis" python -m py_compile scripts/analysis_ops.py python scripts/analysis_ops.py --help
Example run plan:
- Confirm the user input, output path, and any required config values.
- Edit the in-file
block or documented parameters if the script uses fixed settings.CONFIG - Run
with the validated inputs.python scripts/analysis_ops.py - Review the generated output and return the final artifact with any assumptions called out.
Implementation Details
See
## Workflow above for related details.
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
- Primary implementation surface:
.scripts/analysis_ops.py - Reference guidance:
contains supporting rules, prompts, or checklists.references/ - Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
Description
This skill analyzes research hotspots for a given disease or topic by searching recent literature, calculating keyword frequencies, clustering topics, and recommending high-impact papers.
Usage
- Input: The user provides a disease name or research topic (e.g., "Lung Cancer", "Diabetes").
- Process:
- Searches for recent literature (PMIDs) using the internal literature database.
- Analyzes MESH terms to calculate word frequency and identify top keywords.
- Uses LLM to cluster keywords into "Hotspot Topics".
- Matches specific PMIDs to each topic.
- Fetches full details (PMC) for top-ranked papers (by JIF/Availability).
- Generates a comprehensive report with an introduction and detailed hotspot analysis.
- Output: A Markdown report containing the research overview and specific paper recommendations per hotspot.
Workflow
- Search Literature: Use
(scripts/analysis_ops.py
) to find relevant PMIDs and fetch details.search_pubmed - Analyze Keywords: Use
(scripts/analysis_ops.py
) on theword_frequency
output from Step 1 to find top MESH terms.medline_texts - Identify Topics: Use LLM with
(Hotspot Analysis) to group keywords into topics.references/prompt_templates.md - Match Evidence: Use
(scripts/analysis_ops.py
) withmatch_keywords
from Step 1 to map PMIDs to topics.documents - Fetch Details: For each topic, select top papers using
(scripts/analysis_ops.py
) and fetch details usingsort_by_jif_and_select
.fetchPMCArticleDetails - Generate Report: Synthesize the findings into a final report using LLM.
Tools
: Get article details.fetchPMCArticleDetails
: Get PubMed details.fetchPubmedArticleDetails
Scripts
: Contains helper functions for PubMed search, frequency analysis, keyword matching, and result formatting.scripts/analysis_ops.py
References
: Contains the system prompts for LLM analysis.references/prompt_templates.md