원클릭으로
literature-review
Systematic literature review methodology, search strategy, and PRISMA reporting
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Systematic literature review methodology, search strategy, and PRISMA reporting
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Shared operational contract for all MedSci agents: sequential execution, planning phase, retry limits, evidence standards.
Isolated exploratory code execution with medsci-sandbox tools. Use when analysis requires custom code beyond existing domain MCP tools.
AlphaFold DB for predicted protein structures and pLDDT confidence scores
Molecular biology toolkit. Use for FASTA parsing, sequence analysis, and translation.
ChEMBL database access for bioactivity data and target search
Datamol for molecular manipulation, SMILES processing, and cheminformatics
| name | literature-review |
| description | Systematic literature review methodology, search strategy, and PRISMA reporting |
A systematic review follows a structured, reproducible methodology to identify, evaluate, and synthesize all relevant evidence on a research question. PRISMA (Preferred Reporting Items for Systematic Reviews and Meta-Analyses) provides the reporting standard.
("breast cancer"[MeSH] OR "breast neoplasms"[tiab])
AND ("immunotherapy"[MeSH] OR "checkpoint inhibitor"[tiab])
AND ("overall survival"[tiab] OR "progression-free survival"[tiab])
from Bio import Entrez
Entrez.email = "user@example.com"
handle = Entrez.esearch(db="pubmed", term="CRISPR AND cancer", retmax=100)
record = Entrez.read(handle)
pmids = record["IdList"]
handle = Entrez.efetch(db="pubmed", id=pmids[:10], rettype="xml")
records = Entrez.read(handle)