@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.
Files changed (339) hide show
  1. package/bin/skills/citation-management/SKILL.md +1109 -0
  2. package/bin/skills/citation-management/assets/bibtex_template.bib +264 -0
  3. package/bin/skills/citation-management/assets/citation_checklist.md +386 -0
  4. package/bin/skills/citation-management/references/bibtex_formatting.md +908 -0
  5. package/bin/skills/citation-management/references/citation_validation.md +794 -0
  6. package/bin/skills/citation-management/references/google_scholar_search.md +725 -0
  7. package/bin/skills/citation-management/references/metadata_extraction.md +870 -0
  8. package/bin/skills/citation-management/references/pubmed_search.md +839 -0
  9. package/bin/skills/citation-management/scripts/doi_to_bibtex.py +182 -0
  10. package/bin/skills/citation-management/scripts/extract_metadata.py +570 -0
  11. package/bin/skills/citation-management/scripts/format_bibtex.py +349 -0
  12. package/bin/skills/citation-management/scripts/search_google_scholar.py +251 -0
  13. package/bin/skills/citation-management/scripts/search_pubmed.py +348 -0
  14. package/bin/skills/citation-management/scripts/validate_citations.py +494 -0
  15. package/bin/skills/clinical-decision-support/README.md +129 -0
  16. package/bin/skills/clinical-decision-support/SKILL.md +506 -0
  17. package/bin/skills/clinical-decision-support/assets/biomarker_report_template.tex +380 -0
  18. package/bin/skills/clinical-decision-support/assets/clinical_pathway_template.tex +222 -0
  19. package/bin/skills/clinical-decision-support/assets/cohort_analysis_template.tex +359 -0
  20. package/bin/skills/clinical-decision-support/assets/color_schemes.tex +149 -0
  21. package/bin/skills/clinical-decision-support/assets/example_gbm_cohort.md +208 -0
  22. package/bin/skills/clinical-decision-support/assets/recommendation_strength_guide.md +328 -0
  23. package/bin/skills/clinical-decision-support/assets/treatment_recommendation_template.tex +529 -0
  24. package/bin/skills/clinical-decision-support/references/biomarker_classification.md +719 -0
  25. package/bin/skills/clinical-decision-support/references/clinical_decision_algorithms.md +604 -0
  26. package/bin/skills/clinical-decision-support/references/evidence_synthesis.md +840 -0
  27. package/bin/skills/clinical-decision-support/references/outcome_analysis.md +640 -0
  28. package/bin/skills/clinical-decision-support/references/patient_cohort_analysis.md +427 -0
  29. package/bin/skills/clinical-decision-support/references/treatment_recommendations.md +521 -0
  30. package/bin/skills/clinical-decision-support/scripts/biomarker_classifier.py +383 -0
  31. package/bin/skills/clinical-decision-support/scripts/build_decision_tree.py +417 -0
  32. package/bin/skills/clinical-decision-support/scripts/create_cohort_tables.py +509 -0
  33. package/bin/skills/clinical-decision-support/scripts/generate_survival_analysis.py +441 -0
  34. package/bin/skills/clinical-decision-support/scripts/validate_cds_document.py +326 -0
  35. package/bin/skills/clinical-reports/IMPLEMENTATION_SUMMARY.md +641 -0
  36. package/bin/skills/clinical-reports/README.md +236 -0
  37. package/bin/skills/clinical-reports/SKILL.md +1127 -0
  38. package/bin/skills/clinical-reports/assets/case_report_template.md +352 -0
  39. package/bin/skills/clinical-reports/assets/clinical_trial_csr_template.md +353 -0
  40. package/bin/skills/clinical-reports/assets/clinical_trial_sae_template.md +359 -0
  41. package/bin/skills/clinical-reports/assets/consult_note_template.md +305 -0
  42. package/bin/skills/clinical-reports/assets/discharge_summary_template.md +453 -0
  43. package/bin/skills/clinical-reports/assets/hipaa_compliance_checklist.md +395 -0
  44. package/bin/skills/clinical-reports/assets/history_physical_template.md +305 -0
  45. package/bin/skills/clinical-reports/assets/lab_report_template.md +309 -0
  46. package/bin/skills/clinical-reports/assets/pathology_report_template.md +249 -0
  47. package/bin/skills/clinical-reports/assets/quality_checklist.md +338 -0
  48. package/bin/skills/clinical-reports/assets/radiology_report_template.md +318 -0
  49. package/bin/skills/clinical-reports/assets/soap_note_template.md +253 -0
  50. package/bin/skills/clinical-reports/references/case_report_guidelines.md +570 -0
  51. package/bin/skills/clinical-reports/references/clinical_trial_reporting.md +693 -0
  52. package/bin/skills/clinical-reports/references/data_presentation.md +530 -0
  53. package/bin/skills/clinical-reports/references/diagnostic_reports_standards.md +629 -0
  54. package/bin/skills/clinical-reports/references/medical_terminology.md +588 -0
  55. package/bin/skills/clinical-reports/references/patient_documentation.md +744 -0
  56. package/bin/skills/clinical-reports/references/peer_review_standards.md +585 -0
  57. package/bin/skills/clinical-reports/references/regulatory_compliance.md +577 -0
  58. package/bin/skills/clinical-reports/scripts/check_deidentification.py +332 -0
  59. package/bin/skills/clinical-reports/scripts/compliance_checker.py +78 -0
  60. package/bin/skills/clinical-reports/scripts/extract_clinical_data.py +97 -0
  61. package/bin/skills/clinical-reports/scripts/format_adverse_events.py +97 -0
  62. package/bin/skills/clinical-reports/scripts/generate_report_template.py +149 -0
  63. package/bin/skills/clinical-reports/scripts/terminology_validator.py +126 -0
  64. package/bin/skills/clinical-reports/scripts/validate_case_report.py +323 -0
  65. package/bin/skills/clinical-reports/scripts/validate_trial_report.py +88 -0
  66. package/bin/skills/fireworks-ai/SKILL.md +665 -0
  67. package/bin/skills/generate-image/SKILL.md +178 -0
  68. package/bin/skills/generate-image/scripts/generate_image.py +254 -0
  69. package/bin/skills/groq/SKILL.md +347 -0
  70. package/bin/skills/hypothesis-generation/SKILL.md +293 -0
  71. package/bin/skills/hypothesis-generation/assets/FORMATTING_GUIDE.md +672 -0
  72. package/bin/skills/hypothesis-generation/assets/hypothesis_generation.sty +307 -0
  73. package/bin/skills/hypothesis-generation/assets/hypothesis_report_template.tex +572 -0
  74. package/bin/skills/hypothesis-generation/references/experimental_design_patterns.md +329 -0
  75. package/bin/skills/hypothesis-generation/references/hypothesis_quality_criteria.md +198 -0
  76. package/bin/skills/hypothesis-generation/references/literature_search_strategies.md +622 -0
  77. package/bin/skills/latex-posters/README.md +417 -0
  78. package/bin/skills/latex-posters/SKILL.md +1602 -0
  79. package/bin/skills/latex-posters/assets/baposter_template.tex +257 -0
  80. package/bin/skills/latex-posters/assets/beamerposter_template.tex +244 -0
  81. package/bin/skills/latex-posters/assets/poster_quality_checklist.md +358 -0
  82. package/bin/skills/latex-posters/assets/tikzposter_template.tex +251 -0
  83. package/bin/skills/latex-posters/references/latex_poster_packages.md +745 -0
  84. package/bin/skills/latex-posters/references/poster_content_guide.md +748 -0
  85. package/bin/skills/latex-posters/references/poster_design_principles.md +806 -0
  86. package/bin/skills/latex-posters/references/poster_layout_design.md +900 -0
  87. package/bin/skills/latex-posters/scripts/review_poster.sh +214 -0
  88. package/bin/skills/literature-review/SKILL.md +641 -0
  89. package/bin/skills/literature-review/assets/review_template.md +412 -0
  90. package/bin/skills/literature-review/references/citation_styles.md +166 -0
  91. package/bin/skills/literature-review/references/database_strategies.md +455 -0
  92. package/bin/skills/literature-review/scripts/generate_pdf.py +184 -0
  93. package/bin/skills/literature-review/scripts/search_databases.py +310 -0
  94. package/bin/skills/literature-review/scripts/verify_citations.py +218 -0
  95. package/bin/skills/market-research-reports/SKILL.md +904 -0
  96. package/bin/skills/market-research-reports/assets/FORMATTING_GUIDE.md +428 -0
  97. package/bin/skills/market-research-reports/assets/market_report_template.tex +1380 -0
  98. package/bin/skills/market-research-reports/assets/market_research.sty +564 -0
  99. package/bin/skills/market-research-reports/references/data_analysis_patterns.md +548 -0
  100. package/bin/skills/market-research-reports/references/report_structure_guide.md +999 -0
  101. package/bin/skills/market-research-reports/references/visual_generation_guide.md +1077 -0
  102. package/bin/skills/market-research-reports/scripts/generate_market_visuals.py +472 -0
  103. package/bin/skills/markitdown/INSTALLATION_GUIDE.md +318 -0
  104. package/bin/skills/markitdown/LICENSE.txt +22 -0
  105. package/bin/skills/markitdown/OPENROUTER_INTEGRATION.md +359 -0
  106. package/bin/skills/markitdown/QUICK_REFERENCE.md +309 -0
  107. package/bin/skills/markitdown/README.md +184 -0
  108. package/bin/skills/markitdown/SKILL.md +486 -0
  109. package/bin/skills/markitdown/SKILL_SUMMARY.md +307 -0
  110. package/bin/skills/markitdown/assets/example_usage.md +463 -0
  111. package/bin/skills/markitdown/references/api_reference.md +399 -0
  112. package/bin/skills/markitdown/references/file_formats.md +542 -0
  113. package/bin/skills/markitdown/scripts/batch_convert.py +195 -0
  114. package/bin/skills/markitdown/scripts/convert_literature.py +262 -0
  115. package/bin/skills/markitdown/scripts/convert_with_ai.py +224 -0
  116. package/bin/skills/ml-paper-writing/SKILL.md +937 -0
  117. package/bin/skills/ml-paper-writing/references/checklists.md +361 -0
  118. package/bin/skills/ml-paper-writing/references/citation-workflow.md +562 -0
  119. package/bin/skills/ml-paper-writing/references/reviewer-guidelines.md +367 -0
  120. package/bin/skills/ml-paper-writing/references/sources.md +159 -0
  121. package/bin/skills/ml-paper-writing/references/writing-guide.md +476 -0
  122. package/bin/skills/ml-paper-writing/templates/README.md +251 -0
  123. package/bin/skills/ml-paper-writing/templates/aaai2026/README.md +534 -0
  124. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
  125. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
  126. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
  127. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
  128. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
  129. package/bin/skills/ml-paper-writing/templates/acl/README.md +50 -0
  130. package/bin/skills/ml-paper-writing/templates/acl/acl.sty +312 -0
  131. package/bin/skills/ml-paper-writing/templates/acl/acl_latex.tex +377 -0
  132. package/bin/skills/ml-paper-writing/templates/acl/acl_lualatex.tex +101 -0
  133. package/bin/skills/ml-paper-writing/templates/acl/acl_natbib.bst +1940 -0
  134. package/bin/skills/ml-paper-writing/templates/acl/anthology.bib.txt +26 -0
  135. package/bin/skills/ml-paper-writing/templates/acl/custom.bib +70 -0
  136. package/bin/skills/ml-paper-writing/templates/acl/formatting.md +326 -0
  137. package/bin/skills/ml-paper-writing/templates/colm2025/README.md +3 -0
  138. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
  139. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
  140. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
  141. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
  142. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
  143. package/bin/skills/ml-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
  144. package/bin/skills/ml-paper-writing/templates/colm2025/math_commands.tex +508 -0
  145. package/bin/skills/ml-paper-writing/templates/colm2025/natbib.sty +1246 -0
  146. package/bin/skills/ml-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
  147. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
  148. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
  149. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
  150. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
  151. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
  152. package/bin/skills/ml-paper-writing/templates/iclr2026/math_commands.tex +508 -0
  153. package/bin/skills/ml-paper-writing/templates/iclr2026/natbib.sty +1246 -0
  154. package/bin/skills/ml-paper-writing/templates/icml2026/algorithm.sty +79 -0
  155. package/bin/skills/ml-paper-writing/templates/icml2026/algorithmic.sty +201 -0
  156. package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.bib +75 -0
  157. package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.pdf +0 -0
  158. package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.tex +662 -0
  159. package/bin/skills/ml-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
  160. package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.bst +1443 -0
  161. package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.sty +767 -0
  162. package/bin/skills/ml-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
  163. package/bin/skills/ml-paper-writing/templates/neurips2025/Makefile +36 -0
  164. package/bin/skills/ml-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
  165. package/bin/skills/ml-paper-writing/templates/neurips2025/main.tex +38 -0
  166. package/bin/skills/ml-paper-writing/templates/neurips2025/neurips.sty +382 -0
  167. package/bin/skills/paper-2-web/SKILL.md +491 -0
  168. package/bin/skills/paper-2-web/references/installation.md +141 -0
  169. package/bin/skills/paper-2-web/references/paper2poster.md +346 -0
  170. package/bin/skills/paper-2-web/references/paper2video.md +305 -0
  171. package/bin/skills/paper-2-web/references/paper2web.md +187 -0
  172. package/bin/skills/paper-2-web/references/usage_examples.md +436 -0
  173. package/bin/skills/peer-review/SKILL.md +702 -0
  174. package/bin/skills/peer-review/references/calibration_guidelines.md +196 -0
  175. package/bin/skills/peer-review/references/common_issues.md +552 -0
  176. package/bin/skills/peer-review/references/paper_mechanics.md +269 -0
  177. package/bin/skills/peer-review/references/reporting_standards.md +290 -0
  178. package/bin/skills/peer-review/references/scoring_rubric.md +239 -0
  179. package/bin/skills/pptx-posters/SKILL.md +410 -0
  180. package/bin/skills/pptx-posters/assets/poster_html_template.html +257 -0
  181. package/bin/skills/pptx-posters/assets/poster_quality_checklist.md +358 -0
  182. package/bin/skills/pptx-posters/references/poster_content_guide.md +748 -0
  183. package/bin/skills/pptx-posters/references/poster_design_principles.md +806 -0
  184. package/bin/skills/pptx-posters/references/poster_layout_design.md +900 -0
  185. package/bin/skills/research-grants/README.md +285 -0
  186. package/bin/skills/research-grants/SKILL.md +938 -0
  187. package/bin/skills/research-grants/assets/budget_justification_template.md +453 -0
  188. package/bin/skills/research-grants/assets/nih_specific_aims_template.md +166 -0
  189. package/bin/skills/research-grants/assets/nsf_project_summary_template.md +92 -0
  190. package/bin/skills/research-grants/references/broader_impacts.md +392 -0
  191. package/bin/skills/research-grants/references/darpa_guidelines.md +636 -0
  192. package/bin/skills/research-grants/references/doe_guidelines.md +586 -0
  193. package/bin/skills/research-grants/references/nih_guidelines.md +851 -0
  194. package/bin/skills/research-grants/references/nsf_guidelines.md +570 -0
  195. package/bin/skills/research-grants/references/specific_aims_guide.md +458 -0
  196. package/bin/skills/research-lookup/README.md +156 -0
  197. package/bin/skills/research-lookup/SKILL.md +606 -0
  198. package/bin/skills/research-lookup/examples.py +174 -0
  199. package/bin/skills/research-lookup/lookup.py +187 -0
  200. package/bin/skills/research-lookup/research_lookup.py +483 -0
  201. package/bin/skills/research-lookup/scripts/research_lookup.py +483 -0
  202. package/bin/skills/scholar-evaluation/SKILL.md +289 -0
  203. package/bin/skills/scholar-evaluation/references/evaluation_framework.md +663 -0
  204. package/bin/skills/scholar-evaluation/scripts/calculate_scores.py +366 -0
  205. package/bin/skills/scientific-critical-thinking/SKILL.md +566 -0
  206. package/bin/skills/scientific-critical-thinking/references/common_biases.md +364 -0
  207. package/bin/skills/scientific-critical-thinking/references/evidence_hierarchy.md +484 -0
  208. package/bin/skills/scientific-critical-thinking/references/experimental_design.md +496 -0
  209. package/bin/skills/scientific-critical-thinking/references/logical_fallacies.md +478 -0
  210. package/bin/skills/scientific-critical-thinking/references/scientific_method.md +169 -0
  211. package/bin/skills/scientific-critical-thinking/references/statistical_pitfalls.md +506 -0
  212. package/bin/skills/scientific-schematics/QUICK_REFERENCE.md +207 -0
  213. package/bin/skills/scientific-schematics/README.md +327 -0
  214. package/bin/skills/scientific-schematics/SKILL.md +615 -0
  215. package/bin/skills/scientific-schematics/example_usage.sh +89 -0
  216. package/bin/skills/scientific-schematics/references/best_practices.md +559 -0
  217. package/bin/skills/scientific-schematics/scripts/generate_schematic.py +135 -0
  218. package/bin/skills/scientific-schematics/scripts/generate_schematic_ai.py +807 -0
  219. package/bin/skills/scientific-schematics/test_ai_generation.py +243 -0
  220. package/bin/skills/scientific-slides/SKILL.md +942 -0
  221. package/bin/skills/scientific-slides/assets/timing_guidelines.md +597 -0
  222. package/bin/skills/scientific-slides/references/data_visualization_slides.md +708 -0
  223. package/bin/skills/scientific-slides/references/presentation_structure.md +642 -0
  224. package/bin/skills/scientific-slides/references/slide_design_principles.md +849 -0
  225. package/bin/skills/scientific-slides/references/talk_types_guide.md +687 -0
  226. package/bin/skills/scientific-slides/references/visual_review_workflow.md +775 -0
  227. package/bin/skills/scientific-slides/scripts/generate_slide_image.py +143 -0
  228. package/bin/skills/scientific-slides/scripts/generate_slide_image_ai.py +748 -0
  229. package/bin/skills/scientific-slides/scripts/pdf_to_images.py +201 -0
  230. package/bin/skills/scientific-slides/scripts/slides_to_pdf.py +220 -0
  231. package/bin/skills/scientific-slides/scripts/validate_presentation.py +367 -0
  232. package/bin/skills/scientific-writing/SKILL.md +714 -0
  233. package/bin/skills/scientific-writing/assets/REPORT_FORMATTING_GUIDE.md +574 -0
  234. package/bin/skills/scientific-writing/assets/scientific_report.sty +606 -0
  235. package/bin/skills/scientific-writing/assets/scientific_report_template.tex +449 -0
  236. package/bin/skills/scientific-writing/references/citation_styles.md +720 -0
  237. package/bin/skills/scientific-writing/references/figures_tables.md +806 -0
  238. package/bin/skills/scientific-writing/references/imrad_structure.md +686 -0
  239. package/bin/skills/scientific-writing/references/professional_report_formatting.md +664 -0
  240. package/bin/skills/scientific-writing/references/reporting_guidelines.md +748 -0
  241. package/bin/skills/scientific-writing/references/writing_principles.md +824 -0
  242. package/bin/skills/tinker/SKILL.md +2 -3
  243. package/bin/skills/together-ai/SKILL.md +722 -0
  244. package/bin/skills/treatment-plans/README.md +488 -0
  245. package/bin/skills/treatment-plans/SKILL.md +1579 -0
  246. package/bin/skills/treatment-plans/assets/STYLING_QUICK_REFERENCE.md +185 -0
  247. package/bin/skills/treatment-plans/assets/chronic_disease_management_plan.tex +665 -0
  248. package/bin/skills/treatment-plans/assets/general_medical_treatment_plan.tex +547 -0
  249. package/bin/skills/treatment-plans/assets/medical_treatment_plan.sty +222 -0
  250. package/bin/skills/treatment-plans/assets/mental_health_treatment_plan.tex +774 -0
  251. package/bin/skills/treatment-plans/assets/one_page_treatment_plan.tex +193 -0
  252. package/bin/skills/treatment-plans/assets/pain_management_plan.tex +799 -0
  253. package/bin/skills/treatment-plans/assets/perioperative_care_plan.tex +753 -0
  254. package/bin/skills/treatment-plans/assets/quality_checklist.md +471 -0
  255. package/bin/skills/treatment-plans/assets/rehabilitation_treatment_plan.tex +756 -0
  256. package/bin/skills/treatment-plans/references/goal_setting_frameworks.md +411 -0
  257. package/bin/skills/treatment-plans/references/intervention_guidelines.md +507 -0
  258. package/bin/skills/treatment-plans/references/regulatory_compliance.md +476 -0
  259. package/bin/skills/treatment-plans/references/specialty_specific_guidelines.md +655 -0
  260. package/bin/skills/treatment-plans/references/treatment_plan_standards.md +485 -0
  261. package/bin/skills/treatment-plans/scripts/check_completeness.py +322 -0
  262. package/bin/skills/treatment-plans/scripts/generate_template.py +233 -0
  263. package/bin/skills/treatment-plans/scripts/timeline_generator.py +385 -0
  264. package/bin/skills/treatment-plans/scripts/validate_treatment_plan.py +369 -0
  265. package/bin/skills/unsloth/SKILL.md +565 -47
  266. package/bin/skills/unsloth/docs/advanced-rl.md +222 -0
  267. package/bin/skills/unsloth/docs/chat-templates.md +141 -0
  268. package/bin/skills/unsloth/docs/datasets.md +489 -0
  269. package/bin/skills/unsloth/docs/docker-extended.md +99 -0
  270. package/bin/skills/unsloth/docs/dynamic-ggufs-2.0.md +116 -0
  271. package/bin/skills/unsloth/docs/dynamic-ggufs-aider.md +118 -0
  272. package/bin/skills/unsloth/docs/faq.md +91 -0
  273. package/bin/skills/unsloth/docs/fp16-vs-bf16.md +61 -0
  274. package/bin/skills/unsloth/docs/fp8-rl.md +224 -0
  275. package/bin/skills/unsloth/docs/glm-4.7-flash.md +997 -0
  276. package/bin/skills/unsloth/docs/inference-deployment-overview.md +17 -0
  277. package/bin/skills/unsloth/docs/inference.md +27 -0
  278. package/bin/skills/unsloth/docs/installation-docker.md +155 -0
  279. package/bin/skills/unsloth/docs/installation-pip.md +148 -0
  280. package/bin/skills/unsloth/docs/kernels-packing.md +190 -0
  281. package/bin/skills/unsloth/docs/kimi-k2.5.md +634 -0
  282. package/bin/skills/unsloth/docs/lm-studio.md +235 -0
  283. package/bin/skills/unsloth/docs/lora-hot-swapping.md +75 -0
  284. package/bin/skills/unsloth/docs/lora-hyperparameters.md +363 -0
  285. package/bin/skills/unsloth/docs/memory-efficient-rl.md +267 -0
  286. package/bin/skills/unsloth/docs/model-selection.md +70 -0
  287. package/bin/skills/unsloth/docs/models.md +532 -0
  288. package/bin/skills/unsloth/docs/multi-gpu-ddp.md +90 -0
  289. package/bin/skills/unsloth/docs/notebooks.md +223 -0
  290. package/bin/skills/unsloth/docs/overview.md +110 -0
  291. package/bin/skills/unsloth/docs/qwen3-coder-next-extended.md +900 -0
  292. package/bin/skills/unsloth/docs/qwen3-coder-next.md +900 -0
  293. package/bin/skills/unsloth/docs/requirements.md +45 -0
  294. package/bin/skills/unsloth/docs/reward-hacking.md +25 -0
  295. package/bin/skills/unsloth/docs/saving-to-gguf.md +138 -0
  296. package/bin/skills/unsloth/docs/saving-to-ollama.md +46 -0
  297. package/bin/skills/unsloth/docs/sglang-guide.md +278 -0
  298. package/bin/skills/unsloth/docs/speculative-decoding.md +70 -0
  299. package/bin/skills/unsloth/docs/tool-calling.md +334 -0
  300. package/bin/skills/unsloth/docs/troubleshooting-faq.md +204 -0
  301. package/bin/skills/unsloth/docs/troubleshooting-inference.md +26 -0
  302. package/bin/skills/unsloth/docs/tts-fine-tuning.md +149 -0
  303. package/bin/skills/unsloth/docs/tutorial-grpo.md +273 -0
  304. package/bin/skills/unsloth/docs/tutorial-llama3-ollama.md +356 -0
  305. package/bin/skills/unsloth/docs/vision-fine-tuning.md +135 -0
  306. package/bin/skills/unsloth/docs/vision-rl.md +170 -0
  307. package/bin/skills/unsloth/docs/vllm-engine-arguments.md +43 -0
  308. package/bin/skills/unsloth/docs/vllm-guide.md +98 -0
  309. package/bin/skills/venue-templates/SKILL.md +686 -0
  310. package/bin/skills/venue-templates/assets/examples/cell_summary_example.md +247 -0
  311. package/bin/skills/venue-templates/assets/examples/medical_structured_abstract.md +313 -0
  312. package/bin/skills/venue-templates/assets/examples/nature_abstract_examples.md +213 -0
  313. package/bin/skills/venue-templates/assets/examples/neurips_introduction_example.md +245 -0
  314. package/bin/skills/venue-templates/assets/grants/nih_specific_aims.tex +235 -0
  315. package/bin/skills/venue-templates/assets/grants/nsf_proposal_template.tex +375 -0
  316. package/bin/skills/venue-templates/assets/journals/nature_article.tex +171 -0
  317. package/bin/skills/venue-templates/assets/journals/neurips_article.tex +283 -0
  318. package/bin/skills/venue-templates/assets/journals/plos_one.tex +317 -0
  319. package/bin/skills/venue-templates/assets/posters/beamerposter_academic.tex +311 -0
  320. package/bin/skills/venue-templates/references/cell_press_style.md +483 -0
  321. package/bin/skills/venue-templates/references/conferences_formatting.md +564 -0
  322. package/bin/skills/venue-templates/references/cs_conference_style.md +463 -0
  323. package/bin/skills/venue-templates/references/grants_requirements.md +787 -0
  324. package/bin/skills/venue-templates/references/journals_formatting.md +486 -0
  325. package/bin/skills/venue-templates/references/medical_journal_styles.md +535 -0
  326. package/bin/skills/venue-templates/references/ml_conference_style.md +556 -0
  327. package/bin/skills/venue-templates/references/nature_science_style.md +405 -0
  328. package/bin/skills/venue-templates/references/posters_guidelines.md +628 -0
  329. package/bin/skills/venue-templates/references/reviewer_expectations.md +417 -0
  330. package/bin/skills/venue-templates/references/venue_writing_styles.md +321 -0
  331. package/bin/skills/venue-templates/scripts/customize_template.py +195 -0
  332. package/bin/skills/venue-templates/scripts/query_template.py +266 -0
  333. package/bin/skills/venue-templates/scripts/validate_format.py +250 -0
  334. package/bin/synsc +0 -0
  335. package/package.json +1 -1
  336. package/bin/skills/unsloth/references/index.md +0 -7
  337. package/bin/skills/unsloth/references/llms-full.md +0 -16799
  338. package/bin/skills/unsloth/references/llms-txt.md +0 -12044
  339. package/bin/skills/unsloth/references/llms.md +0 -82
