LLMs-Universal-Life-Science-and-Clinical-Skills- biomedical-rag-citation-pipelines
Design citation-grounded biomedical retrieval and generation systems for literature-heavy assistants. Use when building or improving PubMed or PMC search pipelines, hybrid retrieval, claim-to-citation validation, evidence-aware answer synthesis, or evaluation workflows for biomedical RAG applications.
install
source · Clone the upstream repo
git clone https://github.com/mdbabumiamssm/LLMs-Universal-Life-Science-and-Clinical-Skills-
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/mdbabumiamssm/LLMs-Universal-Life-Science-and-Clinical-Skills- "$T" && mkdir -p ~/.claude/skills && cp -r "$T/Skills/User_Collections/Babu/biomedical-rag-citation-pipelines" ~/.claude/skills/mdbabumiamssm-llms-universal-life-science-and-clinical-skills-biomedical-rag-cit && rm -rf "$T"
manifest:
Skills/User_Collections/Babu/biomedical-rag-citation-pipelines/SKILL.mdsource content
Biomedical RAG Citation Pipelines
Build biomedical RAG systems that can defend their answers with traceable evidence.
Workflow
- Define the retrieval target first: abstracts, full text, trial records, internal documents, or mixed corpora.
- Choose indexing and chunking around the evidence unit you need to cite, not around arbitrary token counts alone.
- Use hybrid retrieval when terminology drift, gene aliases, diseases, and abbreviations matter.
- Keep retrieval, reranking, generation, and citation validation as separate stages with inspectable outputs.
- Require structured answers that bind each claim to a supporting source identifier or passage.
- Evaluate retrieval quality and citation faithfulness separately; good prose does not imply grounded answers.
Guardrails
- Do not present uncited synthesis as evidence-backed.
- Track PMID, PMCID, DOI, trial ID, or internal document IDs explicitly.
- Flag review articles versus primary studies.
- Separate source existence checks from claim relevance checks.
References
- Read
for pipeline design choices.references/system-patterns.md - Read
for retrieval and citation evaluation.references/evaluation-checklist.md