@synsci/cli-darwin-x64 1.1.70 → 1.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/skills/citation-management/SKILL.md +1109 -0
- package/bin/skills/citation-management/assets/bibtex_template.bib +264 -0
- package/bin/skills/citation-management/assets/citation_checklist.md +386 -0
- package/bin/skills/citation-management/references/bibtex_formatting.md +908 -0
- package/bin/skills/citation-management/references/citation_validation.md +794 -0
- package/bin/skills/citation-management/references/google_scholar_search.md +725 -0
- package/bin/skills/citation-management/references/metadata_extraction.md +870 -0
- package/bin/skills/citation-management/references/pubmed_search.md +839 -0
- package/bin/skills/citation-management/scripts/doi_to_bibtex.py +182 -0
- package/bin/skills/citation-management/scripts/extract_metadata.py +570 -0
- package/bin/skills/citation-management/scripts/format_bibtex.py +349 -0
- package/bin/skills/citation-management/scripts/search_google_scholar.py +251 -0
- package/bin/skills/citation-management/scripts/search_pubmed.py +348 -0
- package/bin/skills/citation-management/scripts/validate_citations.py +494 -0
- package/bin/skills/clinical-decision-support/README.md +129 -0
- package/bin/skills/clinical-decision-support/SKILL.md +506 -0
- package/bin/skills/clinical-decision-support/assets/biomarker_report_template.tex +380 -0
- package/bin/skills/clinical-decision-support/assets/clinical_pathway_template.tex +222 -0
- package/bin/skills/clinical-decision-support/assets/cohort_analysis_template.tex +359 -0
- package/bin/skills/clinical-decision-support/assets/color_schemes.tex +149 -0
- package/bin/skills/clinical-decision-support/assets/example_gbm_cohort.md +208 -0
- package/bin/skills/clinical-decision-support/assets/recommendation_strength_guide.md +328 -0
- package/bin/skills/clinical-decision-support/assets/treatment_recommendation_template.tex +529 -0
- package/bin/skills/clinical-decision-support/references/biomarker_classification.md +719 -0
- package/bin/skills/clinical-decision-support/references/clinical_decision_algorithms.md +604 -0
- package/bin/skills/clinical-decision-support/references/evidence_synthesis.md +840 -0
- package/bin/skills/clinical-decision-support/references/outcome_analysis.md +640 -0
- package/bin/skills/clinical-decision-support/references/patient_cohort_analysis.md +427 -0
- package/bin/skills/clinical-decision-support/references/treatment_recommendations.md +521 -0
- package/bin/skills/clinical-decision-support/scripts/biomarker_classifier.py +383 -0
- package/bin/skills/clinical-decision-support/scripts/build_decision_tree.py +417 -0
- package/bin/skills/clinical-decision-support/scripts/create_cohort_tables.py +509 -0
- package/bin/skills/clinical-decision-support/scripts/generate_survival_analysis.py +441 -0
- package/bin/skills/clinical-decision-support/scripts/validate_cds_document.py +326 -0
- package/bin/skills/clinical-reports/IMPLEMENTATION_SUMMARY.md +641 -0
- package/bin/skills/clinical-reports/README.md +236 -0
- package/bin/skills/clinical-reports/SKILL.md +1127 -0
- package/bin/skills/clinical-reports/assets/case_report_template.md +352 -0
- package/bin/skills/clinical-reports/assets/clinical_trial_csr_template.md +353 -0
- package/bin/skills/clinical-reports/assets/clinical_trial_sae_template.md +359 -0
- package/bin/skills/clinical-reports/assets/consult_note_template.md +305 -0
- package/bin/skills/clinical-reports/assets/discharge_summary_template.md +453 -0
- package/bin/skills/clinical-reports/assets/hipaa_compliance_checklist.md +395 -0
- package/bin/skills/clinical-reports/assets/history_physical_template.md +305 -0
- package/bin/skills/clinical-reports/assets/lab_report_template.md +309 -0
- package/bin/skills/clinical-reports/assets/pathology_report_template.md +249 -0
- package/bin/skills/clinical-reports/assets/quality_checklist.md +338 -0
- package/bin/skills/clinical-reports/assets/radiology_report_template.md +318 -0
- package/bin/skills/clinical-reports/assets/soap_note_template.md +253 -0
- package/bin/skills/clinical-reports/references/case_report_guidelines.md +570 -0
- package/bin/skills/clinical-reports/references/clinical_trial_reporting.md +693 -0
- package/bin/skills/clinical-reports/references/data_presentation.md +530 -0
- package/bin/skills/clinical-reports/references/diagnostic_reports_standards.md +629 -0
- package/bin/skills/clinical-reports/references/medical_terminology.md +588 -0
- package/bin/skills/clinical-reports/references/patient_documentation.md +744 -0
- package/bin/skills/clinical-reports/references/peer_review_standards.md +585 -0
- package/bin/skills/clinical-reports/references/regulatory_compliance.md +577 -0
- package/bin/skills/clinical-reports/scripts/check_deidentification.py +332 -0
- package/bin/skills/clinical-reports/scripts/compliance_checker.py +78 -0
- package/bin/skills/clinical-reports/scripts/extract_clinical_data.py +97 -0
- package/bin/skills/clinical-reports/scripts/format_adverse_events.py +97 -0
- package/bin/skills/clinical-reports/scripts/generate_report_template.py +149 -0
- package/bin/skills/clinical-reports/scripts/terminology_validator.py +126 -0
- package/bin/skills/clinical-reports/scripts/validate_case_report.py +323 -0
- package/bin/skills/clinical-reports/scripts/validate_trial_report.py +88 -0
- package/bin/skills/fireworks-ai/SKILL.md +665 -0
- package/bin/skills/generate-image/SKILL.md +178 -0
- package/bin/skills/generate-image/scripts/generate_image.py +254 -0
- package/bin/skills/groq/SKILL.md +347 -0
- package/bin/skills/hypothesis-generation/SKILL.md +293 -0
- package/bin/skills/hypothesis-generation/assets/FORMATTING_GUIDE.md +672 -0
- package/bin/skills/hypothesis-generation/assets/hypothesis_generation.sty +307 -0
- package/bin/skills/hypothesis-generation/assets/hypothesis_report_template.tex +572 -0
- package/bin/skills/hypothesis-generation/references/experimental_design_patterns.md +329 -0
- package/bin/skills/hypothesis-generation/references/hypothesis_quality_criteria.md +198 -0
- package/bin/skills/hypothesis-generation/references/literature_search_strategies.md +622 -0
- package/bin/skills/latex-posters/README.md +417 -0
- package/bin/skills/latex-posters/SKILL.md +1602 -0
- package/bin/skills/latex-posters/assets/baposter_template.tex +257 -0
- package/bin/skills/latex-posters/assets/beamerposter_template.tex +244 -0
- package/bin/skills/latex-posters/assets/poster_quality_checklist.md +358 -0
- package/bin/skills/latex-posters/assets/tikzposter_template.tex +251 -0
- package/bin/skills/latex-posters/references/latex_poster_packages.md +745 -0
- package/bin/skills/latex-posters/references/poster_content_guide.md +748 -0
- package/bin/skills/latex-posters/references/poster_design_principles.md +806 -0
- package/bin/skills/latex-posters/references/poster_layout_design.md +900 -0
- package/bin/skills/latex-posters/scripts/review_poster.sh +214 -0
- package/bin/skills/literature-review/SKILL.md +641 -0
- package/bin/skills/literature-review/assets/review_template.md +412 -0
- package/bin/skills/literature-review/references/citation_styles.md +166 -0
- package/bin/skills/literature-review/references/database_strategies.md +455 -0
- package/bin/skills/literature-review/scripts/generate_pdf.py +184 -0
- package/bin/skills/literature-review/scripts/search_databases.py +310 -0
- package/bin/skills/literature-review/scripts/verify_citations.py +218 -0
- package/bin/skills/market-research-reports/SKILL.md +904 -0
- package/bin/skills/market-research-reports/assets/FORMATTING_GUIDE.md +428 -0
- package/bin/skills/market-research-reports/assets/market_report_template.tex +1380 -0
- package/bin/skills/market-research-reports/assets/market_research.sty +564 -0
- package/bin/skills/market-research-reports/references/data_analysis_patterns.md +548 -0
- package/bin/skills/market-research-reports/references/report_structure_guide.md +999 -0
- package/bin/skills/market-research-reports/references/visual_generation_guide.md +1077 -0
- package/bin/skills/market-research-reports/scripts/generate_market_visuals.py +472 -0
- package/bin/skills/markitdown/INSTALLATION_GUIDE.md +318 -0
- package/bin/skills/markitdown/LICENSE.txt +22 -0
- package/bin/skills/markitdown/OPENROUTER_INTEGRATION.md +359 -0
- package/bin/skills/markitdown/QUICK_REFERENCE.md +309 -0
- package/bin/skills/markitdown/README.md +184 -0
- package/bin/skills/markitdown/SKILL.md +486 -0
- package/bin/skills/markitdown/SKILL_SUMMARY.md +307 -0
- package/bin/skills/markitdown/assets/example_usage.md +463 -0
- package/bin/skills/markitdown/references/api_reference.md +399 -0
- package/bin/skills/markitdown/references/file_formats.md +542 -0
- package/bin/skills/markitdown/scripts/batch_convert.py +195 -0
- package/bin/skills/markitdown/scripts/convert_literature.py +262 -0
- package/bin/skills/markitdown/scripts/convert_with_ai.py +224 -0
- package/bin/skills/ml-paper-writing/SKILL.md +937 -0
- package/bin/skills/ml-paper-writing/references/checklists.md +361 -0
- package/bin/skills/ml-paper-writing/references/citation-workflow.md +562 -0
- package/bin/skills/ml-paper-writing/references/reviewer-guidelines.md +367 -0
- package/bin/skills/ml-paper-writing/references/sources.md +159 -0
- package/bin/skills/ml-paper-writing/references/writing-guide.md +476 -0
- package/bin/skills/ml-paper-writing/templates/README.md +251 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/README.md +534 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
- package/bin/skills/ml-paper-writing/templates/acl/README.md +50 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl.sty +312 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_latex.tex +377 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_lualatex.tex +101 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_natbib.bst +1940 -0
- package/bin/skills/ml-paper-writing/templates/acl/anthology.bib.txt +26 -0
- package/bin/skills/ml-paper-writing/templates/acl/custom.bib +70 -0
- package/bin/skills/ml-paper-writing/templates/acl/formatting.md +326 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/README.md +3 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/math_commands.tex +508 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/natbib.sty +1246 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/math_commands.tex +508 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/natbib.sty +1246 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/algorithm.sty +79 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/algorithmic.sty +201 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.bib +75 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.tex +662 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.bst +1443 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.sty +767 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/Makefile +36 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/main.tex +38 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/neurips.sty +382 -0
- package/bin/skills/paper-2-web/SKILL.md +491 -0
- package/bin/skills/paper-2-web/references/installation.md +141 -0
- package/bin/skills/paper-2-web/references/paper2poster.md +346 -0
- package/bin/skills/paper-2-web/references/paper2video.md +305 -0
- package/bin/skills/paper-2-web/references/paper2web.md +187 -0
- package/bin/skills/paper-2-web/references/usage_examples.md +436 -0
- package/bin/skills/peer-review/SKILL.md +702 -0
- package/bin/skills/peer-review/references/calibration_guidelines.md +196 -0
- package/bin/skills/peer-review/references/common_issues.md +552 -0
- package/bin/skills/peer-review/references/paper_mechanics.md +269 -0
- package/bin/skills/peer-review/references/reporting_standards.md +290 -0
- package/bin/skills/peer-review/references/scoring_rubric.md +239 -0
- package/bin/skills/pptx-posters/SKILL.md +410 -0
- package/bin/skills/pptx-posters/assets/poster_html_template.html +257 -0
- package/bin/skills/pptx-posters/assets/poster_quality_checklist.md +358 -0
- package/bin/skills/pptx-posters/references/poster_content_guide.md +748 -0
- package/bin/skills/pptx-posters/references/poster_design_principles.md +806 -0
- package/bin/skills/pptx-posters/references/poster_layout_design.md +900 -0
- package/bin/skills/research-grants/README.md +285 -0
- package/bin/skills/research-grants/SKILL.md +938 -0
- package/bin/skills/research-grants/assets/budget_justification_template.md +453 -0
- package/bin/skills/research-grants/assets/nih_specific_aims_template.md +166 -0
- package/bin/skills/research-grants/assets/nsf_project_summary_template.md +92 -0
- package/bin/skills/research-grants/references/broader_impacts.md +392 -0
- package/bin/skills/research-grants/references/darpa_guidelines.md +636 -0
- package/bin/skills/research-grants/references/doe_guidelines.md +586 -0
- package/bin/skills/research-grants/references/nih_guidelines.md +851 -0
- package/bin/skills/research-grants/references/nsf_guidelines.md +570 -0
- package/bin/skills/research-grants/references/specific_aims_guide.md +458 -0
- package/bin/skills/research-lookup/README.md +156 -0
- package/bin/skills/research-lookup/SKILL.md +606 -0
- package/bin/skills/research-lookup/examples.py +174 -0
- package/bin/skills/research-lookup/lookup.py +187 -0
- package/bin/skills/research-lookup/research_lookup.py +483 -0
- package/bin/skills/research-lookup/scripts/research_lookup.py +483 -0
- package/bin/skills/scholar-evaluation/SKILL.md +289 -0
- package/bin/skills/scholar-evaluation/references/evaluation_framework.md +663 -0
- package/bin/skills/scholar-evaluation/scripts/calculate_scores.py +366 -0
- package/bin/skills/scientific-critical-thinking/SKILL.md +566 -0
- package/bin/skills/scientific-critical-thinking/references/common_biases.md +364 -0
- package/bin/skills/scientific-critical-thinking/references/evidence_hierarchy.md +484 -0
- package/bin/skills/scientific-critical-thinking/references/experimental_design.md +496 -0
- package/bin/skills/scientific-critical-thinking/references/logical_fallacies.md +478 -0
- package/bin/skills/scientific-critical-thinking/references/scientific_method.md +169 -0
- package/bin/skills/scientific-critical-thinking/references/statistical_pitfalls.md +506 -0
- package/bin/skills/scientific-schematics/QUICK_REFERENCE.md +207 -0
- package/bin/skills/scientific-schematics/README.md +327 -0
- package/bin/skills/scientific-schematics/SKILL.md +615 -0
- package/bin/skills/scientific-schematics/example_usage.sh +89 -0
- package/bin/skills/scientific-schematics/references/best_practices.md +559 -0
- package/bin/skills/scientific-schematics/scripts/generate_schematic.py +135 -0
- package/bin/skills/scientific-schematics/scripts/generate_schematic_ai.py +807 -0
- package/bin/skills/scientific-schematics/test_ai_generation.py +243 -0
- package/bin/skills/scientific-slides/SKILL.md +942 -0
- package/bin/skills/scientific-slides/assets/timing_guidelines.md +597 -0
- package/bin/skills/scientific-slides/references/data_visualization_slides.md +708 -0
- package/bin/skills/scientific-slides/references/presentation_structure.md +642 -0
- package/bin/skills/scientific-slides/references/slide_design_principles.md +849 -0
- package/bin/skills/scientific-slides/references/talk_types_guide.md +687 -0
- package/bin/skills/scientific-slides/references/visual_review_workflow.md +775 -0
- package/bin/skills/scientific-slides/scripts/generate_slide_image.py +143 -0
- package/bin/skills/scientific-slides/scripts/generate_slide_image_ai.py +748 -0
- package/bin/skills/scientific-slides/scripts/pdf_to_images.py +201 -0
- package/bin/skills/scientific-slides/scripts/slides_to_pdf.py +220 -0
- package/bin/skills/scientific-slides/scripts/validate_presentation.py +367 -0
- package/bin/skills/scientific-writing/SKILL.md +714 -0
- package/bin/skills/scientific-writing/assets/REPORT_FORMATTING_GUIDE.md +574 -0
- package/bin/skills/scientific-writing/assets/scientific_report.sty +606 -0
- package/bin/skills/scientific-writing/assets/scientific_report_template.tex +449 -0
- package/bin/skills/scientific-writing/references/citation_styles.md +720 -0
- package/bin/skills/scientific-writing/references/figures_tables.md +806 -0
- package/bin/skills/scientific-writing/references/imrad_structure.md +686 -0
- package/bin/skills/scientific-writing/references/professional_report_formatting.md +664 -0
- package/bin/skills/scientific-writing/references/reporting_guidelines.md +748 -0
- package/bin/skills/scientific-writing/references/writing_principles.md +824 -0
- package/bin/skills/tinker/SKILL.md +2 -3
- package/bin/skills/together-ai/SKILL.md +722 -0
- package/bin/skills/treatment-plans/README.md +488 -0
- package/bin/skills/treatment-plans/SKILL.md +1579 -0
- package/bin/skills/treatment-plans/assets/STYLING_QUICK_REFERENCE.md +185 -0
- package/bin/skills/treatment-plans/assets/chronic_disease_management_plan.tex +665 -0
- package/bin/skills/treatment-plans/assets/general_medical_treatment_plan.tex +547 -0
- package/bin/skills/treatment-plans/assets/medical_treatment_plan.sty +222 -0
- package/bin/skills/treatment-plans/assets/mental_health_treatment_plan.tex +774 -0
- package/bin/skills/treatment-plans/assets/one_page_treatment_plan.tex +193 -0
- package/bin/skills/treatment-plans/assets/pain_management_plan.tex +799 -0
- package/bin/skills/treatment-plans/assets/perioperative_care_plan.tex +753 -0
- package/bin/skills/treatment-plans/assets/quality_checklist.md +471 -0
- package/bin/skills/treatment-plans/assets/rehabilitation_treatment_plan.tex +756 -0
- package/bin/skills/treatment-plans/references/goal_setting_frameworks.md +411 -0
- package/bin/skills/treatment-plans/references/intervention_guidelines.md +507 -0
- package/bin/skills/treatment-plans/references/regulatory_compliance.md +476 -0
- package/bin/skills/treatment-plans/references/specialty_specific_guidelines.md +655 -0
- package/bin/skills/treatment-plans/references/treatment_plan_standards.md +485 -0
- package/bin/skills/treatment-plans/scripts/check_completeness.py +322 -0
- package/bin/skills/treatment-plans/scripts/generate_template.py +233 -0
- package/bin/skills/treatment-plans/scripts/timeline_generator.py +385 -0
- package/bin/skills/treatment-plans/scripts/validate_treatment_plan.py +369 -0
- package/bin/skills/unsloth/SKILL.md +565 -47
- package/bin/skills/unsloth/docs/advanced-rl.md +222 -0
- package/bin/skills/unsloth/docs/chat-templates.md +141 -0
- package/bin/skills/unsloth/docs/datasets.md +489 -0
- package/bin/skills/unsloth/docs/docker-extended.md +99 -0
- package/bin/skills/unsloth/docs/dynamic-ggufs-2.0.md +116 -0
- package/bin/skills/unsloth/docs/dynamic-ggufs-aider.md +118 -0
- package/bin/skills/unsloth/docs/faq.md +91 -0
- package/bin/skills/unsloth/docs/fp16-vs-bf16.md +61 -0
- package/bin/skills/unsloth/docs/fp8-rl.md +224 -0
- package/bin/skills/unsloth/docs/glm-4.7-flash.md +997 -0
- package/bin/skills/unsloth/docs/inference-deployment-overview.md +17 -0
- package/bin/skills/unsloth/docs/inference.md +27 -0
- package/bin/skills/unsloth/docs/installation-docker.md +155 -0
- package/bin/skills/unsloth/docs/installation-pip.md +148 -0
- package/bin/skills/unsloth/docs/kernels-packing.md +190 -0
- package/bin/skills/unsloth/docs/kimi-k2.5.md +634 -0
- package/bin/skills/unsloth/docs/lm-studio.md +235 -0
- package/bin/skills/unsloth/docs/lora-hot-swapping.md +75 -0
- package/bin/skills/unsloth/docs/lora-hyperparameters.md +363 -0
- package/bin/skills/unsloth/docs/memory-efficient-rl.md +267 -0
- package/bin/skills/unsloth/docs/model-selection.md +70 -0
- package/bin/skills/unsloth/docs/models.md +532 -0
- package/bin/skills/unsloth/docs/multi-gpu-ddp.md +90 -0
- package/bin/skills/unsloth/docs/notebooks.md +223 -0
- package/bin/skills/unsloth/docs/overview.md +110 -0
- package/bin/skills/unsloth/docs/qwen3-coder-next-extended.md +900 -0
- package/bin/skills/unsloth/docs/qwen3-coder-next.md +900 -0
- package/bin/skills/unsloth/docs/requirements.md +45 -0
- package/bin/skills/unsloth/docs/reward-hacking.md +25 -0
- package/bin/skills/unsloth/docs/saving-to-gguf.md +138 -0
- package/bin/skills/unsloth/docs/saving-to-ollama.md +46 -0
- package/bin/skills/unsloth/docs/sglang-guide.md +278 -0
- package/bin/skills/unsloth/docs/speculative-decoding.md +70 -0
- package/bin/skills/unsloth/docs/tool-calling.md +334 -0
- package/bin/skills/unsloth/docs/troubleshooting-faq.md +204 -0
- package/bin/skills/unsloth/docs/troubleshooting-inference.md +26 -0
- package/bin/skills/unsloth/docs/tts-fine-tuning.md +149 -0
- package/bin/skills/unsloth/docs/tutorial-grpo.md +273 -0
- package/bin/skills/unsloth/docs/tutorial-llama3-ollama.md +356 -0
- package/bin/skills/unsloth/docs/vision-fine-tuning.md +135 -0
- package/bin/skills/unsloth/docs/vision-rl.md +170 -0
- package/bin/skills/unsloth/docs/vllm-engine-arguments.md +43 -0
- package/bin/skills/unsloth/docs/vllm-guide.md +98 -0
- package/bin/skills/venue-templates/SKILL.md +686 -0
- package/bin/skills/venue-templates/assets/examples/cell_summary_example.md +247 -0
- package/bin/skills/venue-templates/assets/examples/medical_structured_abstract.md +313 -0
- package/bin/skills/venue-templates/assets/examples/nature_abstract_examples.md +213 -0
- package/bin/skills/venue-templates/assets/examples/neurips_introduction_example.md +245 -0
- package/bin/skills/venue-templates/assets/grants/nih_specific_aims.tex +235 -0
- package/bin/skills/venue-templates/assets/grants/nsf_proposal_template.tex +375 -0
- package/bin/skills/venue-templates/assets/journals/nature_article.tex +171 -0
- package/bin/skills/venue-templates/assets/journals/neurips_article.tex +283 -0
- package/bin/skills/venue-templates/assets/journals/plos_one.tex +317 -0
- package/bin/skills/venue-templates/assets/posters/beamerposter_academic.tex +311 -0
- package/bin/skills/venue-templates/references/cell_press_style.md +483 -0
- package/bin/skills/venue-templates/references/conferences_formatting.md +564 -0
- package/bin/skills/venue-templates/references/cs_conference_style.md +463 -0
- package/bin/skills/venue-templates/references/grants_requirements.md +787 -0
- package/bin/skills/venue-templates/references/journals_formatting.md +486 -0
- package/bin/skills/venue-templates/references/medical_journal_styles.md +535 -0
- package/bin/skills/venue-templates/references/ml_conference_style.md +556 -0
- package/bin/skills/venue-templates/references/nature_science_style.md +405 -0
- package/bin/skills/venue-templates/references/posters_guidelines.md +628 -0
- package/bin/skills/venue-templates/references/reviewer_expectations.md +417 -0
- package/bin/skills/venue-templates/references/venue_writing_styles.md +321 -0
- package/bin/skills/venue-templates/scripts/customize_template.py +195 -0
- package/bin/skills/venue-templates/scripts/query_template.py +266 -0
- package/bin/skills/venue-templates/scripts/validate_format.py +250 -0
- package/bin/synsc +0 -0
- package/package.json +1 -1
- package/bin/skills/unsloth/references/index.md +0 -7
- package/bin/skills/unsloth/references/llms-full.md +0 -16799
- package/bin/skills/unsloth/references/llms-txt.md +0 -12044
- package/bin/skills/unsloth/references/llms.md +0 -82
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
\documentclass[10pt,letterpaper]{article}
|
|
2
|
+
|
|
3
|
+
% Packages
|
|
4
|
+
\usepackage[margin=0.5in]{geometry}
|
|
5
|
+
\usepackage[utf8]{inputenc}
|
|
6
|
+
\usepackage[T1]{fontenc}
|
|
7
|
+
\usepackage{helvet}
|
|
8
|
+
\renewcommand{\familydefault}{\sfdefault}
|
|
9
|
+
\usepackage{xcolor}
|
|
10
|
+
\usepackage{tcolorbox}
|
|
11
|
+
\usepackage{array}
|
|
12
|
+
\usepackage{tabularx}
|
|
13
|
+
\usepackage{booktabs}
|
|
14
|
+
\usepackage{enumitem}
|
|
15
|
+
\usepackage{titlesec}
|
|
16
|
+
\usepackage{fancyhdr}
|
|
17
|
+
\usepackage{multicol}
|
|
18
|
+
\usepackage{graphicx}
|
|
19
|
+
\usepackage{float}
|
|
20
|
+
|
|
21
|
+
% Color definitions
|
|
22
|
+
\definecolor{headerblue}{RGB}{0,102,204}
|
|
23
|
+
\definecolor{highlightgreen}{RGB}{0,153,76}
|
|
24
|
+
\definecolor{warningred}{RGB}{204,0,0}
|
|
25
|
+
\definecolor{highlightgray}{RGB}{240,240,240}
|
|
26
|
+
\definecolor{biomarkerblue}{RGB}{51,102,204}
|
|
27
|
+
|
|
28
|
+
% Section formatting - compact
|
|
29
|
+
\titleformat{\section}{\normalfont\fontsize{11}{12}\bfseries\color{headerblue}}{\thesection}{0.5em}{}
|
|
30
|
+
\titlespacing*{\section}{0pt}{4pt}{2pt}
|
|
31
|
+
|
|
32
|
+
\titleformat{\subsection}{\normalfont\fontsize{10}{11}\bfseries}{\thesubsection}{0.5em}{}
|
|
33
|
+
\titlespacing*{\subsection}{0pt}{3pt}{1pt}
|
|
34
|
+
|
|
35
|
+
% List formatting - ultra compact
|
|
36
|
+
\setlist[itemize]{leftmargin=*,itemsep=0pt,parsep=0pt,topsep=1pt}
|
|
37
|
+
\setlist[enumerate]{leftmargin=*,itemsep=0pt,parsep=0pt,topsep=1pt}
|
|
38
|
+
|
|
39
|
+
% Remove paragraph indentation
|
|
40
|
+
\setlength{\parindent}{0pt}
|
|
41
|
+
\setlength{\parskip}{2pt}
|
|
42
|
+
|
|
43
|
+
% Header/footer
|
|
44
|
+
\pagestyle{fancy}
|
|
45
|
+
\fancyhf{}
|
|
46
|
+
\fancyhead[L]{\footnotesize \textbf{Clinical Decision Support: [COHORT NAME]}}
|
|
47
|
+
\fancyhead[R]{\footnotesize Page \thepage}
|
|
48
|
+
\renewcommand{\headrulewidth}{0.5pt}
|
|
49
|
+
\fancyfoot[C]{\footnotesize Confidential Medical Document - For Professional Use Only}
|
|
50
|
+
|
|
51
|
+
\begin{document}
|
|
52
|
+
|
|
53
|
+
% Title block - compact
|
|
54
|
+
\begin{center}
|
|
55
|
+
{\fontsize{14}{16}\selectfont\bfseries\color{headerblue} PATIENT COHORT ANALYSIS REPORT}\\[2pt]
|
|
56
|
+
{\fontsize{12}{14}\selectfont\bfseries [Cohort Description - e.g., NSCLC Patients Stratified by PD-L1 Expression]}\\[2pt]
|
|
57
|
+
{\fontsize{10}{12}\selectfont [Institution/Study Name]}\\[1pt]
|
|
58
|
+
{\fontsize{9}{11}\selectfont Report Date: [Date]}
|
|
59
|
+
\end{center}
|
|
60
|
+
|
|
61
|
+
\vspace{4pt}
|
|
62
|
+
|
|
63
|
+
% Executive Summary Box
|
|
64
|
+
\begin{tcolorbox}[colback=highlightgray,colframe=headerblue,title=\textbf{Executive Summary},fonttitle=\bfseries\small,coltitle=black]
|
|
65
|
+
{\small
|
|
66
|
+
\textbf{Cohort}: [n=XX] patients with [disease] stratified by [biomarker/characteristic]
|
|
67
|
+
|
|
68
|
+
\textbf{Key Findings}:
|
|
69
|
+
\begin{itemize}
|
|
70
|
+
\item [Primary finding - e.g., Biomarker+ patients had significantly longer PFS]
|
|
71
|
+
\item [Secondary finding - e.g., ORR 45\% vs 30\%, p=0.023]
|
|
72
|
+
\item [Safety finding - e.g., Similar toxicity profiles between groups]
|
|
73
|
+
\end{itemize}
|
|
74
|
+
|
|
75
|
+
\textbf{Clinical Implications}: [Treatment recommendations based on findings]
|
|
76
|
+
}
|
|
77
|
+
\end{tcolorbox}
|
|
78
|
+
|
|
79
|
+
\vspace{2pt}
|
|
80
|
+
|
|
81
|
+
\section{Cohort Characteristics}
|
|
82
|
+
|
|
83
|
+
\subsection{Patient Demographics}
|
|
84
|
+
|
|
85
|
+
[Narrative description of cohort composition, inclusion/exclusion criteria, time period]
|
|
86
|
+
|
|
87
|
+
\begin{table}[H]
|
|
88
|
+
\centering
|
|
89
|
+
\small
|
|
90
|
+
\begin{tabular}{lccc}
|
|
91
|
+
\toprule
|
|
92
|
+
\textbf{Characteristic} & \textbf{Group A (n=XX)} & \textbf{Group B (n=XX)} & \textbf{p-value} \\
|
|
93
|
+
\midrule
|
|
94
|
+
Age, years (median [IQR]) & XX [XX-XX] & XX [XX-XX] & X.XX \\
|
|
95
|
+
Sex, n (\%) & & & \\
|
|
96
|
+
\quad Male & XX (XX\%) & XX (XX\%) & X.XX \\
|
|
97
|
+
\quad Female & XX (XX\%) & XX (XX\%) & \\
|
|
98
|
+
ECOG PS, n (\%) & & & \\
|
|
99
|
+
\quad 0-1 & XX (XX\%) & XX (XX\%) & X.XX \\
|
|
100
|
+
\quad 2 & XX (XX\%) & XX (XX\%) & \\
|
|
101
|
+
Disease Stage, n (\%) & & & \\
|
|
102
|
+
\quad III & XX (XX\%) & XX (XX\%) & X.XX \\
|
|
103
|
+
\quad IV & XX (XX\%) & XX (XX\%) & \\
|
|
104
|
+
Prior Lines of Therapy & & & \\
|
|
105
|
+
\quad 0 (treatment-naïve) & XX (XX\%) & XX (XX\%) & X.XX \\
|
|
106
|
+
\quad 1-2 & XX (XX\%) & XX (XX\%) & \\
|
|
107
|
+
\quad $\geq$3 & XX (XX\%) & XX (XX\%) & \\
|
|
108
|
+
\bottomrule
|
|
109
|
+
\end{tabular}
|
|
110
|
+
\caption{Baseline patient demographics and clinical characteristics}
|
|
111
|
+
\end{table}
|
|
112
|
+
|
|
113
|
+
\subsection{Biomarker Profile}
|
|
114
|
+
|
|
115
|
+
\begin{tcolorbox}[colback=biomarkerblue!10,colframe=biomarkerblue,title=\textbf{Biomarker Stratification},fonttitle=\bfseries\small]
|
|
116
|
+
{\small
|
|
117
|
+
\textbf{Classification Method}: [e.g., IHC for PD-L1 expression, NGS for mutations, gene expression clustering]
|
|
118
|
+
|
|
119
|
+
\textbf{Group Definitions}:
|
|
120
|
+
\begin{itemize}
|
|
121
|
+
\item \textbf{Group A (Biomarker+)}: [n=XX] - [Definition, e.g., PD-L1 TPS $\geq$50\%, or Mesenchymal-Immune-Active subtype]
|
|
122
|
+
\item \textbf{Group B (Biomarker-)}: [n=XX] - [Definition, e.g., PD-L1 TPS <50\%]
|
|
123
|
+
\end{itemize}
|
|
124
|
+
|
|
125
|
+
\textbf{Molecular Features of Group A}:
|
|
126
|
+
\begin{itemize}
|
|
127
|
+
\item [Feature 1]: XX\% (n=XX) - [Clinical significance]
|
|
128
|
+
\item [Feature 2]: XX\% (n=XX) - [Clinical significance]
|
|
129
|
+
\item [Feature 3]: Elevated/decreased [marker] (median [value])
|
|
130
|
+
\end{itemize}
|
|
131
|
+
}
|
|
132
|
+
\end{tcolorbox}
|
|
133
|
+
|
|
134
|
+
\section{Treatment Exposures}
|
|
135
|
+
|
|
136
|
+
\begin{table}[H]
|
|
137
|
+
\centering
|
|
138
|
+
\small
|
|
139
|
+
\begin{tabular}{lcc}
|
|
140
|
+
\toprule
|
|
141
|
+
\textbf{Treatment Received} & \textbf{Group A, n (\%)} & \textbf{Group B, n (\%)} \\
|
|
142
|
+
\midrule
|
|
143
|
+
[Treatment regimen 1] & XX (XX\%) & XX (XX\%) \\
|
|
144
|
+
[Treatment regimen 2] & XX (XX\%) & XX (XX\%) \\
|
|
145
|
+
[Treatment regimen 3] & XX (XX\%) & XX (XX\%) \\
|
|
146
|
+
Median cycles received (range) & X (X-X) & X (X-X) \\
|
|
147
|
+
\bottomrule
|
|
148
|
+
\end{tabular}
|
|
149
|
+
\caption{Treatment exposures by biomarker group}
|
|
150
|
+
\end{table}
|
|
151
|
+
|
|
152
|
+
\section{Treatment Outcomes}
|
|
153
|
+
|
|
154
|
+
\subsection{Response Rates}
|
|
155
|
+
|
|
156
|
+
\begin{table}[H]
|
|
157
|
+
\centering
|
|
158
|
+
\small
|
|
159
|
+
\begin{tabular}{lccc}
|
|
160
|
+
\toprule
|
|
161
|
+
\textbf{Response Category} & \textbf{Group A (n=XX)} & \textbf{Group B (n=XX)} & \textbf{p-value} \\
|
|
162
|
+
\midrule
|
|
163
|
+
Objective Response Rate (ORR) & XX\% [95\% CI] & XX\% [95\% CI] & X.XXX \\
|
|
164
|
+
\quad Complete Response (CR) & XX (XX\%) & XX (XX\%) & \\
|
|
165
|
+
\quad Partial Response (PR) & XX (XX\%) & XX (XX\%) & \\
|
|
166
|
+
Disease Control Rate (DCR) & XX\% [95\% CI] & XX\% [95\% CI] & X.XXX \\
|
|
167
|
+
\quad Stable Disease (SD) & XX (XX\%) & XX (XX\%) & \\
|
|
168
|
+
Progressive Disease (PD) & XX (XX\%) & XX (XX\%) & \\
|
|
169
|
+
\midrule
|
|
170
|
+
Median Duration of Response (months) & X.X (95\% CI X.X-X.X) & X.X (95\% CI X.X-X.X) & X.XXX \\
|
|
171
|
+
\bottomrule
|
|
172
|
+
\end{tabular}
|
|
173
|
+
\caption{Best overall response by biomarker group (RECIST v1.1 criteria)}
|
|
174
|
+
\end{table}
|
|
175
|
+
|
|
176
|
+
\subsection{Survival Outcomes}
|
|
177
|
+
|
|
178
|
+
\textbf{Progression-Free Survival (PFS)}:
|
|
179
|
+
\begin{itemize}
|
|
180
|
+
\item Group A: Median X.X months (95\% CI X.X-X.X), 12-month PFS rate: XX\%
|
|
181
|
+
\item Group B: Median X.X months (95\% CI X.X-X.X), 12-month PFS rate: XX\%
|
|
182
|
+
\item Hazard Ratio: X.XX (95\% CI X.XX-X.XX), log-rank p = X.XXX
|
|
183
|
+
\item \textit{[Interpretation: Group A had XX\% reduction in risk of progression compared to Group B]}
|
|
184
|
+
\end{itemize}
|
|
185
|
+
|
|
186
|
+
\textbf{Overall Survival (OS)}:
|
|
187
|
+
\begin{itemize}
|
|
188
|
+
\item Group A: Median XX.X months (95\% CI XX.X-XX.X), 12-month OS rate: XX\%
|
|
189
|
+
\item Group B: Median XX.X months (95\% CI XX.X-XX.X), 12-month OS rate: XX\%
|
|
190
|
+
\item Hazard Ratio: X.XX (95\% CI X.XX-X.XX), log-rank p = X.XXX
|
|
191
|
+
\item \textit{[Interpretation: XX\% reduction in risk of death for Group A]}
|
|
192
|
+
\end{itemize}
|
|
193
|
+
|
|
194
|
+
% Note: Include Kaplan-Meier curves as figures if available
|
|
195
|
+
% \begin{figure}[H]
|
|
196
|
+
% \centering
|
|
197
|
+
% \includegraphics[width=0.9\textwidth]{figures/pfs_by_biomarker.pdf}
|
|
198
|
+
% \caption{Progression-free survival by biomarker status}
|
|
199
|
+
% \end{figure}
|
|
200
|
+
|
|
201
|
+
\section{Safety and Tolerability}
|
|
202
|
+
|
|
203
|
+
\begin{table}[H]
|
|
204
|
+
\centering
|
|
205
|
+
\small
|
|
206
|
+
\begin{tabular}{lcccc}
|
|
207
|
+
\toprule
|
|
208
|
+
\multirow{2}{*}{\textbf{Adverse Event}} & \multicolumn{2}{c}{\textbf{Any Grade, n (\%)}} & \multicolumn{2}{c}{\textbf{Grade 3-4, n (\%)}} \\
|
|
209
|
+
\cmidrule(lr){2-3} \cmidrule(lr){4-5}
|
|
210
|
+
& Group A & Group B & Group A & Group B \\
|
|
211
|
+
\midrule
|
|
212
|
+
[AE 1 - e.g., Fatigue] & XX (XX\%) & XX (XX\%) & X (X\%) & X (X\%) \\
|
|
213
|
+
[AE 2 - e.g., Nausea] & XX (XX\%) & XX (XX\%) & X (X\%) & X (X\%) \\
|
|
214
|
+
[AE 3 - e.g., Neutropenia] & XX (XX\%) & XX (XX\%) & X (X\%) & X (X\%) \\
|
|
215
|
+
[AE 4 - e.g., Diarrhea] & XX (XX\%) & XX (XX\%) & X (X\%) & X (X\%) \\
|
|
216
|
+
[AE 5 - immune-related] & XX (XX\%) & XX (XX\%) & X (X\%) & X (X\%) \\
|
|
217
|
+
\midrule
|
|
218
|
+
Treatment discontinuation & XX (XX\%) & XX (XX\%) & \multicolumn{2}{c}{-} \\
|
|
219
|
+
Dose reductions & XX (XX\%) & XX (XX\%) & \multicolumn{2}{c}{-} \\
|
|
220
|
+
\bottomrule
|
|
221
|
+
\end{tabular}
|
|
222
|
+
\caption{Treatment-emergent adverse events by biomarker group (CTCAE v5.0)}
|
|
223
|
+
\end{table}
|
|
224
|
+
|
|
225
|
+
\section{Statistical Analysis}
|
|
226
|
+
|
|
227
|
+
\subsection{Methods}
|
|
228
|
+
|
|
229
|
+
\textbf{Study Design}: [Retrospective cohort analysis / Prospective cohort / Post-hoc analysis of clinical trial]
|
|
230
|
+
|
|
231
|
+
\textbf{Statistical Tests}:
|
|
232
|
+
\begin{itemize}
|
|
233
|
+
\item Continuous variables: [t-test / Mann-Whitney U test], reported as [mean $\pm$ SD / median [IQR]]
|
|
234
|
+
\item Categorical variables: Chi-square test or Fisher's exact test (if expected count <5)
|
|
235
|
+
\item Survival analysis: Kaplan-Meier method, log-rank test, Cox proportional hazards regression
|
|
236
|
+
\item Significance level: Two-sided p<0.05 considered statistically significant
|
|
237
|
+
\item Software: [R version X.X.X, survival package / SAS / Stata / Python lifelines]
|
|
238
|
+
\end{itemize}
|
|
239
|
+
|
|
240
|
+
\subsection{Multivariable Analysis}
|
|
241
|
+
|
|
242
|
+
Cox regression model adjusting for baseline prognostic factors:
|
|
243
|
+
|
|
244
|
+
\begin{table}[H]
|
|
245
|
+
\centering
|
|
246
|
+
\small
|
|
247
|
+
\begin{tabular}{lccc}
|
|
248
|
+
\toprule
|
|
249
|
+
\textbf{Variable} & \textbf{Hazard Ratio} & \textbf{95\% CI} & \textbf{p-value} \\
|
|
250
|
+
\midrule
|
|
251
|
+
Biomarker+ (vs Biomarker-) & X.XX & X.XX-X.XX & X.XXX \\
|
|
252
|
+
Age (per 10 years) & X.XX & X.XX-X.XX & X.XXX \\
|
|
253
|
+
ECOG PS 2 (vs 0-1) & X.XX & X.XX-X.XX & X.XXX \\
|
|
254
|
+
Stage IV (vs III) & X.XX & X.XX-X.XX & X.XXX \\
|
|
255
|
+
[Additional variable] & X.XX & X.XX-X.XX & X.XXX \\
|
|
256
|
+
\bottomrule
|
|
257
|
+
\end{tabular}
|
|
258
|
+
\caption{Multivariable Cox regression for progression-free survival}
|
|
259
|
+
\end{table}
|
|
260
|
+
|
|
261
|
+
\textbf{Interpretation}: After adjusting for age, performance status, and disease stage, [biomarker status] remained an independent predictor of [PFS/OS] (HR X.XX, 95\% CI X.XX-X.XX, p=X.XXX).
|
|
262
|
+
|
|
263
|
+
\section{Clinical Implications}
|
|
264
|
+
|
|
265
|
+
\begin{tcolorbox}[colback=highlightgreen!10,colframe=highlightgreen,title=\textbf{Treatment Recommendations},fonttitle=\bfseries\small]
|
|
266
|
+
{\small
|
|
267
|
+
\textbf{For Biomarker-Positive Patients (Group A)}:
|
|
268
|
+
|
|
269
|
+
\textbf{Preferred Regimen} (GRADE 1A):
|
|
270
|
+
\begin{itemize}
|
|
271
|
+
\item [Specific treatment based on biomarker]
|
|
272
|
+
\item Evidence: [Trial name/data showing benefit in biomarker+ population]
|
|
273
|
+
\item Expected outcomes: ORR XX\%, median PFS XX months
|
|
274
|
+
\end{itemize}
|
|
275
|
+
|
|
276
|
+
\textbf{Monitoring}:
|
|
277
|
+
\begin{itemize}
|
|
278
|
+
\item Imaging every [X weeks] for response assessment
|
|
279
|
+
\item [Specific lab monitoring for biomarker+ patients]
|
|
280
|
+
\item Watch for [specific toxicities more common in this group]
|
|
281
|
+
\end{itemize}
|
|
282
|
+
|
|
283
|
+
\textbf{For Biomarker-Negative Patients (Group B)}:
|
|
284
|
+
|
|
285
|
+
\textbf{Standard Regimen} (GRADE 1B):
|
|
286
|
+
\begin{itemize}
|
|
287
|
+
\item [Standard therapy for biomarker- population]
|
|
288
|
+
\item Expected outcomes: ORR XX\%, median PFS XX months
|
|
289
|
+
\item Consider [alternative approaches or clinical trial enrollment]
|
|
290
|
+
\end{itemize}
|
|
291
|
+
}
|
|
292
|
+
\end{tcolorbox}
|
|
293
|
+
|
|
294
|
+
\section{Subgroup Analyses}
|
|
295
|
+
|
|
296
|
+
\textbf{Interaction Testing}: Treatment effect by biomarker subgroup (p-interaction = X.XXX)
|
|
297
|
+
|
|
298
|
+
[Describe whether treatment benefit differs by biomarker status - i.e., predictive biomarker]
|
|
299
|
+
|
|
300
|
+
Additional exploratory subgroups:
|
|
301
|
+
\begin{itemize}
|
|
302
|
+
\item Age <65 vs $\geq$65 years
|
|
303
|
+
\item Sex (male vs female)
|
|
304
|
+
\item Prior lines of therapy (0 vs 1+ prior treatments)
|
|
305
|
+
\item Disease burden (high vs low tumor burden)
|
|
306
|
+
\end{itemize}
|
|
307
|
+
|
|
308
|
+
\section{Strengths and Limitations}
|
|
309
|
+
|
|
310
|
+
\subsection{Strengths}
|
|
311
|
+
\begin{itemize}
|
|
312
|
+
\item [e.g., Biomarker-stratified analysis with prospectively defined groups]
|
|
313
|
+
\item [e.g., Adequate sample size for statistical power]
|
|
314
|
+
\item [e.g., Standardized response assessment using RECIST v1.1]
|
|
315
|
+
\item [e.g., Multivariable analysis adjusting for confounders]
|
|
316
|
+
\end{itemize}
|
|
317
|
+
|
|
318
|
+
\subsection{Limitations}
|
|
319
|
+
\begin{itemize}
|
|
320
|
+
\item [e.g., Retrospective design with potential selection bias]
|
|
321
|
+
\item [e.g., Single-institution cohort may limit generalizability]
|
|
322
|
+
\item [e.g., Biomarker testing not available for all patients (XX\% tested)]
|
|
323
|
+
\item [e.g., Limited follow-up for OS (median X months)]
|
|
324
|
+
\item [e.g., Heterogeneous treatment regimens across cohort]
|
|
325
|
+
\end{itemize}
|
|
326
|
+
|
|
327
|
+
\section{Conclusions}
|
|
328
|
+
|
|
329
|
+
[Paragraph summarizing key findings]
|
|
330
|
+
|
|
331
|
+
[Biomarker-positive patients demonstrated [significantly better/worse] outcomes compared to biomarker-negative patients, with [outcome metric] of [values] (HR X.XX, p=X.XXX). These findings support [biomarker-guided therapy selection / routine biomarker testing / specific treatment approach].]
|
|
332
|
+
|
|
333
|
+
[Future directions: Prospective validation in independent cohort, investigation of mechanisms, clinical trial design implications]
|
|
334
|
+
|
|
335
|
+
\section{References}
|
|
336
|
+
|
|
337
|
+
\begin{enumerate}
|
|
338
|
+
\item [Reference 1 - Key clinical trial]
|
|
339
|
+
\item [Reference 2 - Biomarker validation study]
|
|
340
|
+
\item [Reference 3 - Guideline reference (NCCN, ASCO, ESMO)]
|
|
341
|
+
\item [Reference 4 - Statistical methods reference]
|
|
342
|
+
\item [Reference 5 - Additional supporting evidence]
|
|
343
|
+
\end{enumerate}
|
|
344
|
+
|
|
345
|
+
\vspace{10pt}
|
|
346
|
+
|
|
347
|
+
\hrule
|
|
348
|
+
\vspace{4pt}
|
|
349
|
+
{\footnotesize
|
|
350
|
+
\textbf{Report Prepared By}: [Name, Title]\\
|
|
351
|
+
\textbf{Date}: [Date]\\
|
|
352
|
+
\textbf{Contact}: [Email/Phone]\\
|
|
353
|
+
\textbf{Institutional Review}: [IRB approval number if applicable]\\
|
|
354
|
+
\textbf{Data Cut-Off Date}: [Date]\\
|
|
355
|
+
\textbf{Confidentiality}: This document contains proprietary clinical data. Distribution restricted to authorized personnel only.
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
\end{document}
|
|
359
|
+
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
% Clinical Decision Support Color Schemes
|
|
2
|
+
% For use in LaTeX documents
|
|
3
|
+
|
|
4
|
+
% ============================================================================
|
|
5
|
+
% PRIMARY THEME COLORS
|
|
6
|
+
% ============================================================================
|
|
7
|
+
|
|
8
|
+
% Header and structural elements
|
|
9
|
+
\definecolor{headerblue}{RGB}{0,102,204} % Section headers, titles
|
|
10
|
+
\definecolor{highlightgray}{RGB}{240,240,240} % Background boxes
|
|
11
|
+
|
|
12
|
+
% ============================================================================
|
|
13
|
+
% RECOMMENDATION STRENGTH COLORS
|
|
14
|
+
% ============================================================================
|
|
15
|
+
|
|
16
|
+
% Strong recommendations (benefits clearly outweigh risks)
|
|
17
|
+
\definecolor{stronggreen}{RGB}{0,153,76} % Grade 1A, 1B
|
|
18
|
+
\definecolor{strongdark}{RGB}{0,120,60} % Darker variant for emphasis
|
|
19
|
+
|
|
20
|
+
% Conditional recommendations (trade-offs exist)
|
|
21
|
+
\definecolor{conditionalyellow}{RGB}{255,193,7} % Grade 2A, 2B, 2C
|
|
22
|
+
\definecolor{conditionalamber}{RGB}{255,160,0} % Darker variant
|
|
23
|
+
|
|
24
|
+
% Research/Investigational (insufficient evidence)
|
|
25
|
+
\definecolor{researchblue}{RGB}{33,150,243} % Clinical trials
|
|
26
|
+
\definecolor{researchdark}{RGB}{25,118,210} % Darker variant
|
|
27
|
+
|
|
28
|
+
% Not recommended / Contraindicated
|
|
29
|
+
\definecolor{warningred}{RGB}{204,0,0} % Strong recommendation against
|
|
30
|
+
\definecolor{dangerred}{RGB}{220,20,60} % Critical warnings, urgent actions
|
|
31
|
+
|
|
32
|
+
% ============================================================================
|
|
33
|
+
% URGENCY LEVELS (Clinical Pathways)
|
|
34
|
+
% ============================================================================
|
|
35
|
+
|
|
36
|
+
\definecolor{urgentred}{RGB}{220,20,60} % Immediate action (<1 hour)
|
|
37
|
+
\definecolor{semiurgent}{RGB}{255,152,0} % Action within 24 hours
|
|
38
|
+
\definecolor{routineblue}{RGB}{100,181,246} % Routine care (>24 hours)
|
|
39
|
+
\definecolor{actiongreen}{RGB}{0,153,76} % Standard interventions
|
|
40
|
+
|
|
41
|
+
% ============================================================================
|
|
42
|
+
% BIOMARKER CATEGORIES
|
|
43
|
+
% ============================================================================
|
|
44
|
+
|
|
45
|
+
% Alteration types
|
|
46
|
+
\definecolor{mutationred}{RGB}{244,67,54} % Point mutations, SNVs
|
|
47
|
+
\definecolor{amplificationblue}{RGB}{33,150,243} % Copy number gains
|
|
48
|
+
\definecolor{deletionpurple}{RGB}{156,39,176} % Copy number losses
|
|
49
|
+
\definecolor{fusionpurple}{RGB}{156,39,176} % Gene fusions/rearrangements
|
|
50
|
+
\definecolor{expressionorange}{RGB}{255,152,0} % Expression alterations
|
|
51
|
+
|
|
52
|
+
% Actionability tiers
|
|
53
|
+
\definecolor{tier1green}{RGB}{0,153,76} % FDA-approved therapy
|
|
54
|
+
\definecolor{tier2orange}{RGB}{255,152,0} % Clinical trial/off-label
|
|
55
|
+
\definecolor{tier3gray}{RGB}{158,158,158} % VUS, no action
|
|
56
|
+
|
|
57
|
+
% ============================================================================
|
|
58
|
+
% STATISTICAL SIGNIFICANCE
|
|
59
|
+
% ============================================================================
|
|
60
|
+
|
|
61
|
+
\definecolor{significant}{RGB}{0,153,76} % p < 0.05, statistically significant
|
|
62
|
+
\definecolor{trending}{RGB}{255,193,7} % p = 0.05-0.10, trending
|
|
63
|
+
\definecolor{nonsignificant}{RGB}{158,158,158} % p > 0.10, not significant
|
|
64
|
+
|
|
65
|
+
% ============================================================================
|
|
66
|
+
% OUTCOME CATEGORIES
|
|
67
|
+
% ============================================================================
|
|
68
|
+
|
|
69
|
+
% Response assessment (RECIST)
|
|
70
|
+
\definecolor{completeresponse}{RGB}{0,153,76} % CR (complete response)
|
|
71
|
+
\definecolor{partialresponse}{RGB}{76,175,80} % PR (partial response)
|
|
72
|
+
\definecolor{stabledisease}{RGB}{255,193,7} % SD (stable disease)
|
|
73
|
+
\definecolor{progressivedisease}{RGB}{244,67,54} % PD (progressive disease)
|
|
74
|
+
|
|
75
|
+
% Survival outcomes
|
|
76
|
+
\definecolor{survivedgreen}{RGB}{0,153,76} % Patient alive
|
|
77
|
+
\definecolor{eventred}{RGB}{244,67,54} % Event occurred (death, progression)
|
|
78
|
+
\definecolor{censoredgray}{RGB}{158,158,158} % Censored observation
|
|
79
|
+
|
|
80
|
+
% ============================================================================
|
|
81
|
+
% ADVERSE EVENT SEVERITY (CTCAE)
|
|
82
|
+
% ============================================================================
|
|
83
|
+
|
|
84
|
+
\definecolor{grade1}{RGB}{255,235,59} % Mild
|
|
85
|
+
\definecolor{grade2}{RGB}{255,193,7} % Moderate
|
|
86
|
+
\definecolor{grade3}{RGB}{255,152,0} % Severe
|
|
87
|
+
\definecolor{grade4}{RGB}{244,67,54} % Life-threatening
|
|
88
|
+
\definecolor{grade5}{RGB}{198,40,40} % Fatal
|
|
89
|
+
|
|
90
|
+
% ============================================================================
|
|
91
|
+
% COLORBLIND-SAFE PALETTE (Okabe-Ito)
|
|
92
|
+
% ============================================================================
|
|
93
|
+
% Use these for graphs/figures to ensure accessibility
|
|
94
|
+
|
|
95
|
+
\definecolor{okabe1}{RGB}{230,159,0} % Orange
|
|
96
|
+
\definecolor{okabe2}{RGB}{86,180,233} % Sky blue
|
|
97
|
+
\definecolor{okabe3}{RGB}{0,158,115} % Bluish green
|
|
98
|
+
\definecolor{okabe4}{RGB}{240,228,66} % Yellow
|
|
99
|
+
\definecolor{okabe5}{RGB}{0,114,178} % Blue
|
|
100
|
+
\definecolor{okabe6}{RGB}{213,94,0} % Vermillion
|
|
101
|
+
\definecolor{okabe7}{RGB}{204,121,167} % Reddish purple
|
|
102
|
+
|
|
103
|
+
% ============================================================================
|
|
104
|
+
% USAGE EXAMPLES
|
|
105
|
+
% ============================================================================
|
|
106
|
+
|
|
107
|
+
% Example 1: Strong recommendation box
|
|
108
|
+
% \begin{tcolorbox}[enhanced,colback=stronggreen!10,colframe=stronggreen,
|
|
109
|
+
% title={\textbf{STRONG RECOMMENDATION} \hfill \textbf{GRADE: 1A}}]
|
|
110
|
+
% We recommend osimertinib for EGFR-mutated NSCLC...
|
|
111
|
+
% \end{tcolorbox}
|
|
112
|
+
|
|
113
|
+
% Example 2: Conditional recommendation box
|
|
114
|
+
% \begin{tcolorbox}[enhanced,colback=conditionalyellow!10,colframe=conditionalyellow,
|
|
115
|
+
% title={\textbf{CONDITIONAL RECOMMENDATION} \hfill \textbf{GRADE: 2B}}]
|
|
116
|
+
% We suggest considering maintenance therapy...
|
|
117
|
+
% \end{tcolorbox}
|
|
118
|
+
|
|
119
|
+
% Example 3: Biomarker alteration
|
|
120
|
+
% \colorbox{mutationred!60}{\textcolor{white}{\textbf{MUTATION}}}
|
|
121
|
+
|
|
122
|
+
% Example 4: Statistical significance in table
|
|
123
|
+
% \cellcolor{significant!20} p < 0.001
|
|
124
|
+
|
|
125
|
+
% Example 5: Adverse event severity
|
|
126
|
+
% \textcolor{grade3}{Grade 3} or \colorbox{grade3!30}{Grade 3}
|
|
127
|
+
|
|
128
|
+
% ============================================================================
|
|
129
|
+
% ACCESSIBILITY NOTES
|
|
130
|
+
% ============================================================================
|
|
131
|
+
|
|
132
|
+
% 1. Always use sufficient color contrast (4.5:1 ratio for normal text)
|
|
133
|
+
% 2. Do not rely on color alone - use symbols/text as well
|
|
134
|
+
% 3. Test in grayscale to ensure readability
|
|
135
|
+
% 4. Use Okabe-Ito palette for colorblind accessibility in figures
|
|
136
|
+
% 5. Add text labels to colored boxes ("STRONG", "CONDITIONAL", etc.)
|
|
137
|
+
|
|
138
|
+
% ============================================================================
|
|
139
|
+
% STYLE CONSISTENCY
|
|
140
|
+
% ============================================================================
|
|
141
|
+
|
|
142
|
+
% Font: Helvetica (sans-serif) for clinical documents
|
|
143
|
+
% Margins: 0.5 inches for compact professional appearance
|
|
144
|
+
% Font sizes: 10pt body, 11pt subsections, 12-14pt headers
|
|
145
|
+
% Line spacing: Compact (minimal whitespace for dense information)
|
|
146
|
+
% Boxes: tcolorbox with rounded corners, colored backgrounds at 10-20% opacity
|
|
147
|
+
|
|
148
|
+
% End of color scheme definitions
|
|
149
|
+
|