@@ -0,0 +1,1127 @@
1
+ ---
2
+ name: clinical-reports
3
+ description: "Write comprehensive clinical reports including case reports (CARE guidelines), diagnostic reports (radiology/pathology/lab), clinical trial reports (ICH-E3, SAE, CSR), and patient documentation (SOAP, H&P, discharge summaries). Full support with templates, regulatory compliance (HIPAA, FDA, ICH-GCP), and validation tools."
4
+ allowed-tools: [Read, Write, Edit, Bash]
5
+ ---
6
+
7
+ # Clinical Report Writing
8
+
9
+ ## Overview
10
+
11
+ Clinical report writing is the process of documenting medical information with precision, accuracy, and compliance with regulatory standards. This skill covers four major categories of clinical reports: case reports for journal publication, diagnostic reports for clinical practice, clinical trial reports for regulatory submission, and patient documentation for medical records. Apply this skill for healthcare documentation, research dissemination, and regulatory compliance.
12
+
13
+ **Critical Principle: Clinical reports must be accurate, complete, objective, and compliant with applicable regulations (HIPAA, FDA, ICH-GCP).** Patient privacy and data integrity are paramount. All clinical documentation must support evidence-based decision-making and meet professional standards.
14
+
15
+ ## When to Use This Skill
16
+
17
+ This skill should be used when:
18
+ - Writing clinical case reports for journal submission (CARE guidelines)
19
+ - Creating diagnostic reports (radiology, pathology, laboratory)
20
+ - Documenting clinical trial data and adverse events
21
+ - Preparing clinical study reports (CSR) for regulatory submission
22
+ - Writing patient progress notes, SOAP notes, and clinical summaries
23
+ - Drafting discharge summaries, H&P documents, or consultation notes
24
+ - Ensuring HIPAA compliance and proper de-identification
25
+ - Validating clinical documentation for completeness and accuracy
26
+ - Preparing serious adverse event (SAE) reports
27
+ - Creating data safety monitoring board (DSMB) reports
28
+
29
+ ## Visual Enhancement with Scientific Schematics
30
+
31
+ **⚠️ MANDATORY: Every clinical report MUST include at least 1 AI-generated figure using the scientific-schematics skill.**
32
+
33
+ This is not optional. Clinical reports benefit greatly from visual elements. Before finalizing any document:
34
+ 1. Generate at minimum ONE schematic or diagram (e.g., patient timeline, diagnostic algorithm, or treatment workflow)
35
+ 2. For case reports: include clinical progression timeline
36
+ 3. For trial reports: include CONSORT flow diagram
37
+
38
+ **How to generate figures:**
39
+ - Use the **scientific-schematics** skill to generate AI-powered publication-quality diagrams
40
+ - Simply describe your desired diagram in natural language
41
+ - Nano Banana Pro will automatically generate, review, and refine the schematic
42
+
43
+ **How to generate schematics:**
44
+ ```bash
45
+ python scripts/generate_schematic.py "your diagram description" -o figures/output.png
46
+ ```
47
+
48
+ The AI will automatically:
49
+ - Create publication-quality images with proper formatting
50
+ - Review and refine through multiple iterations
51
+ - Ensure accessibility (colorblind-friendly, high contrast)
52
+ - Save outputs in the figures/ directory
53
+
54
+ **When to add schematics:**
55
+ - Patient case timelines and clinical progression diagrams
56
+ - Diagnostic algorithm flowcharts
57
+ - Treatment protocol workflows
58
+ - Anatomical diagrams for case reports
59
+ - Clinical trial participant flow diagrams (CONSORT)
60
+ - Adverse event classification trees
61
+ - Any complex concept that benefits from visualization
62
+
63
+ For detailed guidance on creating schematics, refer to the scientific-schematics skill documentation.
64
+
65
+ ---
66
+
67
+ ## Core Capabilities
68
+
69
+ ### 1. Clinical Case Reports for Journal Publication
70
+
71
+ Clinical case reports describe unusual clinical presentations, novel diagnoses, or rare complications. They contribute to medical knowledge and are published in peer-reviewed journals.
72
+
73
+ #### CARE Guidelines Compliance
74
+
75
+ The CARE (CAse REport) guidelines provide a standardized framework for case report writing. All case reports should follow this checklist:
76
+
77
+ **Title**
78
+ - Include the words "case report" or "case study"
79
+ - Indicate the area of focus
80
+ - Example: "Unusual Presentation of Acute Myocardial Infarction in a Young Patient: A Case Report"
81
+
82
+ **Keywords**
83
+ - 2-5 keywords for indexing and searchability
84
+ - Use MeSH (Medical Subject Headings) terms when possible
85
+
86
+ **Abstract** (structured or unstructured, 150-250 words)
87
+ - Introduction: What is unique or novel about the case?
88
+ - Patient concerns: Primary symptoms and key medical history
89
+ - Diagnoses: Primary and secondary diagnoses
90
+ - Interventions: Key treatments and procedures
91
+ - Outcomes: Clinical outcome and follow-up
92
+ - Conclusions: Main takeaway or clinical lesson
93
+
94
+ **Introduction**
95
+ - Brief background on the medical condition
96
+ - Why this case is novel or important
97
+ - Literature review of similar cases (brief)
98
+ - What makes this case worth reporting
99
+
100
+ **Patient Information**
101
+ - Demographics (age, sex, race/ethnicity if relevant)
102
+ - Medical history, family history, social history
103
+ - Relevant comorbidities
104
+ - **De-identification**: Remove or alter 18 HIPAA identifiers
105
+ - **Patient consent**: Document informed consent for publication
106
+
107
+ **Clinical Findings**
108
+ - Chief complaint and presenting symptoms
109
+ - Physical examination findings
110
+ - Timeline of symptoms (consider timeline figure or table)
111
+ - Relevant clinical observations
112
+
113
+ **Timeline**
114
+ - Chronological summary of key events
115
+ - Dates of symptoms, diagnosis, interventions, outcomes
116
+ - Can be presented as a table or figure
117
+ - Example format:
118
+ - Day 0: Initial presentation with symptoms X, Y, Z
119
+ - Day 2: Diagnostic test A performed, revealed finding B
120
+ - Day 5: Treatment initiated with drug C
121
+ - Day 14: Clinical improvement noted
122
+ - Month 3: Follow-up examination shows complete resolution
123
+
124
+ **Diagnostic Assessment**
125
+ - Diagnostic tests performed (labs, imaging, procedures)
126
+ - Results and interpretation
127
+ - Differential diagnosis considered
128
+ - Rationale for final diagnosis
129
+ - Challenges in diagnosis
130
+
131
+ **Therapeutic Interventions**
132
+ - Medications (names, dosages, routes, duration)
133
+ - Procedures or surgeries performed
134
+ - Non-pharmacological interventions
135
+ - Reasoning for treatment choices
136
+ - Alternative treatments considered
137
+
138
+ **Follow-up and Outcomes**
139
+ - Clinical outcome (resolution, improvement, unchanged, worsened)
140
+ - Follow-up duration and frequency
141
+ - Long-term outcomes if available
142
+ - Patient-reported outcomes
143
+ - Adherence to treatment
144
+
145
+ **Discussion**
146
+ - Strengths and novelty of the case
147
+ - How this case compares to existing literature
148
+ - Limitations of the case report
149
+ - Potential mechanisms or explanations
150
+ - Clinical implications and lessons learned
151
+ - Unanswered questions or areas for future research
152
+
153
+ **Patient Perspective** (optional but encouraged)
154
+ - Patient's experience and viewpoint
155
+ - Impact on quality of life
156
+ - Patient-reported outcomes
157
+ - Quote from patient if appropriate
158
+
159
+ **Informed Consent**
160
+ - Statement documenting patient consent for publication
161
+ - If patient deceased or unable to consent, describe proxy consent
162
+ - For pediatric cases, parental/guardian consent
163
+ - Example: "Written informed consent was obtained from the patient for publication of this case report and accompanying images. A copy of the written consent is available for review by the Editor-in-Chief of this journal."
164
+
165
+ For detailed CARE guidelines, refer to `references/case_report_guidelines.md`.
166
+
167
+ #### Journal-Specific Requirements
168
+
169
+ Different journals have specific formatting requirements:
170
+ - Word count limits (typically 1500-3000 words)
171
+ - Number of figures/tables allowed
172
+ - Reference style (AMA, Vancouver, APA)
173
+ - Structured vs. unstructured abstract
174
+ - Supplementary materials policies
175
+
176
+ Check journal instructions for authors before submission.
177
+
178
+ #### De-identification and Privacy
179
+
180
+ **18 HIPAA Identifiers to Remove or Alter:**
181
+ 1. Names
182
+ 2. Geographic subdivisions smaller than state
183
+ 3. Dates (except year)
184
+ 4. Telephone numbers
185
+ 5. Fax numbers
186
+ 6. Email addresses
187
+ 7. Social Security numbers
188
+ 8. Medical record numbers
189
+ 9. Health plan beneficiary numbers
190
+ 10. Account numbers
191
+ 11. Certificate/license numbers
192
+ 12. Vehicle identifiers and serial numbers
193
+ 13. Device identifiers and serial numbers
194
+ 14. Web URLs
195
+ 15. IP addresses
196
+ 16. Biometric identifiers
197
+ 17. Full-face photographs
198
+ 18. Any other unique identifying characteristic
199
+
200
+ **Best Practices:**
201
+ - Use "the patient" instead of names
202
+ - Report age ranges (e.g., "a woman in her 60s") or exact age if relevant
203
+ - Use approximate dates or time intervals (e.g., "3 months prior")
204
+ - Remove institution names unless necessary
205
+ - Blur or crop identifying features in images
206
+ - Obtain explicit consent for any potentially identifying information
207
+
208
+ ### 2. Clinical Diagnostic Reports
209
+
210
+ Diagnostic reports communicate findings from imaging studies, pathological examinations, and laboratory tests. They must be clear, accurate, and actionable.
211
+
212
+ #### Radiology Reports
213
+
214
+ Radiology reports follow a standardized structure to ensure clarity and completeness.
215
+
216
+ **Standard Structure:**
217
+
218
+ **1. Patient Demographics**
219
+ - Patient name (or ID in research contexts)
220
+ - Date of birth or age
221
+ - Medical record number
222
+ - Examination date and time
223
+
224
+ **2. Clinical Indication**
225
+ - Reason for examination
226
+ - Relevant clinical history
227
+ - Specific clinical question to be answered
228
+ - Example: "Rule out pulmonary embolism in patient with acute dyspnea"
229
+
230
+ **3. Technique**
231
+ - Imaging modality (X-ray, CT, MRI, ultrasound, PET, etc.)
232
+ - Anatomical region examined
233
+ - Contrast administration (type, route, volume)
234
+ - Protocol or sequence used
235
+ - Technical quality and limitations
236
+ - Example: "Contrast-enhanced CT of the chest, abdomen, and pelvis was performed using 100 mL of intravenous iodinated contrast. Oral contrast was not administered."
237
+
238
+ **4. Comparison**
239
+ - Prior imaging studies available for comparison
240
+ - Dates of prior studies
241
+ - Stability or change from prior imaging
242
+ - Example: "Comparison: CT chest from [date]"
243
+
244
+ **5. Findings**
245
+ - Systematic description of imaging findings
246
+ - Organ-by-organ or region-by-region approach
247
+ - Positive findings first, then pertinent negatives
248
+ - Measurements of lesions or abnormalities
249
+ - Use of standardized terminology (ACR lexicon, RadLex)
250
+ - Example:
251
+ - Lungs: Bilateral ground-glass opacities, predominant in the lower lobes. No consolidation or pleural effusion.
252
+ - Mediastinum: No lymphadenopathy. Heart size normal.
253
+ - Abdomen: Liver, spleen, pancreas unremarkable. No free fluid.
254
+
255
+ **6. Impression/Conclusion**
256
+ - Concise summary of key findings
257
+ - Answers to the clinical question
258
+ - Differential diagnosis if applicable
259
+ - Recommendations for follow-up or additional studies
260
+ - Level of suspicion or diagnostic certainty
261
+ - Example:
262
+ - "1. Bilateral ground-glass opacities consistent with viral pneumonia or atypical infection. COVID-19 cannot be excluded. Clinical correlation recommended.
263
+ - 2. No evidence of pulmonary embolism.
264
+ - 3. Recommend follow-up imaging in 4-6 weeks to assess resolution."
265
+
266
+ **Structured Reporting:**
267
+
268
+ Many radiology departments use structured reporting templates for common examinations:
269
+ - Lung nodule reporting (Lung-RADS)
270
+ - Breast imaging (BI-RADS)
271
+ - Liver imaging (LI-RADS)
272
+ - Prostate imaging (PI-RADS)
273
+ - CT colonography (C-RADS)
274
+
275
+ Structured reports improve consistency, reduce ambiguity, and facilitate data extraction.
276
+
277
+ For radiology reporting standards, see `references/diagnostic_reports_standards.md`.
278
+
279
+ #### Pathology Reports
280
+
281
+ Pathology reports document microscopic findings from tissue specimens and provide diagnostic conclusions.
282
+
283
+ **Surgical Pathology Report Structure:**
284
+
285
+ **1. Patient Information**
286
+ - Patient name and identifiers
287
+ - Date of birth, age, sex
288
+ - Ordering physician
289
+ - Medical record number
290
+ - Specimen received date
291
+
292
+ **2. Specimen Information**
293
+ - Specimen type (biopsy, excision, resection)
294
+ - Anatomical site
295
+ - Laterality if applicable
296
+ - Number of specimens/blocks/slides
297
+ - Example: "Skin, left forearm, excisional biopsy"
298
+
299
+ **3. Clinical History**
300
+ - Relevant clinical information
301
+ - Indication for biopsy
302
+ - Prior diagnoses
303
+ - Example: "History of melanoma. New pigmented lesion, rule out recurrence."
304
+
305
+ **4. Gross Description**
306
+ - Macroscopic appearance of specimen
307
+ - Size, weight, color, consistency
308
+ - Orientation markers if present
309
+ - Sectioning and sampling approach
310
+ - Example: "The specimen consists of an ellipse of skin measuring 2.5 x 1.0 x 0.5 cm. A pigmented lesion measuring 0.6 cm in diameter is present on the surface. The specimen is serially sectioned and entirely submitted in cassettes A1-A3."
311
+
312
+ **5. Microscopic Description**
313
+ - Histological findings
314
+ - Cellular characteristics
315
+ - Architectural patterns
316
+ - Presence of malignancy
317
+ - Margins if applicable
318
+ - Special stains or immunohistochemistry results
319
+
320
+ **6. Diagnosis**
321
+ - Primary diagnosis
322
+ - Grade and stage if applicable (cancer)
323
+ - Margin status
324
+ - Lymph node status if applicable
325
+ - Synoptic reporting for cancers (CAP protocols)
326
+ - Example:
327
+ - "MALIGNANT MELANOMA, SUPERFICIAL SPREADING TYPE
328
+ - Breslow thickness: 1.2 mm
329
+ - Clark level: IV
330
+ - Mitotic rate: 3/mm²
331
+ - Ulceration: Absent
332
+ - Margins: Negative (closest margin 0.4 cm)
333
+ - Lymphovascular invasion: Not identified"
334
+
335
+ **7. Comment** (if needed)
336
+ - Additional context or interpretation
337
+ - Differential diagnosis
338
+ - Recommendations for additional studies
339
+ - Clinical correlation suggestions
340
+
341
+ **Synoptic Reporting:**
342
+
343
+ The College of American Pathologists (CAP) provides synoptic reporting templates for cancer specimens. These checklists ensure all relevant diagnostic elements are documented.
344
+
345
+ Key elements for cancer reporting:
346
+ - Tumor site
347
+ - Tumor size
348
+ - Histologic type
349
+ - Histologic grade
350
+ - Extent of invasion
351
+ - Lymph-vascular invasion
352
+ - Perineural invasion
353
+ - Margins
354
+ - Lymph nodes (number examined, number positive)
355
+ - Pathologic stage (TNM classification)
356
+ - Ancillary studies (molecular markers, biomarkers)
357
+
358
+ #### Laboratory Reports
359
+
360
+ Laboratory reports communicate test results for clinical specimens (blood, urine, tissue, etc.).
361
+
362
+ **Standard Components:**
363
+
364
+ **1. Patient and Specimen Information**
365
+ - Patient identifiers
366
+ - Specimen type (blood, serum, urine, CSF, etc.)
367
+ - Collection date and time
368
+ - Received date and time
369
+ - Ordering provider
370
+
371
+ **2. Test Name and Method**
372
+ - Full test name
373
+ - Methodology (immunoassay, spectrophotometry, PCR, etc.)
374
+ - Laboratory accession number
375
+
376
+ **3. Results**
377
+ - Quantitative or qualitative result
378
+ - Units of measurement
379
+ - Reference range (normal values)
380
+ - Flags for abnormal values (H = high, L = low)
381
+ - Critical values highlighted
382
+ - Example:
383
+ - Hemoglobin: 8.5 g/dL (L) [Reference: 12.0-16.0 g/dL]
384
+ - White Blood Cell Count: 15.2 x10³/μL (H) [Reference: 4.5-11.0 x10³/μL]
385
+
386
+ **4. Interpretation** (when applicable)
387
+ - Clinical significance of results
388
+ - Suggested follow-up or additional testing
389
+ - Correlation with diagnosis
390
+ - Drug levels and therapeutic ranges
391
+
392
+ **5. Quality Control Information**
393
+ - Specimen adequacy
394
+ - Specimen quality issues (hemolyzed, lipemic, clotted)
395
+ - Delays in processing
396
+ - Technical limitations
397
+
398
+ **Critical Value Reporting:**
399
+ - Life-threatening results require immediate notification
400
+ - Examples: glucose <40 or >500 mg/dL, potassium <2.5 or >6.5 mEq/L
401
+ - Document notification time and recipient
402
+
403
+ For laboratory standards and terminology, see `references/diagnostic_reports_standards.md`.
404
+
405
+ ### 3. Clinical Trial Reports
406
+
407
+ Clinical trial reports document the conduct, results, and safety of clinical research studies. These reports are essential for regulatory submissions and scientific publication.
408
+
409
+ #### Serious Adverse Event (SAE) Reports
410
+
411
+ SAE reports document unexpected serious adverse reactions during clinical trials. Regulatory requirements mandate timely reporting to IRBs, sponsors, and regulatory agencies.
412
+
413
+ **Definition of Serious Adverse Event:**
414
+ An adverse event is serious if it:
415
+ - Results in death
416
+ - Is life-threatening
417
+ - Requires inpatient hospitalization or prolongation of existing hospitalization
418
+ - Results in persistent or significant disability/incapacity
419
+ - Is a congenital anomaly/birth defect
420
+ - Requires intervention to prevent permanent impairment or damage
421
+
422
+ **SAE Report Components:**
423
+
424
+ **1. Study Information**
425
+ - Protocol number and title
426
+ - Study phase
427
+ - Sponsor name
428
+ - Principal investigator
429
+ - IND/IDE number (if applicable)
430
+ - Clinical trial registry number (NCT number)
431
+
432
+ **2. Patient Information (De-identified)**
433
+ - Subject ID or randomization number
434
+ - Age, sex, race/ethnicity
435
+ - Study arm or treatment group
436
+ - Date of informed consent
437
+ - Date of first study intervention
438
+
439
+ **3. Event Information**
440
+ - Event description (narrative)
441
+ - Date of onset
442
+ - Date of resolution (or ongoing)
443
+ - Severity (mild, moderate, severe)
444
+ - Seriousness criteria met
445
+ - Outcome (recovered, recovering, not recovered, fatal, unknown)
446
+
447
+ **4. Causality Assessment**
448
+ - Relationship to study intervention (unrelated, unlikely, possible, probable, definite)
449
+ - Relationship to study procedures
450
+ - Relationship to underlying disease
451
+ - Rationale for causality determination
452
+
453
+ **5. Action Taken**
454
+ - Modification of study intervention (dose reduction, temporary hold, permanent discontinuation)
455
+ - Concomitant medications or treatments administered
456
+ - Hospitalization details
457
+ - Outcome and follow-up plan
458
+
459
+ **6. Expectedness**
460
+ - Expected per protocol or investigator's brochure
461
+ - Unexpected event requiring expedited reporting
462
+ - Comparison to known safety profile
463
+
464
+ **7. Narrative**
465
+ - Detailed description of the event
466
+ - Timeline of events
467
+ - Clinical course and management
468
+ - Laboratory and diagnostic test results
469
+ - Final diagnosis or conclusion
470
+
471
+ **8. Reporter Information**
472
+ - Name and contact of reporter
473
+ - Report date
474
+ - Signature
475
+
476
+ **Regulatory Timelines:**
477
+ - Fatal or life-threatening unexpected SAEs: 7 days for preliminary report, 15 days for complete report
478
+ - Other serious unexpected events: 15 days
479
+ - IRB notification: per institutional policy, typically within 5-10 days
480
+
481
+ For detailed SAE reporting guidance, see `references/clinical_trial_reporting.md`.
482
+
483
+ #### Clinical Study Reports (CSR)
484
+
485
+ Clinical study reports are comprehensive documents summarizing the design, conduct, and results of clinical trials. They are submitted to regulatory agencies as part of drug approval applications.
486
+
487
+ **ICH-E3 Structure:**
488
+
489
+ The ICH E3 guideline defines the structure and content of clinical study reports.
490
+
491
+ **Main Sections:**
492
+
493
+ **1. Title Page**
494
+ - Study title and protocol number
495
+ - Sponsor and investigator information
496
+ - Report date and version
497
+
498
+ **2. Synopsis** (5-15 pages)
499
+ - Brief summary of entire study
500
+ - Objectives, methods, results, conclusions
501
+ - Key efficacy and safety findings
502
+ - Can stand alone
503
+
504
+ **3. Table of Contents**
505
+
506
+ **4. List of Abbreviations and Definitions**
507
+
508
+ **5. Ethics** (Section 2)
509
+ - IRB/IEC approvals
510
+ - Informed consent process
511
+ - GCP compliance statement
512
+
513
+ **6. Investigators and Study Administrative Structure** (Section 3)
514
+ - List of investigators and sites
515
+ - Study organization
516
+ - Monitoring and quality assurance
517
+
518
+ **7. Introduction** (Section 4)
519
+ - Background and rationale
520
+ - Study objectives and purpose
521
+
522
+ **8. Study Objectives and Plan** (Section 5)
523
+ - Overall design and plan
524
+ - Objectives (primary and secondary)
525
+ - Endpoints (efficacy and safety)
526
+ - Sample size determination
527
+
528
+ **9. Study Patients** (Section 6)
529
+ - Inclusion and exclusion criteria
530
+ - Patient disposition
531
+ - Protocol deviations
532
+ - Demographic and baseline characteristics
533
+
534
+ **10. Efficacy Evaluation** (Section 7)
535
+ - Data sets analyzed (ITT, PP, safety)
536
+ - Demographic and other baseline characteristics
537
+ - Efficacy results for primary and secondary endpoints
538
+ - Subgroup analyses
539
+ - Dropouts and missing data
540
+
541
+ **11. Safety Evaluation** (Section 8)
542
+ - Extent of exposure
543
+ - Adverse events (summary tables)
544
+ - Serious adverse events (narratives)
545
+ - Laboratory values
546
+ - Vital signs and physical findings
547
+ - Deaths and other serious events
548
+
549
+ **12. Discussion and Overall Conclusions** (Section 9)
550
+ - Interpretation of results
551
+ - Benefit-risk assessment
552
+ - Clinical implications
553
+
554
+ **13. Tables, Figures, and Graphs** (Section 10)
555
+
556
+ **14. Reference List** (Section 11)
557
+
558
+ **15. Appendices** (Section 12)
559
+ - Study protocol and amendments
560
+ - Sample case report forms
561
+ - List of investigators and ethics committees
562
+ - Patient information and consent forms
563
+ - Investigator's brochure references
564
+ - Publications based on the study
565
+
566
+ **Key Principles:**
567
+ - Objectivity and transparency
568
+ - Comprehensive data presentation
569
+ - Adherence to statistical analysis plan
570
+ - Clear presentation of safety data
571
+ - Integration of appendices
572
+
573
+ For ICH-E3 templates and detailed guidance, see `references/clinical_trial_reporting.md` and `assets/clinical_trial_csr_template.md`.
574
+
575
+ #### Protocol Deviations
576
+
577
+ Protocol deviations are departures from the approved study protocol. They must be documented, assessed, and reported.
578
+
579
+ **Categories:**
580
+ - **Minor deviation**: Does not significantly impact patient safety or data integrity
581
+ - **Major deviation**: May impact patient safety, data integrity, or study conduct
582
+ - **Violation**: Serious deviation requiring immediate action and reporting
583
+
584
+ **Documentation Requirements:**
585
+ - Description of deviation
586
+ - Date of occurrence
587
+ - Subject ID affected
588
+ - Impact on safety and data
589
+ - Corrective and preventive actions (CAPA)
590
+ - Root cause analysis
591
+ - Preventive measures implemented
592
+
593
+ ### 4. Patient Clinical Documentation
594
+
595
+ Patient documentation records clinical encounters, progress, and care plans. Accurate documentation supports continuity of care, billing, and legal protection.
596
+
597
+ #### SOAP Notes
598
+
599
+ SOAP notes are the most common format for progress notes in clinical practice.
600
+
601
+ **Structure:**
602
+
603
+ **S - Subjective**
604
+ - Patient's reported symptoms and concerns
605
+ - History of present illness (HPI)
606
+ - Review of systems (ROS) relevant to visit
607
+ - Patient's own words (use quotes when helpful)
608
+ - Example: "Patient reports worsening shortness of breath over the past 3 days, particularly with exertion. Denies chest pain, fever, or cough."
609
+
610
+ **O - Objective**
611
+ - Measurable clinical findings
612
+ - Vital signs (temperature, blood pressure, heart rate, respiratory rate, oxygen saturation)
613
+ - Physical examination findings (organized by system)
614
+ - Laboratory and imaging results
615
+ - Example:
616
+ - Vitals: T 98.6°F, BP 142/88, HR 92, RR 22, SpO2 91% on room air
617
+ - General: Mild respiratory distress
618
+ - Cardiovascular: Regular rhythm, no murmurs
619
+ - Pulmonary: Bilateral crackles at bases
620
+ - Extremities: 2+ pitting edema bilaterally
621
+
622
+ **A - Assessment**
623
+ - Clinical impression or diagnosis
624
+ - Differential diagnosis
625
+ - Severity and stability
626
+ - Progress toward treatment goals
627
+ - Example:
628
+ - "1. Acute decompensated heart failure, NYHA Class III
629
+ - 2. Hypertension, poorly controlled
630
+ - 3. Chronic kidney disease, stage 3"
631
+
632
+ **P - Plan**
633
+ - Diagnostic plan (further testing)
634
+ - Therapeutic plan (medications, procedures)
635
+ - Patient education and counseling
636
+ - Follow-up arrangements
637
+ - Example:
638
+ - "Diagnostics: BNP, chest X-ray, echocardiogram
639
+ - Therapeutics: Increase furosemide to 40 mg PO BID, continue lisinopril 10 mg daily, strict fluid restriction to 1.5 L/day
640
+ - Education: Signs of worsening heart failure, daily weights
641
+ - Follow-up: Cardiology appointment in 1 week, call if weight gain >2 lbs in 1 day"
642
+
643
+ **Documentation Tips:**
644
+ - Be concise but complete
645
+ - Use standard medical abbreviations
646
+ - Document time of encounter
647
+ - Sign and date all notes
648
+ - Avoid speculation or judgment
649
+ - Document medical necessity for billing
650
+ - Include patient's response to treatment
651
+
652
+ For SOAP note templates and examples, see `assets/soap_note_template.md`.
653
+
654
+ #### History and Physical (H&P)
655
+
656
+ The H&P is a comprehensive assessment performed at admission or initial encounter.
657
+
658
+ **Components:**
659
+
660
+ **1. Chief Complaint (CC)**
661
+ - Brief statement of why patient is seeking care
662
+ - Use patient's own words
663
+ - Example: "Chest pain for 2 hours"
664
+
665
+ **2. History of Present Illness (HPI)**
666
+ - Detailed chronological narrative of current problem
667
+ - Use OPQRST mnemonic for pain:
668
+ - Onset: When did it start?
669
+ - Provocation/Palliation: What makes it better or worse?
670
+ - Quality: What does it feel like?
671
+ - Region/Radiation: Where is it? Does it spread?
672
+ - Severity: How bad is it (0-10 scale)?
673
+ - Timing: Constant or intermittent? Duration?
674
+ - Associated symptoms
675
+ - Prior evaluations or treatments
676
+
677
+ **3. Past Medical History (PMH)**
678
+ - Chronic medical conditions
679
+ - Previous hospitalizations
680
+ - Surgeries and procedures
681
+ - Example: "Hypertension (diagnosed 2015), type 2 diabetes mellitus (diagnosed 2018), prior appendectomy (2010)"
682
+
683
+ **4. Medications**
684
+ - Current medications with doses and frequencies
685
+ - Over-the-counter medications
686
+ - Herbal supplements
687
+ - Allergies and reactions
688
+
689
+ **5. Allergies**
690
+ - Drug allergies with type of reaction
691
+ - Food allergies
692
+ - Environmental allergies
693
+ - Example: "Penicillin (rash), shellfish (anaphylaxis)"
694
+
695
+ **6. Family History (FH)**
696
+ - Medical conditions in first-degree relatives
697
+ - Age and cause of death of parents
698
+ - Hereditary conditions
699
+ - Example: "Father with coronary artery disease (MI at age 55), mother with breast cancer (diagnosed age 62)"
700
+
701
+ **7. Social History (SH)**
702
+ - Tobacco use (pack-years)
703
+ - Alcohol use (drinks per week)
704
+ - Illicit drug use
705
+ - Occupation
706
+ - Living situation
707
+ - Sexual history if relevant
708
+ - Example: "Former smoker, quit 5 years ago (20 pack-year history). Occasional alcohol (2-3 drinks/week). Works as accountant. Lives with spouse."
709
+
710
+ **8. Review of Systems (ROS)**
711
+ - Systematic review of symptoms by organ system
712
+ - Typically 10-14 systems
713
+ - Pertinent positives and negatives
714
+ - Systems: Constitutional, Eyes, ENT, Cardiovascular, Respiratory, GI, GU, Musculoskeletal, Skin, Neurological, Psychiatric, Endocrine, Hematologic/Lymphatic, Allergic/Immunologic
715
+
716
+ **9. Physical Examination**
717
+ - Vital signs
718
+ - General appearance
719
+ - Systematic examination by organ system
720
+ - HEENT, Neck, Cardiovascular, Pulmonary, Abdomen, Extremities, Neurological, Skin
721
+ - Use standard terminology and abbreviations
722
+
723
+ **10. Assessment and Plan**
724
+ - Problem list with assessment and plan for each
725
+ - Numbered list format
726
+ - Diagnostic and therapeutic plans
727
+ - Disposition (admit, discharge, transfer)
728
+
729
+ For H&P templates, see `assets/history_physical_template.md`.
730
+
731
+ #### Discharge Summaries
732
+
733
+ Discharge summaries document the hospital stay and communicate care plan to outpatient providers.
734
+
735
+ **Required Elements:**
736
+
737
+ **1. Patient Identification**
738
+ - Name, date of birth, medical record number
739
+ - Admission and discharge dates
740
+ - Attending physician
741
+ - Admitting and discharge diagnoses
742
+
743
+ **2. Reason for Hospitalization**
744
+ - Brief description of presenting problem
745
+ - Chief complaint
746
+
747
+ **3. Hospital Course**
748
+ - Chronological narrative of key events
749
+ - Significant findings and procedures
750
+ - Response to treatment
751
+ - Complications
752
+ - Consultations obtained
753
+ - Organized by problem or chronologically
754
+
755
+ **4. Discharge Diagnoses**
756
+ - Primary diagnosis
757
+ - Secondary diagnoses
758
+ - Complications
759
+ - Comorbidities
760
+
761
+ **5. Procedures Performed**
762
+ - Surgeries
763
+ - Invasive procedures
764
+ - Diagnostic procedures
765
+
766
+ **6. Discharge Medications**
767
+ - Complete medication list with instructions
768
+ - Changes from admission medications
769
+ - New medications with indications
770
+
771
+ **7. Discharge Condition**
772
+ - Stable, improved, unchanged, expired
773
+ - Functional status
774
+ - Mental status
775
+
776
+ **8. Discharge Disposition**
777
+ - Home, skilled nursing facility, rehabilitation, hospice
778
+ - With or without services
779
+
780
+ **9. Follow-up Plans**
781
+ - Appointments scheduled
782
+ - Recommended follow-up timing
783
+ - Pending tests or studies
784
+ - Referrals
785
+
786
+ **10. Patient Instructions**
787
+ - Activity restrictions
788
+ - Dietary restrictions
789
+ - Wound care
790
+ - Warning signs to seek care
791
+ - Medication instructions
792
+
793
+ **Best Practices:**
794
+ - Complete within 24-48 hours of discharge
795
+ - Use clear language for outpatient providers
796
+ - Highlight important pending results
797
+ - Document code status discussions
798
+ - Include patient education provided
799
+
800
+ For discharge summary templates, see `assets/discharge_summary_template.md`.
801
+
802
+ ## Regulatory Compliance and Privacy
803
+
804
+ ### HIPAA Compliance
805
+
806
+ The Health Insurance Portability and Accountability Act (HIPAA) mandates protection of patient health information.
807
+
808
+ **Key Requirements:**
809
+ - Minimum necessary disclosure
810
+ - Patient authorization for use beyond treatment/payment/operations
811
+ - Secure storage and transmission
812
+ - Audit trails for electronic records
813
+ - Breach notification procedures
814
+
815
+ **De-identification Methods:**
816
+ 1. **Safe Harbor Method**: Remove 18 identifiers
817
+ 2. **Expert Determination**: Statistical method confirming low re-identification risk
818
+
819
+ **Business Associate Agreements:**
820
+ Required when PHI is shared with third parties for services
821
+
822
+ For detailed HIPAA guidance, see `references/regulatory_compliance.md`.
823
+
824
+ ### FDA Regulations
825
+
826
+ Clinical trial documentation must comply with FDA regulations:
827
+ - 21 CFR Part 11 (Electronic Records and Signatures)
828
+ - 21 CFR Part 50 (Informed Consent)
829
+ - 21 CFR Part 56 (IRB Standards)
830
+ - 21 CFR Part 312 (IND Regulations)
831
+
832
+ ### ICH-GCP Guidelines
833
+
834
+ Good Clinical Practice (GCP) guidelines ensure quality and ethical standards in clinical trials:
835
+ - Protocol adherence
836
+ - Informed consent documentation
837
+ - Source document requirements
838
+ - Audit trails and data integrity
839
+ - Investigator responsibilities
840
+
841
+ For ICH-GCP compliance, see `references/regulatory_compliance.md`.
842
+
843
+ ## Medical Terminology and Standards
844
+
845
+ ### Standardized Nomenclature
846
+
847
+ **SNOMED CT (Systematized Nomenclature of Medicine - Clinical Terms)**
848
+ - Comprehensive clinical terminology
849
+ - Used for electronic health records
850
+ - Enables semantic interoperability
851
+
852
+ **LOINC (Logical Observation Identifiers Names and Codes)**
853
+ - Standard for laboratory and clinical observations
854
+ - Facilitates data exchange and reporting
855
+
856
+ **ICD-10-CM (International Classification of Diseases, 10th Revision, Clinical Modification)**
857
+ - Diagnosis coding for billing and epidemiology
858
+ - Required for reimbursement
859
+
860
+ **CPT (Current Procedural Terminology)**
861
+ - Procedure coding for billing
862
+ - Maintained by AMA
863
+
864
+ ### Abbreviation Standards
865
+
866
+ **Acceptable Abbreviations:**
867
+ Use standard abbreviations to improve efficiency while maintaining clarity.
868
+
869
+ **Do Not Use List (Joint Commission):**
870
+ - U (unit) - write "unit"
871
+ - IU (international unit) - write "international unit"
872
+ - QD, QOD (daily, every other day) - write "daily" or "every other day"
873
+ - Trailing zero (X.0 mg) - never use after decimal
874
+ - Lack of leading zero (.X mg) - always use before decimal (0.X mg)
875
+ - MS, MSO4, MgSO4 - write "morphine sulfate" or "magnesium sulfate"
876
+
877
+ For comprehensive terminology standards, see `references/medical_terminology.md`.
878
+
879
+ ## Quality Assurance and Validation
880
+
881
+ ### Documentation Quality Principles
882
+
883
+ **Completeness:**
884
+ - All required elements present
885
+ - No missing data fields
886
+ - Comprehensive patient information
887
+
888
+ **Accuracy:**
889
+ - Factually correct information
890
+ - Verified data sources
891
+ - Appropriate clinical reasoning
892
+
893
+ **Timeliness:**
894
+ - Documented contemporaneously or shortly after encounter
895
+ - Time-sensitive reports prioritized
896
+ - Regulatory deadlines met
897
+
898
+ **Clarity:**
899
+ - Clear and unambiguous language
900
+ - Organized logical structure
901
+ - Appropriate use of medical terminology
902
+
903
+ **Compliance:**
904
+ - Regulatory requirements met
905
+ - Privacy protections in place
906
+ - Institutional policies followed
907
+
908
+ ### Validation Checklists
909
+
910
+ For each report type, use validation checklists to ensure quality:
911
+ - Case report CARE checklist
912
+ - Diagnostic report completeness
913
+ - SAE report regulatory compliance
914
+ - Clinical documentation billing requirements
915
+
916
+ Validation scripts are available in the `scripts/` directory.
917
+
918
+ ## Data Presentation in Clinical Reports
919
+
920
+ ### Tables and Figures
921
+
922
+ **Tables for Clinical Data:**
923
+ - Demographic and baseline characteristics
924
+ - Adverse events summary
925
+ - Laboratory values over time
926
+ - Efficacy outcomes
927
+
928
+ **Table Design Principles:**
929
+ - Clear column headers with units
930
+ - Footnotes for abbreviations and statistical notes
931
+ - Consistent formatting
932
+ - Appropriate precision (significant figures)
933
+
934
+ **Figures for Clinical Data:**
935
+ - Kaplan-Meier survival curves
936
+ - Forest plots for subgroup analyses
937
+ - Patient flow diagrams (CONSORT)
938
+ - Timeline figures for case reports
939
+ - Before-and-after images
940
+
941
+ **Image Guidelines:**
942
+ - High resolution (300 dpi minimum)
943
+ - Appropriate scale bars
944
+ - Annotations for key features
945
+ - De-identified (no patient identifiers visible)
946
+ - Informed consent for recognizable images
947
+
948
+ For data presentation standards, see `references/data_presentation.md`.
949
+
950
+ ## Integration with Other Skills
951
+
952
+ This clinical reports skill integrates with:
953
+ - **Scientific Writing**: For clear, professional medical writing
954
+ - **Peer Review**: For quality assessment of case reports
955
+ - **Citation Management**: For literature references in case reports
956
+ - **Research Grants**: For clinical trial protocol development
957
+ - **Literature Review**: For background sections in case reports
958
+
959
+ ## Workflow for Clinical Report Writing
960
+
961
+ ### Case Report Workflow
962
+
963
+ **Phase 1: Case Identification and Consent (Week 1)**
964
+ - Identify novel or educational case
965
+ - Obtain patient informed consent
966
+ - De-identify patient information
967
+ - Collect clinical data and images
968
+
969
+ **Phase 2: Literature Review (Week 1-2)**
970
+ - Search for similar cases
971
+ - Review relevant pathophysiology
972
+ - Identify knowledge gaps
973
+ - Determine novelty and significance
974
+
975
+ **Phase 3: Drafting (Week 2-3)**
976
+ - Write structured outline following CARE guidelines
977
+ - Draft all sections (abstract through discussion)
978
+ - Create timeline and figures
979
+ - Format references
980
+
981
+ **Phase 4: Internal Review (Week 3-4)**
982
+ - Co-author review
983
+ - Attending physician review
984
+ - Institutional review if required
985
+ - Patient review of de-identified draft
986
+
987
+ **Phase 5: Journal Selection and Submission (Week 4-5)**
988
+ - Select appropriate journal
989
+ - Format per journal guidelines
990
+ - Prepare cover letter
991
+ - Submit manuscript
992
+
993
+ **Phase 6: Revision (Variable)**
994
+ - Respond to peer reviewer comments
995
+ - Revise manuscript
996
+ - Resubmit
997
+
998
+ ### Diagnostic Report Workflow
999
+
1000
+ **Real-time Workflow:**
1001
+ - Review clinical indication and prior studies
1002
+ - Interpret imaging, pathology, or laboratory findings
1003
+ - Dictate or type report using structured format
1004
+ - Peer review for complex cases
1005
+ - Final sign-out and distribution
1006
+ - Critical value notification if applicable
1007
+
1008
+ **Turnaround Time Benchmarks:**
1009
+ - STAT reports: <1 hour
1010
+ - Routine reports: 24-48 hours
1011
+ - Complex cases: 2-5 days
1012
+ - Pending additional studies: documented delay
1013
+
1014
+ ### Clinical Trial Report Workflow
1015
+
1016
+ **SAE Report: 24 hours to 15 days**
1017
+ - Event identified by site
1018
+ - Initial assessment and documentation
1019
+ - Causality and expectedness determination
1020
+ - Report completion and review
1021
+ - Submission to sponsor, IRB, FDA (as required)
1022
+ - Follow-up reporting until resolution
1023
+
1024
+ **CSR: 6-12 months post-study completion**
1025
+ - Database lock and data cleaning
1026
+ - Statistical analysis per SAP
1027
+ - Drafting by medical writer
1028
+ - Review by biostatistician and clinical team
1029
+ - Quality control review
1030
+ - Final approval and regulatory submission
1031
+
1032
+ ## Resources
1033
+
1034
+ This skill includes comprehensive reference files and templates:
1035
+
1036
+ ### Reference Files
1037
+
1038
+ - `references/case_report_guidelines.md` - CARE guidelines, journal requirements, writing tips
1039
+ - `references/diagnostic_reports_standards.md` - ACR, CAP, laboratory reporting standards
1040
+ - `references/clinical_trial_reporting.md` - ICH-E3, CONSORT, SAE reporting, CSR structure
1041
+ - `references/patient_documentation.md` - SOAP notes, H&P, discharge summaries, coding
1042
+ - `references/regulatory_compliance.md` - HIPAA, 21 CFR Part 11, ICH-GCP, FDA requirements
1043
+ - `references/medical_terminology.md` - SNOMED, LOINC, ICD-10, abbreviations, nomenclature
1044
+ - `references/data_presentation.md` - Tables, figures, safety data, CONSORT diagrams
1045
+ - `references/peer_review_standards.md` - Review criteria for clinical manuscripts
1046
+
1047
+ ### Template Assets
1048
+
1049
+ - `assets/case_report_template.md` - Structured case report following CARE guidelines
1050
+ - `assets/radiology_report_template.md` - Standard radiology report format
1051
+ - `assets/pathology_report_template.md` - Surgical pathology report with synoptic elements
1052
+ - `assets/lab_report_template.md` - Clinical laboratory report format
1053
+ - `assets/clinical_trial_sae_template.md` - Serious adverse event report form
1054
+ - `assets/clinical_trial_csr_template.md` - Clinical study report outline per ICH-E3
1055
+ - `assets/soap_note_template.md` - SOAP progress note format
1056
+ - `assets/history_physical_template.md` - Comprehensive H&P template
1057
+ - `assets/discharge_summary_template.md` - Hospital discharge summary
1058
+ - `assets/consult_note_template.md` - Consultation note format
1059
+ - `assets/quality_checklist.md` - Quality assurance checklist for all report types
1060
+ - `assets/hipaa_compliance_checklist.md` - Privacy and de-identification checklist
1061
+
1062
+ ### Automation Scripts
1063
+
1064
+ - `scripts/validate_case_report.py` - Check CARE guideline compliance and completeness
1065
+ - `scripts/validate_trial_report.py` - Verify ICH-E3 structure and required elements
1066
+ - `scripts/check_deidentification.py` - Scan for 18 HIPAA identifiers in text
1067
+ - `scripts/format_adverse_events.py` - Generate AE summary tables from data
1068
+ - `scripts/generate_report_template.py` - Interactive template selection and generation
1069
+ - `scripts/extract_clinical_data.py` - Parse structured data from clinical reports
1070
+ - `scripts/compliance_checker.py` - Verify regulatory compliance requirements
1071
+ - `scripts/terminology_validator.py` - Validate medical terminology and coding
1072
+
1073
+ Load these resources as needed when working on specific clinical reports.
1074
+
1075
+ ## Common Pitfalls to Avoid
1076
+
1077
+ ### Case Reports
1078
+ - **Privacy violations**: Inadequate de-identification or missing consent
1079
+ - **Lack of novelty**: Reporting common or well-documented cases
1080
+ - **Insufficient detail**: Missing key clinical information
1081
+ - **Poor literature review**: Failure to contextualize within existing knowledge
1082
+ - **Overgeneralization**: Drawing broad conclusions from single case
1083
+
1084
+ ### Diagnostic Reports
1085
+ - **Vague language**: Using ambiguous terms like "unremarkable" without specifics
1086
+ - **Incomplete comparison**: Not reviewing prior imaging
1087
+ - **Missing clinical correlation**: Failing to answer clinical question
1088
+ - **Technical jargon**: Overuse of terminology without explanation
1089
+ - **Delayed critical value notification**: Not communicating urgent findings
1090
+
1091
+ ### Clinical Trial Reports
1092
+ - **Late reporting**: Missing regulatory deadlines for SAE reporting
1093
+ - **Incomplete causality**: Inadequate causality assessment
1094
+ - **Data inconsistencies**: Discrepancies between data sources
1095
+ - **Protocol deviations**: Unreported or inadequately documented deviations
1096
+ - **Selective reporting**: Omitting negative or unfavorable results
1097
+
1098
+ ### Patient Documentation
1099
+ - **Illegibility**: Poor handwriting in paper records
1100
+ - **Copy-forward errors**: Propagating outdated information
1101
+ - **Insufficient detail**: Vague or incomplete documentation affecting billing
1102
+ - **Lack of medical necessity**: Not documenting indication for services
1103
+ - **Missing signatures**: Unsigned or undated notes
1104
+
1105
+ ## Final Checklist
1106
+
1107
+ Before finalizing any clinical report, verify:
1108
+
1109
+ - [ ] All required sections complete
1110
+ - [ ] Patient privacy protected (HIPAA compliance)
1111
+ - [ ] Informed consent obtained (if applicable)
1112
+ - [ ] Accurate and verified clinical data
1113
+ - [ ] Appropriate medical terminology and coding
1114
+ - [ ] Clear, professional language
1115
+ - [ ] Proper formatting per guidelines
1116
+ - [ ] References cited appropriately
1117
+ - [ ] Figures and tables labeled correctly
1118
+ - [ ] Spell-checked and proofread
1119
+ - [ ] Regulatory requirements met
1120
+ - [ ] Institutional policies followed
1121
+ - [ ] Signatures and dates present
1122
+ - [ ] Quality assurance review completed
1123
+
1124
+ ---
1125
+
1126
+ **Final Note**: Clinical report writing requires attention to detail, medical accuracy, regulatory compliance, and clear communication. Whether documenting patient care, reporting research findings, or communicating diagnostic results, the quality of clinical reports directly impacts patient safety, healthcare delivery, and medical knowledge advancement. Always prioritize accuracy, privacy, and professionalism in all clinical documentation.
1127
+