scientific-skills/clinical-decision-support/references/README.md
Professional clinical decision support documents for medical professionals in pharmaceutical and clinical research settings.
This skill enables generation of three types of clinical documents:
All documents are generated as compact, professional LaTeX/PDF files.
clinical-decision-support/
├── SKILL.md # Main skill definition
├── README.md # This file
│
├── references/ # Clinical guidance documents
│ ├── patient_cohort_analysis.md
│ ├── treatment_recommendations.md
│ ├── clinical_decision_algorithms.md
│ ├── biomarker_classification.md
│ ├── outcome_analysis.md
│ └── evidence_synthesis.md
│
├── assets/ # Templates and examples
│ ├── cohort_analysis_template.tex
│ ├── treatment_recommendation_template.tex
│ ├── clinical_pathway_template.tex
│ ├── biomarker_report_template.tex
│ ├── example_gbm_cohort.md
│ ├── recommendation_strength_guide.md
│ └── color_schemes.tex
│
└── scripts/ # Analysis and generation tools
├── generate_survival_analysis.py
├── create_cohort_tables.py
├── build_decision_tree.py
├── biomarker_classifier.py
└── validate_cds_document.py
> Analyze a cohort of 45 NSCLC patients stratified by PD-L1 expression
(<1%, 1-49%, ≥50%) including ORR, PFS, and OS outcomes
> Create evidence-based treatment recommendations for HER2-positive
metastatic breast cancer with GRADE methodology
> Generate a clinical decision algorithm for acute chest pain
management with TIMI risk score
Python scripts require:
pandas, numpy, scipy: Data analysis and statisticslifelines: Survival analysis (Kaplan-Meier, Cox regression)matplotlib: Visualizationpyyaml (optional): YAML input for decision treesInstall with:
pip install pandas numpy scipy lifelines matplotlib pyyaml
generate_survival_analysis.py: Create Kaplan-Meier curves with hazard ratioscreate_cohort_tables.py: Generate baseline, efficacy, and safety tablesbuild_decision_tree.py: Convert text/JSON to TikZ flowchartsbiomarker_classifier.py: Stratify patients by PD-L1, HER2, molecular subtypesvalidate_cds_document.py: Quality checks for completeness and complianceIntegrates with existing skills:
Version 1.0 - Initial release Created: November 2024 Last Updated: November 5, 2024
This skill was designed for pharmaceutical and clinical research professionals creating clinical decision support documents. For questions about usage or suggestions for improvements, contact the Scientific Writer development team.