@synsci/cli-darwin-x64-baseline 1.1.71 → 1.1.73

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,714 @@
1
+ ---
2
+ name: scientific-writing
3
+ description: "Core skill for the deep research and writing tool. Write scientific manuscripts in full paragraphs (never bullet points). Use two-stage process: (1) create section outlines with key points using research-lookup, (2) convert to flowing prose. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), for research papers and journal submissions."
4
+ allowed-tools: [Read, Write, Edit, Bash]
5
+ ---
6
+
7
+ # Scientific Writing
8
+
9
+ ## Overview
10
+
11
+ **This is the core skill for the deep research and writing tool**—combining AI-driven deep research with well-formatted written outputs. Every document produced is backed by comprehensive literature search and verified citations through the research-lookup skill.
12
+
13
+ Scientific writing is a process for communicating research with precision and clarity. Write manuscripts using IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, and reporting guidelines (CONSORT/STROBE/PRISMA). Apply this skill for research papers and journal submissions.
14
+
15
+ **Critical Principle: Always write in full paragraphs with flowing prose. Never submit bullet points in the final manuscript.** Use a two-stage process: first create section outlines with key points using research-lookup, then convert those outlines into complete paragraphs.
16
+
17
+ ## When to Use This Skill
18
+
19
+ This skill should be used when:
20
+ - Writing or revising any section of a scientific manuscript (abstract, introduction, methods, results, discussion)
21
+ - Structuring a research paper using IMRAD or other standard formats
22
+ - Formatting citations and references in specific styles (APA, AMA, Vancouver, Chicago, IEEE)
23
+ - Creating, formatting, or improving figures, tables, and data visualizations
24
+ - Applying study-specific reporting guidelines (CONSORT for trials, STROBE for observational studies, PRISMA for reviews)
25
+ - Drafting abstracts that meet journal requirements (structured or unstructured)
26
+ - Preparing manuscripts for submission to specific journals
27
+ - Improving writing clarity, conciseness, and precision
28
+ - Ensuring proper use of field-specific terminology and nomenclature
29
+ - Addressing reviewer comments and revising manuscripts
30
+
31
+ ## Visual Enhancement with Scientific Schematics
32
+
33
+ **⚠️ MANDATORY: Every scientific paper MUST include a graphical abstract plus 1-2 additional AI-generated figures using the scientific-schematics skill.**
34
+
35
+ This is not optional. Scientific papers without visual elements are incomplete. Before finalizing any document:
36
+ 1. **ALWAYS generate a graphical abstract** as the first visual element
37
+ 2. Generate at minimum ONE additional schematic or diagram using scientific-schematics
38
+ 3. Prefer 3-4 total figures for comprehensive papers (graphical abstract + methods flowchart + results visualization + conceptual diagram)
39
+
40
+ ### Graphical Abstract (REQUIRED)
41
+
42
+ **Every scientific writeup MUST include a graphical abstract.** This is a visual summary of your paper that:
43
+ - Appears before or immediately after the text abstract
44
+ - Captures the entire paper's key message in one image
45
+ - Is suitable for journal table of contents display
46
+ - Uses landscape orientation (typically 1200x600px)
47
+
48
+ **Generate the graphical abstract FIRST:**
49
+ ```bash
50
+ python scripts/generate_schematic.py "Graphical abstract for [paper title]: [brief description showing workflow from input → methods → key findings → conclusions]" -o figures/graphical_abstract.png
51
+ ```
52
+
53
+ **Graphical Abstract Requirements:**
54
+ - **Content**: Visual summary showing workflow, key methods, main findings, and conclusions
55
+ - **Style**: Clean, professional, suitable for journal TOC
56
+ - **Elements**: Include 3-5 key steps/concepts with connecting arrows or flow
57
+ - **Text**: Minimal labels, large readable fonts
58
+ - Log: `[HH:MM:SS] GENERATED: Graphical abstract for paper summary`
59
+
60
+ ### Additional Figures (GENERATE EXTENSIVELY)
61
+
62
+ **⚠️ CRITICAL: Use BOTH scientific-schematics AND generate-image EXTENSIVELY throughout all documents.**
63
+
64
+ Every document should be richly illustrated. Generate figures liberally - when in doubt, add a visual.
65
+
66
+ **MINIMUM Figure Requirements:**
67
+
68
+ | Document Type | Minimum | Recommended |
69
+ |--------------|---------|-------------|
70
+ | Research Papers | 5 | 6-8 |
71
+ | Literature Reviews | 4 | 5-7 |
72
+ | Market Research | 20 | 25-30 |
73
+ | Presentations | 1/slide | 1-2/slide |
74
+ | Posters | 6 | 8-10 |
75
+ | Grants | 4 | 5-7 |
76
+ | Clinical Reports | 3 | 4-6 |
77
+
78
+ **Use scientific-schematics EXTENSIVELY for technical diagrams:**
79
+ ```bash
80
+ python scripts/generate_schematic.py "your diagram description" -o figures/output.png
81
+ ```
82
+
83
+ - Study design and methodology flowcharts (CONSORT, PRISMA, STROBE)
84
+ - Conceptual framework diagrams
85
+ - Experimental workflow illustrations
86
+ - Data analysis pipeline diagrams
87
+ - Biological pathway or mechanism diagrams
88
+ - System architecture visualizations
89
+ - Neural network architectures
90
+ - Decision trees, algorithm flowcharts
91
+ - Comparison matrices, timeline diagrams
92
+ - Any technical concept that benefits from schematic visualization
93
+
94
+ **Use generate-image EXTENSIVELY for visual content:**
95
+ ```bash
96
+ python scripts/generate_image.py "your image description" -o figures/output.png
97
+ ```
98
+
99
+ - Photorealistic illustrations of concepts
100
+ - Medical/anatomical illustrations
101
+ - Environmental/ecological scenes
102
+ - Equipment and lab setup visualizations
103
+ - Artistic visualizations, infographics
104
+ - Cover images, header graphics
105
+ - Product mockups, prototype visualizations
106
+ - Any visual that enhances understanding or engagement
107
+
108
+ The AI will automatically:
109
+ - Create publication-quality images with proper formatting
110
+ - Review and refine through multiple iterations
111
+ - Ensure accessibility (colorblind-friendly, high contrast)
112
+ - Save outputs in the figures/ directory
113
+
114
+ **When in Doubt, Generate a Figure:**
115
+ - Complex concept → generate a schematic
116
+ - Data discussion → generate a visualization
117
+ - Process description → generate a flowchart
118
+ - Comparison → generate a comparison diagram
119
+ - Reader benefit → generate a visual
120
+
121
+ For detailed guidance, refer to the scientific-schematics and generate-image skill documentation.
122
+
123
+ ---
124
+
125
+ ## Core Capabilities
126
+
127
+ ### 1. Manuscript Structure and Organization
128
+
129
+ **IMRAD Format**: Guide papers through the standard Introduction, Methods, Results, And Discussion structure used across most scientific disciplines. This includes:
130
+ - **Introduction**: Establish research context, identify gaps, state objectives
131
+ - **Methods**: Detail study design, populations, procedures, and analysis approaches
132
+ - **Results**: Present findings objectively without interpretation
133
+ - **Discussion**: Interpret results, acknowledge limitations, propose future directions
134
+
135
+ For detailed guidance on IMRAD structure, refer to `references/imrad_structure.md`.
136
+
137
+ **Alternative Structures**: Support discipline-specific formats including:
138
+ - Review articles (narrative, systematic, scoping)
139
+ - Case reports and case series
140
+ - Meta-analyses and pooled analyses
141
+ - Theoretical/modeling papers
142
+ - Methods papers and protocols
143
+
144
+ ### 2. Section-Specific Writing Guidance
145
+
146
+ **Abstract Composition**: Craft concise, standalone summaries (150-300 words) written as **flowing paragraphs**—never with labeled sections like "Background:", "Methods:", "Results:", "Conclusions:". The abstract should read as cohesive prose covering: (1) context and problem, (2) what was done, (3) key findings with specific numbers, and (4) significance and implications. Only use structured abstracts with labels if the journal explicitly requires them in their author guidelines.
147
+
148
+ **Introduction Development**: Build compelling introductions that:
149
+ - Establish the research problem's importance
150
+ - Review relevant literature systematically
151
+ - Identify knowledge gaps or controversies
152
+ - State clear research questions or hypotheses
153
+ - Explain the study's novelty and significance
154
+
155
+ **Methods Documentation**: Ensure reproducibility through:
156
+ - Detailed participant/sample descriptions
157
+ - Clear procedural documentation
158
+ - Statistical methods with justification
159
+ - Equipment and materials specifications
160
+ - Ethical approval and consent statements
161
+
162
+ **Results Presentation**: Present findings with:
163
+ - Logical flow from primary to secondary outcomes
164
+ - Integration with figures and tables
165
+ - Statistical significance with effect sizes
166
+ - Objective reporting without interpretation
167
+
168
+ **Discussion Construction**: Synthesize findings by:
169
+ - Relating results to research questions
170
+ - Comparing with existing literature
171
+ - Acknowledging limitations honestly
172
+ - Proposing mechanistic explanations
173
+ - Suggesting practical implications and future research
174
+
175
+ ### 3. Citation and Reference Management
176
+
177
+ Apply citation styles correctly across disciplines. For comprehensive style guides, refer to `references/citation_styles.md`.
178
+
179
+ **Major Citation Styles:**
180
+ - **AMA (American Medical Association)**: Numbered superscript citations, common in medicine
181
+ - **Vancouver**: Numbered citations in square brackets, biomedical standard
182
+ - **APA (American Psychological Association)**: Author-date in-text citations, common in social sciences
183
+ - **Chicago**: Notes-bibliography or author-date, humanities and sciences
184
+ - **IEEE**: Numbered square brackets, engineering and computer science
185
+
186
+ **Best Practices:**
187
+ - Cite primary sources when possible
188
+ - Include recent literature (last 5-10 years for active fields)
189
+ - Balance citation distribution across introduction and discussion
190
+ - Verify all citations against original sources
191
+ - Use reference management software (Zotero, Mendeley, EndNote)
192
+
193
+ ### 4. Figures and Tables
194
+
195
+ Create effective data visualizations that enhance comprehension. For detailed best practices, refer to `references/figures_tables.md`.
196
+
197
+ **When to Use Tables vs. Figures:**
198
+ - **Tables**: Precise numerical data, complex datasets, multiple variables requiring exact values
199
+ - **Figures**: Trends, patterns, relationships, comparisons best understood visually
200
+
201
+ **Design Principles:**
202
+ - Make each table/figure self-explanatory with complete captions
203
+ - Use consistent formatting and terminology across all display items
204
+ - Label all axes, columns, and rows with units
205
+ - Include sample sizes (n) and statistical annotations
206
+ - Follow the "one table/figure per 1000 words" guideline
207
+ - Avoid duplicating information between text, tables, and figures
208
+
209
+ **Common Figure Types:**
210
+ - Bar graphs: Comparing discrete categories
211
+ - Line graphs: Showing trends over time
212
+ - Scatterplots: Displaying correlations
213
+ - Box plots: Showing distributions and outliers
214
+ - Heatmaps: Visualizing matrices and patterns
215
+
216
+ ### 5. Reporting Guidelines by Study Type
217
+
218
+ Ensure completeness and transparency by following established reporting standards. For comprehensive guideline details, refer to `references/reporting_guidelines.md`.
219
+
220
+ **Key Guidelines:**
221
+ - **CONSORT**: Randomized controlled trials
222
+ - **STROBE**: Observational studies (cohort, case-control, cross-sectional)
223
+ - **PRISMA**: Systematic reviews and meta-analyses
224
+ - **STARD**: Diagnostic accuracy studies
225
+ - **TRIPOD**: Prediction model studies
226
+ - **ARRIVE**: Animal research
227
+ - **CARE**: Case reports
228
+ - **SQUIRE**: Quality improvement studies
229
+ - **SPIRIT**: Study protocols for clinical trials
230
+ - **CHEERS**: Economic evaluations
231
+
232
+ Each guideline provides checklists ensuring all critical methodological elements are reported.
233
+
234
+ ### 6. Writing Principles and Style
235
+
236
+ Apply fundamental scientific writing principles. For detailed guidance, refer to `references/writing_principles.md`.
237
+
238
+ **Clarity**:
239
+ - Use precise, unambiguous language
240
+ - Define technical terms and abbreviations at first use
241
+ - Maintain logical flow within and between paragraphs
242
+ - Use active voice when appropriate for clarity
243
+
244
+ **Conciseness**:
245
+ - Eliminate redundant words and phrases
246
+ - Favor shorter sentences (15-20 words average)
247
+ - Remove unnecessary qualifiers
248
+ - Respect word limits strictly
249
+
250
+ **Accuracy**:
251
+ - Report exact values with appropriate precision
252
+ - Use consistent terminology throughout
253
+ - Distinguish between observations and interpretations
254
+ - Acknowledge uncertainty appropriately
255
+
256
+ **Objectivity**:
257
+ - Present results without bias
258
+ - Avoid overstating findings or implications
259
+ - Acknowledge conflicting evidence
260
+ - Maintain professional, neutral tone
261
+
262
+ ### 7. Writing Process: From Outline to Full Paragraphs
263
+
264
+ **CRITICAL: Always write in full paragraphs, never submit bullet points in scientific papers.**
265
+
266
+ Scientific papers must be written in complete, flowing prose. Use this two-stage approach for effective writing:
267
+
268
+ **Stage 1: Create Section Outlines with Key Points**
269
+
270
+ When starting a new section:
271
+ 1. Use the research-lookup skill to gather relevant literature and data
272
+ 2. Create a structured outline with bullet points marking:
273
+ - Main arguments or findings to present
274
+ - Key studies to cite
275
+ - Data points and statistics to include
276
+ - Logical flow and organization
277
+ 3. These bullet points serve as scaffolding—they are NOT the final manuscript
278
+
279
+ **Example outline (Introduction section):**
280
+ ```
281
+ - Background: AI in drug discovery gaining traction
282
+ * Cite recent reviews (Smith 2023, Jones 2024)
283
+ * Traditional methods are slow and expensive
284
+ - Gap: Limited application to rare diseases
285
+ * Only 2 prior studies (Lee 2022, Chen 2023)
286
+ * Small datasets remain a challenge
287
+ - Our approach: Transfer learning from common diseases
288
+ * Novel architecture combining X and Y
289
+ - Study objectives: Validate on 3 rare disease datasets
290
+ ```
291
+
292
+ **Stage 2: Convert Key Points to Full Paragraphs**
293
+
294
+ Once the outline is complete, expand each bullet point into proper prose:
295
+
296
+ 1. **Transform bullet points into complete sentences** with subjects, verbs, and objects
297
+ 2. **Add transitions** between sentences and ideas (however, moreover, in contrast, subsequently)
298
+ 3. **Integrate citations naturally** within sentences, not as lists
299
+ 4. **Expand with context and explanation** that bullet points omit
300
+ 5. **Ensure logical flow** from one sentence to the next within each paragraph
301
+ 6. **Vary sentence structure** to maintain reader engagement
302
+
303
+ **Example conversion to prose:**
304
+
305
+ ```
306
+ Artificial intelligence approaches have gained significant traction in drug discovery
307
+ pipelines over the past decade (Smith, 2023; Jones, 2024). While these computational
308
+ methods show promise for accelerating the identification of therapeutic candidates,
309
+ traditional experimental approaches remain slow and resource-intensive, often requiring
310
+ years of laboratory work and substantial financial investment. However, the application
311
+ of AI to rare diseases has been limited, with only two prior studies demonstrating
312
+ proof-of-concept results (Lee, 2022; Chen, 2023). The primary obstacle has been the
313
+ scarcity of training data for conditions affecting small patient populations.
314
+
315
+ To address this challenge, we developed a transfer learning approach that leverages
316
+ knowledge from well-characterized common diseases to predict therapeutic targets for
317
+ rare conditions. Our novel neural architecture combines convolutional layers for
318
+ molecular feature extraction with attention mechanisms for protein-ligand interaction
319
+ modeling. The objective of this study was to validate our approach across three
320
+ independent rare disease datasets, assessing both predictive accuracy and biological
321
+ interpretability of the results.
322
+ ```
323
+
324
+ **Key Differences Between Outlines and Final Text:**
325
+
326
+ | Outline (Planning Stage) | Final Manuscript |
327
+ |--------------------------|------------------|
328
+ | Bullet points and fragments | Complete sentences and paragraphs |
329
+ | Telegraphic notes | Full explanations with context |
330
+ | List of citations | Citations integrated into prose |
331
+ | Abbreviated ideas | Developed arguments with transitions |
332
+ | For your eyes only | For publication and peer review |
333
+
334
+ **Common Mistakes to Avoid:**
335
+
336
+ - ❌ **Never** leave bullet points in the final manuscript
337
+ - ❌ **Never** submit lists where paragraphs should be
338
+ - ❌ **Don't** use numbered or bulleted lists in Results or Discussion sections (except for specific cases like study hypotheses or inclusion criteria)
339
+ - ❌ **Don't** write sentence fragments or incomplete thoughts
340
+ - ✅ **Do** use occasional lists only in Methods (e.g., inclusion/exclusion criteria, materials lists)
341
+ - ✅ **Do** ensure every section flows as connected prose
342
+ - ✅ **Do** read paragraphs aloud to check for natural flow
343
+
344
+ **When Lists ARE Acceptable (Limited Cases):**
345
+
346
+ Lists may appear in scientific papers only in specific contexts:
347
+ - **Methods**: Inclusion/exclusion criteria, materials and reagents, participant characteristics
348
+ - **Supplementary Materials**: Extended protocols, equipment lists, detailed parameters
349
+ - **Never in**: Abstract, Introduction, Results, Discussion, Conclusions
350
+
351
+ **Abstract Format Rule:**
352
+ - ❌ **NEVER** use labeled sections (Background:, Methods:, Results:, Conclusions:)
353
+ - ✅ **ALWAYS** write as flowing paragraph(s) with natural transitions
354
+ - Exception: Only use structured format if journal explicitly requires it in author guidelines
355
+
356
+ **Integration with Research Lookup:**
357
+
358
+ The research-lookup skill is essential for Stage 1 (creating outlines):
359
+ 1. Search for relevant papers using research-lookup
360
+ 2. Extract key findings, methods, and data
361
+ 3. Organize findings as bullet points in your outline
362
+ 4. Then convert the outline to full paragraphs in Stage 2
363
+
364
+ This two-stage process ensures you:
365
+ - Gather and organize information systematically
366
+ - Create logical structure before writing
367
+ - Produce polished, publication-ready prose
368
+ - Maintain focus on the narrative flow
369
+
370
+ ### 8. Professional Report Formatting (Non-Journal Documents)
371
+
372
+ For research reports, technical reports, white papers, and other professional documents that are NOT journal manuscripts, use the `scientific_report.sty` LaTeX style package for a polished, professional appearance.
373
+
374
+ **When to Use Professional Report Formatting:**
375
+ - Research reports and technical reports
376
+ - White papers and policy briefs
377
+ - Grant reports and progress reports
378
+ - Industry reports and technical documentation
379
+ - Internal research summaries
380
+ - Feasibility studies and project deliverables
381
+
382
+ **When NOT to Use (Use Venue-Specific Formatting Instead):**
383
+ - Journal manuscripts → Use `venue-templates` skill
384
+ - Conference papers → Use `venue-templates` skill
385
+ - Academic theses → Use institutional templates
386
+
387
+ **The `scientific_report.sty` Style Package Provides:**
388
+
389
+ | Feature | Description |
390
+ |---------|-------------|
391
+ | Typography | Helvetica font family for modern, professional appearance |
392
+ | Color Scheme | Professional blues, greens, and accent colors |
393
+ | Box Environments | Colored boxes for key findings, methods, recommendations, limitations |
394
+ | Tables | Alternating row colors, professional headers |
395
+ | Figures | Consistent caption formatting |
396
+ | Scientific Commands | Shortcuts for p-values, effect sizes, confidence intervals |
397
+
398
+ **Box Environments for Content Organization:**
399
+
400
+ ```latex
401
+ % Key findings (blue) - for major discoveries
402
+ \begin{keyfindings}[Title]
403
+ Content with key findings and statistics.
404
+ \end{keyfindings}
405
+
406
+ % Methodology (green) - for methods highlights
407
+ \begin{methodology}[Study Design]
408
+ Description of methods and procedures.
409
+ \end{methodology}
410
+
411
+ % Recommendations (purple) - for action items
412
+ \begin{recommendations}[Clinical Implications]
413
+ \begin{enumerate}
414
+ \item Specific recommendation 1
415
+ \item Specific recommendation 2
416
+ \end{enumerate}
417
+ \end{recommendations}
418
+
419
+ % Limitations (orange) - for caveats and cautions
420
+ \begin{limitations}[Study Limitations]
421
+ Description of limitations and their implications.
422
+ \end{limitations}
423
+ ```
424
+
425
+ **Professional Table Formatting:**
426
+
427
+ ```latex
428
+ \begin{table}[htbp]
429
+ \centering
430
+ \caption{Results Summary}
431
+ \begin{tabular}{@{}lccc@{}}
432
+ \toprule
433
+ \textbf{Variable} & \textbf{Treatment} & \textbf{Control} & \textbf{p} \\
434
+ \midrule
435
+ Outcome 1 & \meansd{42.5}{8.3} & \meansd{35.2}{7.9} & <.001\sigthree \\
436
+ \rowcolor{tablealt} Outcome 2 & \meansd{3.8}{1.2} & \meansd{3.1}{1.1} & .012\sigone \\
437
+ Outcome 3 & \meansd{18.2}{4.5} & \meansd{17.8}{4.2} & .58\signs \\
438
+ \bottomrule
439
+ \end{tabular}
440
+
441
+ {\small \siglegend}
442
+ \end{table}
443
+ ```
444
+
445
+ **Scientific Notation Commands:**
446
+
447
+ | Command | Output | Purpose |
448
+ |---------|--------|---------|
449
+ | `\pvalue{0.023}` | *p* = 0.023 | P-values |
450
+ | `\psig{< 0.001}` | ***p* = < 0.001** | Significant p-values (bold) |
451
+ | `\CI{0.45}{0.72}` | 95% CI [0.45, 0.72] | Confidence intervals |
452
+ | `\effectsize{d}{0.75}` | d = 0.75 | Effect sizes |
453
+ | `\samplesize{250}` | *n* = 250 | Sample sizes |
454
+ | `\meansd{42.5}{8.3}` | 42.5 ± 8.3 | Mean with SD |
455
+ | `\sigone`, `\sigtwo`, `\sigthree` | *, **, *** | Significance stars |
456
+
457
+ **Getting Started:**
458
+
459
+ ```latex
460
+ \documentclass[11pt,letterpaper]{report}
461
+ \usepackage{scientific_report}
462
+
463
+ \begin{document}
464
+ \makereporttitle
465
+ {Report Title}
466
+ {Subtitle}
467
+ {Author Name}
468
+ {Institution}
469
+ {Date}
470
+
471
+ % Your content with professional formatting
472
+ \end{document}
473
+ ```
474
+
475
+ **Compilation**: Use XeLaTeX or LuaLaTeX for proper Helvetica font rendering:
476
+ ```bash
477
+ xelatex report.tex
478
+ ```
479
+
480
+ For complete documentation, refer to:
481
+ - `assets/scientific_report.sty`: The style package
482
+ - `assets/scientific_report_template.tex`: Complete template example
483
+ - `assets/REPORT_FORMATTING_GUIDE.md`: Quick reference guide
484
+ - `references/professional_report_formatting.md`: Comprehensive formatting guide
485
+
486
+ ### 9. Journal-Specific Formatting
487
+
488
+ Adapt manuscripts to journal requirements:
489
+ - Follow author guidelines for structure, length, and format
490
+ - Apply journal-specific citation styles
491
+ - Meet figure/table specifications (resolution, file formats, dimensions)
492
+ - Include required statements (funding, conflicts of interest, data availability, ethical approval)
493
+ - Adhere to word limits for each section
494
+ - Format according to template requirements when provided
495
+
496
+ ### 10. Field-Specific Language and Terminology
497
+
498
+ Adapt language, terminology, and conventions to match the specific scientific discipline. Each field has established vocabulary, preferred phrasings, and domain-specific conventions that signal expertise and ensure clarity for the target audience.
499
+
500
+ **Identify Field-Specific Linguistic Conventions:**
501
+ - Review terminology used in recent high-impact papers in the target journal
502
+ - Note field-specific abbreviations, units, and notation systems
503
+ - Identify preferred terms (e.g., "participants" vs. "subjects," "compound" vs. "drug," "specimens" vs. "samples")
504
+ - Observe how methods, organisms, or techniques are typically described
505
+
506
+ **Biomedical and Clinical Sciences:**
507
+ - Use precise anatomical and clinical terminology (e.g., "myocardial infarction" not "heart attack" in formal writing)
508
+ - Follow standardized disease nomenclature (ICD, DSM, SNOMED-CT)
509
+ - Specify drug names using generic names first, brand names in parentheses if needed
510
+ - Use "patients" for clinical studies, "participants" for community-based research
511
+ - Follow Human Genome Variation Society (HGVS) nomenclature for genetic variants
512
+ - Report lab values with standard units (SI units in most international journals)
513
+
514
+ **Molecular Biology and Genetics:**
515
+ - Use italics for gene symbols (e.g., *TP53*), regular font for proteins (e.g., p53)
516
+ - Follow species-specific gene nomenclature (uppercase for human: *BRCA1*; sentence case for mouse: *Brca1*)
517
+ - Specify organism names in full at first mention, then use accepted abbreviations (e.g., *Escherichia coli*, then *E. coli*)
518
+ - Use standard genetic notation (e.g., +/+, +/-, -/- for genotypes)
519
+ - Employ established terminology for molecular techniques (e.g., "quantitative PCR" or "qPCR," not "real-time PCR")
520
+
521
+ **Chemistry and Pharmaceutical Sciences:**
522
+ - Follow IUPAC nomenclature for chemical compounds
523
+ - Use systematic names for novel compounds, common names for well-known substances
524
+ - Specify chemical structures using standard notation (e.g., SMILES, InChI for databases)
525
+ - Report concentrations with appropriate units (mM, μM, nM, or % w/v, v/v)
526
+ - Describe synthesis routes using accepted reaction nomenclature
527
+ - Use terms like "bioavailability," "pharmacokinetics," "IC50" consistently with field definitions
528
+
529
+ **Ecology and Environmental Sciences:**
530
+ - Use binomial nomenclature for species (italicized: *Homo sapiens*)
531
+ - Specify taxonomic authorities at first species mention when relevant
532
+ - Employ standardized habitat and ecosystem classifications
533
+ - Use consistent terminology for ecological metrics (e.g., "species richness," "Shannon diversity index")
534
+ - Describe sampling methods with field-standard terms (e.g., "transect," "quadrat," "mark-recapture")
535
+
536
+ **Physics and Engineering:**
537
+ - Follow SI units consistently unless field conventions dictate otherwise
538
+ - Use standard notation for physical quantities (scalars vs. vectors, tensors)
539
+ - Employ established terminology for phenomena (e.g., "quantum entanglement," "laminar flow")
540
+ - Specify equipment with model numbers and manufacturers when relevant
541
+ - Use mathematical notation consistent with field standards (e.g., ℏ for reduced Planck constant)
542
+
543
+ **Neuroscience:**
544
+ - Use standardized brain region nomenclature (e.g., refer to atlases like Allen Brain Atlas)
545
+ - Specify coordinates for brain regions using established stereotaxic systems
546
+ - Follow conventions for neural terminology (e.g., "action potential" not "spike" in formal writing)
547
+ - Use "neural activity," "neuronal firing," "brain activation" appropriately based on measurement method
548
+ - Describe recording techniques with proper specificity (e.g., "whole-cell patch clamp," "extracellular recording")
549
+
550
+ **Social and Behavioral Sciences:**
551
+ - Use person-first language when appropriate (e.g., "people with schizophrenia" not "schizophrenics")
552
+ - Employ standardized psychological constructs and validated assessment names
553
+ - Follow APA guidelines for reducing bias in language
554
+ - Specify theoretical frameworks using established terminology
555
+ - Use "participants" rather than "subjects" for human research
556
+
557
+ **General Principles:**
558
+
559
+ **Match Audience Expertise:**
560
+ - For specialized journals: Use field-specific terminology freely, define only highly specialized or novel terms
561
+ - For broad-impact journals (e.g., *Nature*, *Science*): Define more technical terms, provide context for specialized concepts
562
+ - For interdisciplinary audiences: Balance precision with accessibility, define terms at first use
563
+
564
+ **Define Technical Terms Strategically:**
565
+ - Define abbreviations at first use: "messenger RNA (mRNA)"
566
+ - Provide brief explanations for specialized techniques when writing for broader audiences
567
+ - Avoid over-defining terms well-known to the target audience (signals unfamiliarity with field)
568
+ - Create a glossary if numerous specialized terms are unavoidable
569
+
570
+ **Maintain Consistency:**
571
+ - Use the same term for the same concept throughout (don't alternate between "medication," "drug," and "pharmaceutical")
572
+ - Follow a consistent system for abbreviations (decide on "PCR" or "polymerase chain reaction" after first definition)
573
+ - Apply the same nomenclature system throughout (especially for genes, species, chemicals)
574
+
575
+ **Avoid Field Mixing Errors:**
576
+ - Don't use clinical terminology for basic science (e.g., don't call mice "patients")
577
+ - Avoid colloquialisms or overly general terms in place of precise field terminology
578
+ - Don't import terminology from adjacent fields without ensuring proper usage
579
+
580
+ **Verify Terminology Usage:**
581
+ - Consult field-specific style guides and nomenclature resources
582
+ - Check how terms are used in recent papers from the target journal
583
+ - Use domain-specific databases and ontologies (e.g., Gene Ontology, MeSH terms)
584
+ - When uncertain, cite a key reference that establishes terminology
585
+
586
+ ### 11. Common Pitfalls to Avoid
587
+
588
+ **Top Rejection Reasons:**
589
+ 1. Inappropriate, incomplete, or insufficiently described statistics
590
+ 2. Over-interpretation of results or unsupported conclusions
591
+ 3. Poorly described methods affecting reproducibility
592
+ 4. Small, biased, or inappropriate samples
593
+ 5. Poor writing quality or difficult-to-follow text
594
+ 6. Inadequate literature review or context
595
+ 7. Figures and tables that are unclear or poorly designed
596
+ 8. Failure to follow reporting guidelines
597
+
598
+ **Writing Quality Issues:**
599
+ - Mixing tenses inappropriately (use past tense for methods/results, present for established facts)
600
+ - Excessive jargon or undefined acronyms
601
+ - Paragraph breaks that disrupt logical flow
602
+ - Missing transitions between sections
603
+ - Inconsistent notation or terminology
604
+
605
+ ## Workflow for Manuscript Development
606
+
607
+ **Stage 1: Planning**
608
+ 1. Identify target journal and review author guidelines
609
+ 2. Determine applicable reporting guideline (CONSORT, STROBE, etc.)
610
+ 3. Outline manuscript structure (usually IMRAD)
611
+ 4. Plan figures and tables as the backbone of the paper
612
+
613
+ **Stage 2: Drafting** (Use two-stage writing process for each section)
614
+ 1. Start with figures and tables (the core data story)
615
+ 2. For each section below, follow the two-stage process:
616
+ - **First**: Create outline with bullet points using research-lookup
617
+ - **Second**: Convert bullet points to full paragraphs with flowing prose
618
+ 3. Write Methods (often easiest to draft first)
619
+ 4. Draft Results (describing figures/tables objectively)
620
+ 5. Compose Discussion (interpreting findings)
621
+ 6. Write Introduction (setting up the research question)
622
+ 7. Craft Abstract (synthesizing the complete story as **flowing paragraph(s)**, not labeled sections)
623
+ 8. Create Title (concise and descriptive)
624
+
625
+ **Remember**: Bullet points are for planning only—the final manuscript must be in complete paragraphs.
626
+
627
+ **Stage 3: Revision**
628
+ 1. Check logical flow and "red thread" throughout
629
+ 2. Verify consistency in terminology and notation
630
+ 3. Ensure figures/tables are self-explanatory
631
+ 4. Confirm adherence to reporting guidelines
632
+ 5. Verify all citations are accurate and properly formatted
633
+ 6. Check word counts for each section
634
+ 7. Proofread for grammar, spelling, and clarity
635
+
636
+ **Stage 4: Final Preparation**
637
+ 1. Format according to journal requirements
638
+ 2. Prepare supplementary materials
639
+ 3. Write cover letter highlighting significance
640
+ 4. Complete submission checklists
641
+ 5. Gather all required statements and forms
642
+
643
+ ## Integration with Other Scientific Skills
644
+
645
+ This skill works effectively with:
646
+ - **Data analysis skills**: For generating results to report
647
+ - **Statistical analysis**: For determining appropriate statistical presentations
648
+ - **Literature review skills**: For contextualizing research
649
+ - **Figure creation tools**: For developing publication-quality visualizations
650
+ - **Venue-templates skill**: For venue-specific writing styles and formatting (journal manuscripts)
651
+ - **scientific_report.sty**: For professional reports, white papers, and technical documents
652
+
653
+ ### Professional Reports vs. Journal Manuscripts
654
+
655
+ **Choose the right formatting approach:**
656
+
657
+ | Document Type | Formatting Approach |
658
+ |---------------|---------------------|
659
+ | Journal manuscripts | Use `venue-templates` skill |
660
+ | Conference papers | Use `venue-templates` skill |
661
+ | Research reports | Use `scientific_report.sty` (this skill) |
662
+ | White papers | Use `scientific_report.sty` (this skill) |
663
+ | Technical reports | Use `scientific_report.sty` (this skill) |
664
+ | Grant reports | Use `scientific_report.sty` (this skill) |
665
+
666
+ ### Venue-Specific Writing Styles
667
+
668
+ **Before writing for a specific venue, consult the venue-templates skill for writing style guides:**
669
+
670
+ Different venues have dramatically different writing expectations:
671
+ - **Nature/Science**: Accessible, story-driven, broad significance
672
+ - **Cell Press**: Mechanistic depth, graphical abstracts, Highlights
673
+ - **Medical journals (NEJM, Lancet)**: Structured abstracts, evidence language
674
+ - **ML conferences (NeurIPS, ICML)**: Contribution bullets, ablation studies
675
+ - **CS conferences (CHI, ACL)**: Field-specific conventions
676
+
677
+ The venue-templates skill provides:
678
+ - `venue_writing_styles.md`: Master style comparison
679
+ - Venue-specific guides: `nature_science_style.md`, `cell_press_style.md`, `medical_journal_styles.md`, `ml_conference_style.md`, `cs_conference_style.md`
680
+ - `reviewer_expectations.md`: What reviewers look for at each venue
681
+ - Writing examples in `assets/examples/`
682
+
683
+ **Workflow**: First use this skill for general scientific writing principles (IMRAD, clarity, citations), then consult venue-templates for venue-specific style adaptation.
684
+
685
+ ## References
686
+
687
+ This skill includes comprehensive reference files covering specific aspects of scientific writing:
688
+
689
+ - `references/imrad_structure.md`: Detailed guide to IMRAD format and section-specific content
690
+ - `references/citation_styles.md`: Complete citation style guides (APA, AMA, Vancouver, Chicago, IEEE)
691
+ - `references/figures_tables.md`: Best practices for creating effective data visualizations
692
+ - `references/reporting_guidelines.md`: Study-specific reporting standards and checklists
693
+ - `references/writing_principles.md`: Core principles of effective scientific communication
694
+ - `references/professional_report_formatting.md`: Guide to professional report styling with `scientific_report.sty`
695
+
696
+ ## Assets
697
+
698
+ This skill includes LaTeX style packages and templates for professional report formatting:
699
+
700
+ - `assets/scientific_report.sty`: Professional LaTeX style package with Helvetica fonts, colored boxes, and attractive tables
701
+ - `assets/scientific_report_template.tex`: Complete report template demonstrating all style features
702
+ - `assets/REPORT_FORMATTING_GUIDE.md`: Quick reference guide for the style package
703
+
704
+ **Key Features of `scientific_report.sty`:**
705
+ - Helvetica font family for modern, professional appearance
706
+ - Professional color scheme (blues, greens, oranges, purples)
707
+ - Box environments: `keyfindings`, `methodology`, `resultsbox`, `recommendations`, `limitations`, `criticalnotice`, `definition`, `executivesummary`, `hypothesis`
708
+ - Tables with alternating row colors and professional headers
709
+ - Scientific notation commands for p-values, effect sizes, confidence intervals
710
+ - Professional headers and footers
711
+
712
+ **For venue-specific writing styles** (tone, voice, abstract format, reviewer expectations), see the **venue-templates** skill which provides comprehensive style guides for Nature/Science, Cell Press, medical journals, ML conferences, and CS conferences.
713
+
714
+ Load these references as needed when working on specific aspects of scientific writing.