skills/science/literature-review-tools/SKILL.md
Research-literature workflow guide for evidence-matrix assembly, citation-table normalization, structured review synthesis, and research-gap mapping. Use when the user asks for systematic or scoped literature review workflows, citation cleanup, evidence tables, or manuscript-ready review preparation for drug-discovery and biomedical topics.
npx skillsauth add drugclaw/drugclaw literature-review-toolsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when the user asks for structured literature review work rather than only a single paper lookup.
Typical triggers:
which python3 || true
python3 - <<'PY'
mods = ["pandas"]
for name in mods:
try:
__import__(name)
print(f"{name}: ok")
except Exception as exc:
print(f"{name}: missing ({exc})")
PY
For current papers, citations, or metadata that may have changed, also verify with live APIs or web search rather than relying on stale local tables.
templates/citation_table_normalize.pytemplates/evidence_matrix.pycitation_table_normalize.py to normalize DOI, PMID, title, and key metadata before synthesis.evidence_matrix.py to convert the cleaned table into a review or screening matrix.python3 templates/citation_table_normalize.py \
--input literature/raw_hits.csv \
--title-column title \
--doi-column doi \
--pmid-column pmid \
--year-column year \
--journal-column journal \
--authors-column authors \
--output literature/normalized_citations.csv \
--summary literature/normalized_citations.json \
--bibtex-output literature/normalized_citations.bib
Use this for:
python3 templates/evidence_matrix.py \
--input literature/normalized_citations.csv \
--title-column title \
--question-column topic \
--model-column model_system \
--intervention-column intervention \
--outcome-column outcome \
--finding-column key_finding \
--evidence-type-column study_type \
--output literature/evidence_matrix.csv \
--summary literature/evidence_matrix.json
Use this for:
For paper, author, institution, trial, or public drug-database APIs, activate pharma-db-tools.
For PubMed-style biology lookups, activate bio-tools or bio-db-tools depending on the source.
For hypothesis framing, peer-review style critique, or reproducibility planning, activate scientific-workflow-tools.
tools
Survival and time-to-event workflow guide for Kaplan-Meier summaries, log-rank tests, and Cox proportional hazards models with reproducible outputs. Use when the user asks for time-to-event analysis, censored data summaries, hazard ratios, or survival-group comparison for research datasets.
tools
Statistical modeling workflow guide for hypothesis tests, effect-size reporting, statsmodels regression, diagnostics, and structured result export. Use when the user asks for statistical test selection, OLS or logistic regression, coefficient tables, inference, or reproducible statistical summaries for scientific datasets.
tools
Research-method workflow guide for hypothesis framing, peer-review style critique, reproducibility planning, study-design checks, and scientific-writing structure. Use when the user asks for manuscript critique, research-gap framing, hypothesis generation, reproducibility checklists, or study-planning support that should stay on the research side rather than patient-care decisions.
tools
Scientific visualization workflow guide for publication-ready static figures with seaborn or matplotlib and interactive figures with Plotly. Use when the user asks for scientific plots, cohort or assay figures, publication graphics, dashboards, or reusable plotting scripts for research datasets.