@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,942 @@
1
+ ---
2
+ name: scientific-slides
3
+ description: "Build slide decks and presentations for research talks using Nano Banana Pro AI. Generates stunning PDF presentations with AI-generated slides. Use for conference presentations, seminar talks, thesis defense slides, or any scientific talk. Provides slide structure, design guidance, timing recommendations, and visual validation."
4
+ allowed-tools: [Read, Write, Edit, Bash]
5
+ ---
6
+
7
+ # Scientific Slides
8
+
9
+ ## Overview
10
+
11
+ Scientific presentations are a critical medium for communicating research, sharing findings, and engaging with academic and professional audiences. This skill provides comprehensive guidance for creating effective scientific presentations, from structure and content development to visual design and delivery preparation.
12
+
13
+ **Key Focus**: Oral presentations for conferences, seminars, defenses, and professional talks.
14
+
15
+ **CRITICAL DESIGN PHILOSOPHY**: Scientific presentations should be VISUALLY ENGAGING and RESEARCH-BACKED. Avoid dry, text-heavy slides at all costs. Great scientific presentations combine:
16
+ - **Compelling visuals**: High-quality figures, images, diagrams (not just bullet points)
17
+ - **Research context**: Proper citations from research-lookup establishing credibility
18
+ - **Minimal text**: Bullet points as prompts, YOU provide the explanation verbally
19
+ - **Professional design**: Modern color schemes, strong visual hierarchy, generous white space
20
+ - **Story-driven**: Clear narrative arc, not just data dumps
21
+
22
+ **Remember**: Boring presentations = forgotten science. Make your slides visually memorable while maintaining scientific rigor through proper citations.
23
+
24
+ ## When to Use This Skill
25
+
26
+ This skill should be used when:
27
+ - Preparing conference presentations (5-20 minutes)
28
+ - Developing academic seminars (45-60 minutes)
29
+ - Creating thesis or dissertation defense presentations
30
+ - Designing grant pitch presentations
31
+ - Preparing journal club presentations
32
+ - Giving research talks at institutions or companies
33
+ - Teaching or tutorial presentations on scientific topics
34
+
35
+ ## Slide Generation with Nano Banana Pro
36
+
37
+ **This skill uses Nano Banana Pro AI to generate stunning presentation slides automatically.**
38
+
39
+ ### Workflow: PDF Slides
40
+
41
+ Generate each slide as a complete image using Nano Banana Pro, then combine into a PDF. This produces the most visually stunning results.
42
+
43
+ **How it works:**
44
+ 1. **Plan the deck**: Create a detailed plan for each slide (title, key points, visual elements)
45
+ 2. **Generate slides**: Call Nano Banana Pro for each slide to create complete slide images
46
+ 3. **Combine to PDF**: Assemble slide images into a single PDF presentation
47
+
48
+ **Step 1: Plan Each Slide**
49
+
50
+ Before generating, create a detailed plan for your presentation:
51
+
52
+ ```markdown
53
+ # Presentation Plan: Introduction to Machine Learning
54
+
55
+ ## Slide 1: Title Slide
56
+ - Title: "Machine Learning: From Theory to Practice"
57
+ - Subtitle: "AI Conference 2025"
58
+ - Speaker: Dr. Jane Smith, University of XYZ
59
+ - Visual: Modern abstract neural network background
60
+
61
+ ## Slide 2: Introduction
62
+ - Title: "Why Machine Learning Matters"
63
+ - Key points: Industry adoption, breakthrough applications, future potential
64
+ - Visual: Icons showing different ML applications (healthcare, finance, robotics)
65
+
66
+ ## Slide 3: Core Concepts
67
+ - Title: "The Three Types of Learning"
68
+ - Content: Supervised, Unsupervised, Reinforcement
69
+ - Visual: Three-part diagram showing each type with examples
70
+
71
+ ... (continue for all slides)
72
+ ```
73
+
74
+ **Step 2: Generate Each Slide**
75
+
76
+ Use the `generate_slide_image.py` script to create each slide.
77
+
78
+ **CRITICAL: Formatting Consistency Protocol**
79
+
80
+ To ensure unified formatting across all slides in a presentation:
81
+
82
+ 1. **Define a Formatting Goal** at the start of your presentation and include it in EVERY prompt:
83
+ - Color scheme (e.g., "dark blue background, white text, gold accents")
84
+ - Typography style (e.g., "bold sans-serif titles, clean body text")
85
+ - Visual style (e.g., "minimal, professional, corporate aesthetic")
86
+ - Layout approach (e.g., "generous white space, left-aligned content")
87
+
88
+ 2. **Always attach the previous slide** when generating subsequent slides using `--attach`:
89
+ - This allows Nano Banana Pro to see and match the existing style
90
+ - Creates visual continuity throughout the deck
91
+ - Ensures consistent colors, fonts, and design language
92
+
93
+ 3. **Default author is "K-Dense"** unless another name is specified
94
+
95
+ 4. **Include citations directly in the prompt** for slides that reference research:
96
+ - Add citations in the prompt text so they appear on the generated slide
97
+ - Use format: "Include citation: (Author et al., Year)" or "Show reference: Author et al., Year"
98
+ - For multiple citations, list them all in the prompt
99
+ - Citations should appear in small text at the bottom of the slide or near relevant content
100
+
101
+ 5. **Attach existing figures/data for results slides** (CRITICAL for data-driven presentations):
102
+ - When creating slides about results, ALWAYS check for existing figures in:
103
+ - The working directory (e.g., `figures/`, `results/`, `plots/`, `images/`)
104
+ - User-provided input files or directories
105
+ - Any data visualizations, charts, or graphs relevant to the presentation
106
+ - Use `--attach` to include these figures so Nano Banana Pro can incorporate them:
107
+ - Attach the actual data figure/chart for results slides
108
+ - Attach relevant diagrams for methodology slides
109
+ - Attach logos or institutional images for title slides
110
+ - When attaching data figures, describe what you want in the prompt:
111
+ - "Create a slide presenting the attached results chart with key findings highlighted"
112
+ - "Build a slide around this attached figure, add title and bullet points explaining the data"
113
+ - "Incorporate the attached graph into a results slide with interpretation"
114
+ - **Before generating results slides**: List files in the working directory to find relevant figures
115
+ - Multiple figures can be attached: `--attach fig1.png --attach fig2.png`
116
+
117
+ **Example with formatting consistency, citations, and figure attachments:**
118
+
119
+ ```bash
120
+ # Title slide (first slide - establishes the style)
121
+ python scripts/generate_slide_image.py "Title slide for presentation: 'Machine Learning: From Theory to Practice'. Subtitle: 'AI Conference 2025'. Speaker: K-Dense. FORMATTING GOAL: Dark blue background (#1a237e), white text, gold accents (#ffc107), minimal design, sans-serif fonts, generous margins, no decorative elements." -o slides/01_title.png
122
+
123
+ # Content slide with citations (attach previous slide for consistency)
124
+ python scripts/generate_slide_image.py "Presentation slide titled 'Why Machine Learning Matters'. Three key points with simple icons: 1) Industry adoption, 2) Breakthrough applications, 3) Future potential. CITATIONS: Include at bottom in small text: (LeCun et al., 2015; Goodfellow et al., 2016). FORMATTING GOAL: Match attached slide style - dark blue background, white text, gold accents, minimal professional design, no visual clutter." -o slides/02_intro.png --attach slides/01_title.png
125
+
126
+ # Background slide with multiple citations
127
+ python scripts/generate_slide_image.py "Presentation slide titled 'Deep Learning Revolution'. Key milestones: ImageNet breakthrough (2012), transformer architecture (2017), GPT models (2018-present). CITATIONS: Show references at bottom: (Krizhevsky et al., 2012; Vaswani et al., 2017; Brown et al., 2020). FORMATTING GOAL: Match attached slide style exactly - same colors, fonts, minimal design." -o slides/03_background.png --attach slides/02_intro.png
128
+
129
+ # RESULTS SLIDE - Attach actual data figure from working directory
130
+ # First, check what figures exist: ls figures/ or ls results/
131
+ python scripts/generate_slide_image.py "Presentation slide titled 'Model Performance Results'. Create a slide presenting the attached accuracy chart. Key findings to highlight: 1) 95% accuracy achieved, 2) Outperforms baseline by 12%, 3) Consistent across test sets. CITATIONS: Include at bottom: (Our results, 2025). FORMATTING GOAL: Match attached slide style exactly." -o slides/04_results.png --attach slides/03_background.png --attach figures/accuracy_chart.png
132
+
133
+ # RESULTS SLIDE - Multiple figures comparison
134
+ python scripts/generate_slide_image.py "Presentation slide titled 'Before vs After Comparison'. Build a side-by-side comparison slide using the two attached figures. Left: baseline results, Right: our improved results. Add brief labels explaining the improvement. FORMATTING GOAL: Match attached slide style exactly." -o slides/05_comparison.png --attach slides/04_results.png --attach figures/baseline.png --attach figures/improved.png
135
+
136
+ # METHODOLOGY SLIDE - Attach existing diagram
137
+ python scripts/generate_slide_image.py "Presentation slide titled 'System Architecture'. Present the attached architecture diagram with brief explanatory bullet points: 1) Input processing, 2) Model inference, 3) Output generation. FORMATTING GOAL: Match attached slide style exactly." -o slides/06_architecture.png --attach slides/05_comparison.png --attach diagrams/system_architecture.png
138
+ ```
139
+
140
+ **IMPORTANT: Before creating results slides, always:**
141
+ 1. List files in working directory: `ls -la figures/` or `ls -la results/`
142
+ 2. Check user-provided directories for relevant figures
143
+ 3. Attach ALL relevant figures that should appear on the slide
144
+ 4. Describe how Nano Banana Pro should incorporate the attached figures
145
+
146
+ **Prompt Template:**
147
+
148
+ Include these elements in every prompt (customize as needed):
149
+ ```
150
+ [Slide content description]
151
+ CITATIONS: Include at bottom: (Author1 et al., Year; Author2 et al., Year)
152
+ FORMATTING GOAL: [Background color], [text color], [accent color], minimal professional design, no decorative elements, consistent with attached slide style.
153
+ ```
154
+
155
+ **Step 3: Combine to PDF**
156
+
157
+ ```bash
158
+ # Combine all slides into a PDF presentation
159
+ python scripts/slides_to_pdf.py slides/*.png -o presentation.pdf
160
+ ```
161
+
162
+ ---
163
+
164
+ ## Nano Banana Pro Script Reference
165
+
166
+ ### generate_slide_image.py
167
+
168
+ Generate presentation slides using Nano Banana Pro AI.
169
+
170
+ ```bash
171
+ # Generate a complete slide as image
172
+ python scripts/generate_slide_image.py "slide description" -o output.png
173
+
174
+ # With reference images attached (Nano Banana Pro will see these)
175
+ python scripts/generate_slide_image.py "Create a slide explaining this chart" -o slide.png --attach chart.png
176
+ python scripts/generate_slide_image.py "Combine these into a comparison slide" -o compare.png --attach before.png --attach after.png
177
+ ```
178
+
179
+ **Options:**
180
+ - `-o, --output`: Output file path (required)
181
+ - `--attach IMAGE`: Attach image file(s) as context for generation (can use multiple times)
182
+ - `--iterations`: Max refinement iterations (default: 2)
183
+ - `--api-key`: OpenRouter API key (or set OPENROUTER_API_KEY env var)
184
+ - `-v, --verbose`: Verbose output
185
+
186
+ **Attaching Reference Images:**
187
+
188
+ Use `--attach` when you want Nano Banana Pro to see existing images as context:
189
+ - "Create a slide about this data" + attach the data chart
190
+ - "Make a title slide with this logo" + attach the logo
191
+ - "Combine these figures into one slide" + attach multiple images
192
+ - "Explain this diagram in a slide" + attach the diagram
193
+
194
+ **Environment Setup:**
195
+ ```bash
196
+ export OPENROUTER_API_KEY='your_api_key_here'
197
+ # Get key at: https://openrouter.ai/keys
198
+ ```
199
+
200
+ ### slides_to_pdf.py
201
+
202
+ Combine multiple slide images into a single PDF.
203
+
204
+ ```bash
205
+ # Combine PNG files
206
+ python scripts/slides_to_pdf.py slides/*.png -o presentation.pdf
207
+
208
+ # Combine specific files in order
209
+ python scripts/slides_to_pdf.py title.png intro.png methods.png -o talk.pdf
210
+
211
+ # From directory (sorted by filename)
212
+ python scripts/slides_to_pdf.py slides/ -o presentation.pdf
213
+ ```
214
+
215
+ **Options:**
216
+ - `-o, --output`: Output PDF path (required)
217
+ - `--dpi`: PDF resolution (default: 150)
218
+ - `-v, --verbose`: Verbose output
219
+
220
+ **Tip:** Name slides with numbers for correct ordering: `01_title.png`, `02_intro.png`, etc.
221
+
222
+ ---
223
+
224
+ ## Prompt Writing for Slide Generation
225
+
226
+ ### Slide Prompts
227
+
228
+ For complete slides, include:
229
+ 1. **Slide type**: Title slide, content slide, diagram slide, etc.
230
+ 2. **Title**: The slide title text
231
+ 3. **Content**: Key points, bullet items, or descriptions
232
+ 4. **Visual elements**: What imagery, icons, or graphics to include
233
+ 5. **Design style**: Color scheme, mood, aesthetic
234
+
235
+ **Example prompts:**
236
+
237
+ ```
238
+ Title slide:
239
+ "Title slide for a medical research presentation. Title: 'Advances in Cancer Immunotherapy'. Subtitle: 'Clinical Trial Results 2024'. Professional medical theme with subtle DNA helix in background. Navy blue and white color scheme."
240
+
241
+ Content slide:
242
+ "Presentation slide titled 'Key Findings'. Three bullet points: 1) 40% improvement in response rate, 2) Reduced side effects, 3) Extended survival outcomes. Include relevant medical icons. Clean, professional design with green and white colors."
243
+
244
+ Diagram slide:
245
+ "Presentation slide showing the research methodology. Title: 'Study Design'. Flowchart showing: Patient Screening → Randomization → Treatment Groups (A, B, Control) → Follow-up → Analysis. CONSORT-style flow diagram. Professional academic style."
246
+ ```
247
+
248
+ ---
249
+
250
+ ## Visual Enhancement with Scientific Schematics
251
+
252
+ In addition to slide generation, use the **scientific-schematics** skill for technical diagrams:
253
+
254
+ **When to use scientific-schematics instead:**
255
+ - Complex technical diagrams (circuit diagrams, chemical structures)
256
+ - Publication-quality figures for papers (higher quality threshold)
257
+ - Diagrams requiring scientific accuracy review
258
+
259
+ **How to generate schematics:**
260
+ ```bash
261
+ python scripts/generate_schematic.py "your diagram description" -o figures/output.png
262
+ ```
263
+
264
+ For detailed guidance on creating schematics, refer to the scientific-schematics skill documentation.
265
+
266
+ ---
267
+
268
+ ## Core Capabilities
269
+
270
+ ### 1. Presentation Structure and Organization
271
+
272
+ Build presentations with clear narrative flow and appropriate structure for different contexts. For detailed guidance, refer to `references/presentation_structure.md`.
273
+
274
+ **Universal Story Arc**:
275
+ 1. **Hook**: Grab attention (30-60 seconds)
276
+ 2. **Context**: Establish importance (5-10% of talk)
277
+ 3. **Problem/Gap**: Identify what's unknown (5-10% of talk)
278
+ 4. **Approach**: Explain your solution (15-25% of talk)
279
+ 5. **Results**: Present key findings (40-50% of talk)
280
+ 6. **Implications**: Discuss meaning (15-20% of talk)
281
+ 7. **Closure**: Memorable conclusion (1-2 minutes)
282
+
283
+ **Talk-Specific Structures**:
284
+ - **Conference talks (15 min)**: Focused on 1-2 key findings, minimal methods
285
+ - **Academic seminars (45 min)**: Comprehensive coverage, detailed methods, multiple studies
286
+ - **Thesis defenses (60 min)**: Complete dissertation overview, all studies covered
287
+ - **Grant pitches (15 min)**: Emphasis on significance, feasibility, and impact
288
+ - **Journal clubs (30 min)**: Critical analysis of published work
289
+
290
+ ### 2. Slide Design Principles
291
+
292
+ Create professional, readable, and accessible slides that enhance understanding. For complete design guidelines, refer to `references/slide_design_principles.md`.
293
+
294
+ **ANTI-PATTERN: Avoid Dry, Text-Heavy Presentations**
295
+
296
+ ❌ **What Makes Presentations Dry and Forgettable:**
297
+ - Walls of text (more than 6 bullets per slide)
298
+ - Small fonts (<24pt body text)
299
+ - Black text on white background only (no visual interest)
300
+ - No images or graphics (bullet points only)
301
+ - Generic templates with no customization
302
+ - Dense, paragraph-like bullet points
303
+ - Missing research context (no citations)
304
+ - All slides look the same (repetitive)
305
+
306
+ ✅ **What Makes Presentations Engaging and Memorable:**
307
+ - HIGH-QUALITY VISUALS dominate (figures, photos, diagrams, icons)
308
+ - Large, clear text as accent (not the main content)
309
+ - Modern, purposeful color schemes (not default themes)
310
+ - Generous white space (slides breathe)
311
+ - Research-backed context (proper citations from research-lookup)
312
+ - Variety in slide layouts (not all bullet lists)
313
+ - Story-driven flow with visual anchors
314
+ - Professional, polished appearance
315
+
316
+ **Core Design Principles**:
317
+
318
+ **Visual-First Approach** (CRITICAL):
319
+ - Start with visuals (figures, images, diagrams), add text as support
320
+ - Every slide should have STRONG visual element (figure, chart, photo, diagram)
321
+ - Text explains or complements visuals, not replaces them
322
+ - Think: "How can I show this, not just tell it?"
323
+ - Target: 60-70% visual content, 30-40% text
324
+
325
+ **Simplicity with Impact**:
326
+ - One main idea per slide
327
+ - MINIMAL text (3-4 bullets, 4-6 words each preferred)
328
+ - Generous white space (40-50% of slide)
329
+ - Clear visual focus
330
+ - Bold, confident design choices
331
+
332
+ **Typography for Engagement**:
333
+ - Sans-serif fonts (Arial, Calibri, Helvetica)
334
+ - LARGE fonts: 24-28pt for body text (not minimum 18pt)
335
+ - 36-44pt for slide titles (make bold)
336
+ - High contrast (minimum 4.5:1, prefer 7:1)
337
+ - Use size for hierarchy, not just weight
338
+
339
+ **Color for Impact**:
340
+ - MODERN color palettes (not default blue/gray)
341
+ - Consider your topic: biotech? vibrant colors. Physics? sleek darks. Health? warm tones.
342
+ - Limited palette (3-5 colors total)
343
+ - High contrast combinations
344
+ - Color-blind safe (avoid red-green combinations)
345
+ - Use color purposefully (not decoration)
346
+
347
+ **Layout for Visual Interest**:
348
+ - Vary layouts (not all bullet lists)
349
+ - Use two-column layouts (text + figure)
350
+ - Full-slide figures for key results
351
+ - Asymmetric compositions (more interesting than centered)
352
+ - Rule of thirds for focal points
353
+ - Consistent but not repetitive
354
+
355
+ ### 3. Data Visualization for Slides
356
+
357
+ Adapt scientific figures for presentation context. For detailed guidance, refer to `references/data_visualization_slides.md`.
358
+
359
+ **Key Differences from Journal Figures**:
360
+ - Simplify, don't replicate
361
+ - Larger fonts (18-24pt minimum)
362
+ - Fewer panels (split across slides)
363
+ - Direct labeling (not legends)
364
+ - Emphasis through color and size
365
+ - Progressive disclosure for complex data
366
+
367
+ **Visualization Best Practices**:
368
+ - **Bar charts**: Comparing discrete categories
369
+ - **Line graphs**: Trends and trajectories
370
+ - **Scatter plots**: Relationships and correlations
371
+ - **Heatmaps**: Matrix data and patterns
372
+ - **Network diagrams**: Relationships and connections
373
+
374
+ **Common Mistakes to Avoid**:
375
+ - Tiny fonts (<18pt)
376
+ - Too many panels on one slide
377
+ - Complex legends
378
+ - Insufficient contrast
379
+ - Cluttered layouts
380
+
381
+ ### 4. Talk-Specific Guidance
382
+
383
+ Different presentation contexts require different approaches. For comprehensive guidance on each type, refer to `references/talk_types_guide.md`.
384
+
385
+ **Conference Talks** (10-20 minutes):
386
+ - Structure: Brief intro → minimal methods → key results → quick conclusion
387
+ - Focus: 1-2 main findings only
388
+ - Style: Engaging, fast-paced, memorable
389
+ - Goal: Generate interest, network, get invited
390
+
391
+ **Academic Seminars** (45-60 minutes):
392
+ - Structure: Comprehensive coverage with detailed methods
393
+ - Focus: Multiple findings, depth of analysis
394
+ - Style: Scholarly, interactive, discussion-oriented
395
+ - Goal: Demonstrate expertise, get feedback, collaborate
396
+
397
+ **Thesis Defenses** (45-60 minutes):
398
+ - Structure: Complete dissertation overview, all studies
399
+ - Focus: Demonstrating mastery and independent thinking
400
+ - Style: Formal, comprehensive, prepared for interrogation
401
+ - Goal: Pass examination, defend research decisions
402
+
403
+ **Grant Pitches** (10-20 minutes):
404
+ - Structure: Problem → significance → approach → feasibility → impact
405
+ - Focus: Innovation, preliminary data, team qualifications
406
+ - Style: Persuasive, focused on outcomes and impact
407
+ - Goal: Secure funding, demonstrate viability
408
+
409
+ **Journal Clubs** (20-45 minutes):
410
+ - Structure: Context → methods → results → critical analysis
411
+ - Focus: Understanding and critiquing published work
412
+ - Style: Educational, critical, discussion-facilitating
413
+ - Goal: Learn, critique, discuss implications
414
+
415
+ ### 5. Visual Review and Iteration
416
+
417
+ Implement iterative improvement through visual inspection. For complete workflow, refer to `references/visual_review_workflow.md`.
418
+
419
+ **Visual Validation Workflow**:
420
+
421
+ **Step 1: Convert PDF to Images**
422
+ ```bash
423
+ # Using the pdf_to_images script
424
+ python scripts/pdf_to_images.py presentation.pdf review/slide --dpi 150
425
+ ```
426
+
427
+ **Step 2: Systematic Inspection**
428
+
429
+ Check each slide for:
430
+ - **Text overflow**: Text cut off at edges
431
+ - **Element overlap**: Text overlapping images or other text
432
+ - **Font sizes**: Text too small (<18pt)
433
+ - **Contrast**: Insufficient contrast between text and background
434
+ - **Layout issues**: Misalignment, poor spacing
435
+ - **Visual quality**: Pixelated images, poor rendering
436
+
437
+ **Step 3: Document Issues**
438
+
439
+ Create issue log:
440
+ ```
441
+ Slide # | Issue Type | Description | Priority
442
+ --------|-----------|-------------|----------
443
+ 3 | Text overflow | Bullet 4 extends beyond box | High
444
+ 7 | Overlap | Figure overlaps with caption | High
445
+ 12 | Font size | Axis labels too small | Medium
446
+ ```
447
+
448
+ **Step 4: Regenerate Problem Slides**
449
+
450
+ Regenerate any slides that have issues with improved prompts, then re-combine to PDF.
451
+
452
+ **Step 5: Re-Validate**
453
+
454
+ Repeat Steps 1-4 until no critical issues remain.
455
+
456
+ **Stopping Criteria**:
457
+ - No text overflow
458
+ - No inappropriate overlaps
459
+ - All text readable (≥18pt equivalent)
460
+ - Adequate contrast (≥4.5:1)
461
+ - Professional appearance
462
+
463
+ ### 6. Timing and Pacing
464
+
465
+ Ensure presentations fit allocated time. For comprehensive timing guidance, refer to `assets/timing_guidelines.md`.
466
+
467
+ **The One-Slide-Per-Minute Rule**:
468
+ - General guideline: ~1 slide per minute
469
+ - Adjust for complex slides (2-3 minutes)
470
+ - Adjust for simple slides (15-30 seconds)
471
+
472
+ **Time Allocation**:
473
+ - Introduction: 15-20%
474
+ - Methods: 15-20%
475
+ - Results: 40-50% (MOST TIME)
476
+ - Discussion: 15-20%
477
+ - Conclusion: 5%
478
+
479
+ **Practice Requirements**:
480
+ - 5-minute talk: Practice 5-7 times
481
+ - 15-minute talk: Practice 3-5 times
482
+ - 45-minute talk: Practice 3-4 times
483
+ - Defense: Practice 4-6 times
484
+
485
+ **Timing Checkpoints**:
486
+
487
+ For 15-minute talk:
488
+ - 3-4 minutes: Finishing introduction
489
+ - 7-8 minutes: Halfway through results
490
+ - 12-13 minutes: Starting conclusions
491
+
492
+ **Emergency Strategies**:
493
+ - Running behind: Skip backup slides (prepare in advance)
494
+ - Running ahead: Expand examples, slow slightly
495
+ - Never skip conclusions
496
+
497
+ ### 7. Validation and Quality Assurance
498
+
499
+ **Automated Validation**:
500
+ ```bash
501
+ # Validate slide count, timing, file size
502
+ python scripts/validate_presentation.py presentation.pdf --duration 15
503
+
504
+ # Generates report on:
505
+ # - Slide count vs. recommended range
506
+ # - File size warnings
507
+ # - Slide dimensions
508
+ ```
509
+
510
+ **Manual Validation Checklist**:
511
+ - [ ] Slide count appropriate for duration
512
+ - [ ] Title slide complete (name, affiliation, date)
513
+ - [ ] Clear narrative flow
514
+ - [ ] One main idea per slide
515
+ - [ ] Font sizes ≥18pt (preferably 24pt+)
516
+ - [ ] High contrast colors
517
+ - [ ] Figures large and readable
518
+ - [ ] No text overflow or element overlap
519
+ - [ ] Consistent design throughout
520
+ - [ ] Slide numbers present
521
+ - [ ] Contact info on final slide
522
+ - [ ] Backup slides prepared
523
+ - [ ] Tested on projector (if possible)
524
+
525
+ ## Workflow for Presentation Development
526
+
527
+ ### Stage 1: Planning (Before Creating Slides)
528
+
529
+ **Define Context**:
530
+ 1. What type of talk? (Conference, seminar, defense, etc.)
531
+ 2. How long? (Duration in minutes)
532
+ 3. Who is the audience? (Specialists, general, mixed)
533
+ 4. What's the venue? (Room size, A/V setup, virtual/in-person)
534
+ 5. What happens after? (Q&A, discussion, networking)
535
+
536
+ **Research and Literature Review** (Use research-lookup skill):
537
+ 1. **Search for background literature**: Find 5-10 key papers establishing context
538
+ 2. **Identify knowledge gaps**: Use research-lookup to find what's unknown
539
+ 3. **Locate comparison studies**: Find papers with similar methods or results
540
+ 4. **Gather supporting citations**: Collect papers supporting your interpretations
541
+ 5. **Build reference list**: Create .bib file or citation list for slides
542
+ 6. **Note key findings to cite**: Document specific results to reference
543
+
544
+ **Develop Content Outline**:
545
+ 1. Identify 1-3 core messages
546
+ 2. Select key findings to present
547
+ 3. Choose essential figures (typically 3-6 for 15-min talk)
548
+ 4. Plan narrative arc with proper citations
549
+ 5. Allocate time by section
550
+
551
+ **Example Outline for 15-Minute Talk**:
552
+ ```
553
+ 1. Title (30 sec)
554
+ 2. Hook: Compelling problem (60 sec) [Cite 1-2 papers via research-lookup]
555
+ 3. Background (90 sec) [Cite 3-4 key papers establishing context]
556
+ 4. Research question (45 sec) [Cite papers showing gap]
557
+ 5. Methods overview (2 min)
558
+ 6-8. Main result 1 (3 min, 3 slides)
559
+ 9-10. Main result 2 (2 min, 2 slides)
560
+ 11-12. Result 3 or validation (2 min, 2 slides)
561
+ 13-14. Discussion and implications (2 min) [Compare to 2-3 prior studies]
562
+ 15. Conclusions (45 sec)
563
+ 16. Acknowledgments (15 sec)
564
+
565
+ NOTE: Use research-lookup to find papers for background (slides 2-4)
566
+ and discussion (slides 13-14) BEFORE creating slides.
567
+ ```
568
+
569
+ ### Stage 2: Design and Creation
570
+
571
+ **Design Considerations** (Make It Visually Appealing):
572
+ - **Select MODERN color palette**: Match your topic (biotech=vibrant, physics=sleek, health=warm)
573
+ - NOT default blue/gray themes
574
+ - 3-5 colors with high contrast
575
+ - **Choose clean fonts**: Sans-serif, large sizes (24pt+ body)
576
+ - **Plan visual elements**: What images, diagrams, icons for each slide?
577
+ - **Create varied layouts**: Mix full-figure, two-column, text-overlay (not all bullets)
578
+ - **Design section dividers**: Visual breaks with striking graphics
579
+ - **Add visual interest**: Background images, color blocks, shapes, icons
580
+ - **Define formatting goal**: Include consistent styling in every prompt (colors, fonts, style)
581
+
582
+ ### Stage 3: Content Development
583
+
584
+ **Populate Slides** (Visual-First Strategy):
585
+ 1. **Start with visuals**: Plan which figures, images, diagrams for each key point
586
+ 2. **Use research-lookup extensively**: Find 8-15 papers for proper citations
587
+ 3. **Create visual backbone first**: Add all figures, charts, images, diagrams
588
+ 4. **Add minimal text as support**: Bullet points complement visuals, don't replace them
589
+ 5. **Design section dividers**: Visual breaks with images or graphics (not just text)
590
+ 6. **Polish title/closing**: Make visually striking, include contact info
591
+ 7. **Add transitions/builds**: Control information flow
592
+
593
+ **VISUAL CONTENT REQUIREMENTS** (Make Slides Engaging):
594
+ - **Images**: Use high-quality photos, illustrations, conceptual graphics
595
+ - **Icons**: Visual representations of concepts (not decoration)
596
+ - **Diagrams**: Flowcharts, schematics, process diagrams
597
+ - **Figures**: Simplified research figures with LARGE labels (18-24pt)
598
+ - **Charts**: Clean data visualizations with clear messages
599
+ - **Graphics**: Visual metaphors, conceptual illustrations
600
+ - **Color blocks**: Use colored shapes to organize content visually
601
+ - Target: MINIMUM 1-2 strong visual elements per slide
602
+
603
+ **Scientific Content** (Research-Backed):
604
+ - **Citations**: Use research-lookup EXTENSIVELY to find relevant papers
605
+ - Introduction: Cite 3-5 papers establishing context and gap
606
+ - Background: Show key prior work visually (not just cite)
607
+ - Discussion: Cite 3-5 papers for comparison with your results
608
+ - Use author-year format (Smith et al., 2023) for readability
609
+ - Citations establish credibility and scientific rigor
610
+ - **Figures**: Simplified from papers, LARGE labels (18-24pt minimum)
611
+ - **Equations**: Large, clear, explain each term (use sparingly)
612
+ - **Tables**: Minimal, highlight key comparisons (not data dumps)
613
+ - **Code/Algorithms**: Use syntax highlighting, keep brief
614
+
615
+ **Text Guidelines** (Less is More):
616
+ - Bullet points, NEVER paragraphs
617
+ - 3-4 bullets per slide (max 6 only if essential)
618
+ - 4-6 words per bullet (shorter than 6×6 rule)
619
+ - Key terms in bold
620
+ - Text is SUPPORTING ROLE, visuals are stars
621
+ - Use builds to control pacing
622
+
623
+ ### Stage 4: Visual Validation
624
+
625
+ **Generate Images**:
626
+ ```bash
627
+ # Convert PDF to images
628
+ python scripts/pdf_to_images.py presentation.pdf review/slides
629
+ ```
630
+
631
+ **Systematic Review**:
632
+ 1. View each slide image
633
+ 2. Check against issue checklist
634
+ 3. Document problems with slide numbers
635
+ 4. Test readability from distance (view at 50% size)
636
+
637
+ **Common Issues to Fix**:
638
+ - Text extending beyond boundaries
639
+ - Figures overlapping with text
640
+ - Font sizes too small
641
+ - Poor contrast
642
+ - Misalignment
643
+
644
+ **Iteration**:
645
+ 1. Identify issues in generated slides
646
+ 2. Regenerate problem slides with improved prompts
647
+ 3. Re-combine to PDF
648
+ 4. Re-inspect
649
+ 5. Repeat until clean
650
+
651
+ ### Stage 5: Practice and Refinement
652
+
653
+ **Practice Schedule**:
654
+ - Run 1: Rough draft (will run long)
655
+ - Run 2: Smooth transitions
656
+ - Run 3: Exact timing
657
+ - Run 4: Final polish
658
+ - Run 5+: Maintenance (day before, morning of)
659
+
660
+ **What to Practice**:
661
+ - Full talk with timer
662
+ - Difficult explanations
663
+ - Transitions between sections
664
+ - Opening and closing (until flawless)
665
+ - Anticipated questions
666
+
667
+ **Refinement Based on Practice**:
668
+ - Cut slides if running over
669
+ - Expand explanations if unclear
670
+ - Adjust wording for clarity
671
+ - Mark timing checkpoints
672
+ - Prepare backup slides
673
+
674
+ ### Stage 6: Final Preparation
675
+
676
+ **Technical Checks**:
677
+ - [ ] Multiple copies saved (laptop, cloud, USB)
678
+ - [ ] Works on presentation computer
679
+ - [ ] Adapters/cables available
680
+ - [ ] Backup PDF version
681
+ - [ ] Tested with projector (if possible)
682
+
683
+ **Content Final**:
684
+ - [ ] No typos or errors
685
+ - [ ] All figures high quality
686
+ - [ ] Slide numbers correct
687
+ - [ ] Contact info on final slide
688
+ - [ ] Backup slides ready
689
+
690
+ **Delivery Prep**:
691
+ - [ ] Notes prepared (if using)
692
+ - [ ] Timer/phone ready
693
+ - [ ] Water available
694
+ - [ ] Business cards/handouts
695
+ - [ ] Comfortable with material (3+ practices)
696
+
697
+ ## Integration with Other Skills
698
+
699
+ **Research Lookup** (Critical for Scientific Presentations):
700
+ - **Background development**: Search literature to build introduction context
701
+ - **Citation gathering**: Find key papers to cite in your talk
702
+ - **Gap identification**: Identify what's unknown to motivate research
703
+ - **Prior work comparison**: Find papers to compare your results against
704
+ - **Supporting evidence**: Locate literature supporting your interpretations
705
+ - **Question preparation**: Find papers that might inform Q&A responses
706
+ - **Always use research-lookup** when developing any scientific presentation to ensure proper context and citations
707
+
708
+ **Scientific Writing**:
709
+ - Convert paper content to presentation format
710
+ - Extract key findings and simplify
711
+ - Use same figures (but redesigned for slides)
712
+ - Maintain consistent terminology
713
+
714
+ **Data Visualization**:
715
+ - Create presentation-appropriate figures
716
+ - Simplify complex visualizations
717
+ - Ensure readability from distance
718
+ - Use progressive disclosure
719
+
720
+ ## Common Pitfalls to Avoid
721
+
722
+ ### Content Mistakes
723
+
724
+ **Dry, Boring Presentations** (CRITICAL TO AVOID):
725
+ - Problem: Text-heavy slides with no visual interest, missing research context
726
+ - Signs: All bullet points, no images, default templates, no citations
727
+ - Solution:
728
+ - Use research-lookup to find 8-15 papers for credible context
729
+ - Add high-quality visuals to EVERY slide (figures, photos, diagrams, icons)
730
+ - Choose modern color palette reflecting your topic
731
+ - Vary slide layouts (not all bullet lists)
732
+ - Tell a story with visuals, use text sparingly
733
+
734
+ **Too Much Content**:
735
+ - Problem: Trying to include everything from paper
736
+ - Solution: Focus on 1-2 key findings for short talks, show visually
737
+
738
+ **Too Much Text**:
739
+ - Problem: Full paragraphs on slides, dense bullet points, reading verbatim
740
+ - Solution: 3-4 bullets with 4-6 words each, let visuals carry the message
741
+
742
+ **Missing Research Context**:
743
+ - Problem: No citations, claims without support, unclear positioning
744
+ - Solution: Use research-lookup to find papers, cite 3-5 in intro, 3-5 in discussion
745
+
746
+ **Poor Narrative**:
747
+ - Problem: Jumping between topics, no clear story, no flow
748
+ - Solution: Follow story arc, use visual transitions, maintain thread
749
+
750
+ **Rushing Through Results**:
751
+ - Problem: Brief methods, brief results, long discussion
752
+ - Solution: Spend 40-50% of time on results, show data visually
753
+
754
+ ### Design Mistakes
755
+
756
+ **Generic, Default Appearance**:
757
+ - Problem: Using generic styling without customization, looks dated
758
+ - Solution: Choose modern color palette in prompts, specify fonts/layouts, add visual personality
759
+
760
+ **Text-Heavy, Visual-Poor**:
761
+ - Problem: All bullet point slides, no images or graphics, boring to look at
762
+ - Solution: Add figures, photos, diagrams, icons to EVERY slide, make visually interesting
763
+
764
+ **Small Fonts**:
765
+ - Problem: Body text <18pt, unreadable from back, looks unprofessional
766
+ - Solution: 24-28pt for body (not just 18pt minimum), 36-44pt for titles
767
+
768
+ **Low Contrast**:
769
+ - Problem: Light text on light background, poor visibility, hard to read
770
+ - Solution: High contrast (7:1 preferred, not just 4.5:1 minimum), test with contrast checker
771
+
772
+ **Cluttered Slides**:
773
+ - Problem: Too many elements, no white space, overwhelming
774
+ - Solution: One idea per slide, 40-50% white space, generous spacing
775
+
776
+ **Inconsistent Formatting**:
777
+ - Problem: Different fonts, colors, layouts slide-to-slide, looks amateurish
778
+ - Solution: Use master slides, maintain design system, professional consistency
779
+
780
+ **Missing Visual Hierarchy**:
781
+ - Problem: Everything same size and color, no emphasis, unclear focus
782
+ - Solution: Size differences (titles large, body medium), color for emphasis, clear focal point
783
+
784
+ ### Timing Mistakes
785
+
786
+ **Not Practicing**:
787
+ - Problem: First time through is during presentation
788
+ - Solution: Practice minimum 3 times with timer
789
+
790
+ **No Time Checkpoints**:
791
+ - Problem: Don't realize running behind until too late
792
+ - Solution: Set 3-4 checkpoints, monitor throughout
793
+
794
+ **Going Over Time**:
795
+ - Problem: Extremely unprofessional, cuts into Q&A
796
+ - Solution: Practice to exact time, prepare Plan B (slides to skip)
797
+
798
+ **Skipping Conclusions**:
799
+ - Problem: Running out of time, rush through or skip ending
800
+ - Solution: Never skip conclusions, cut earlier content instead
801
+
802
+ ## Tools and Scripts
803
+
804
+ ### Nano Banana Pro Scripts
805
+
806
+ **generate_slide_image.py** - Generate slides with AI:
807
+ ```bash
808
+ # Generate a complete slide
809
+ python scripts/generate_slide_image.py "Title: Introduction\nContent: Key points" -o slide.png
810
+
811
+ # Options:
812
+ # -o, --output Output file path (required)
813
+ # --attach IMAGE Attach reference images for context
814
+ # --iterations N Max refinement iterations (default: 2)
815
+ # -v, --verbose Verbose output
816
+ ```
817
+
818
+ **slides_to_pdf.py** - Combine slide images into PDF:
819
+ ```bash
820
+ # From glob pattern
821
+ python scripts/slides_to_pdf.py slides/*.png -o presentation.pdf
822
+
823
+ # From directory (sorted by filename)
824
+ python scripts/slides_to_pdf.py slides/ -o presentation.pdf
825
+
826
+ # Options:
827
+ # -o, --output Output PDF path (required)
828
+ # --dpi N PDF resolution (default: 150)
829
+ # -v, --verbose Verbose output
830
+ ```
831
+
832
+ ### Validation Scripts
833
+
834
+ **validate_presentation.py**:
835
+ ```bash
836
+ python scripts/validate_presentation.py presentation.pdf --duration 15
837
+
838
+ # Checks:
839
+ # - Slide count vs. recommended range
840
+ # - File size warnings
841
+ # - Slide dimensions
842
+ ```
843
+
844
+ **pdf_to_images.py**:
845
+ ```bash
846
+ python scripts/pdf_to_images.py presentation.pdf output/slide --dpi 150
847
+
848
+ # Converts PDF to images for visual inspection
849
+ # Supports: JPG, PNG
850
+ # Adjustable DPI
851
+ # Page range selection
852
+ ```
853
+
854
+ ### External Tools
855
+
856
+ **Recommended**:
857
+ - PDF viewer: For reviewing presentations
858
+ - Color contrast checker: WebAIM Contrast Checker
859
+ - Color blindness simulator: Coblis
860
+ - Timer app: For practice sessions
861
+ - Screen recorder: For self-review
862
+
863
+ ## Reference Files
864
+
865
+ Comprehensive guides for specific aspects:
866
+
867
+ - **`references/presentation_structure.md`**: Detailed structure for all talk types, timing allocation, opening/closing strategies, transition techniques
868
+ - **`references/slide_design_principles.md`**: Typography, color theory, layout, accessibility, visual hierarchy, design workflow
869
+ - **`references/data_visualization_slides.md`**: Simplifying figures, chart types, progressive disclosure, common mistakes, recreation workflow
870
+ - **`references/talk_types_guide.md`**: Specific guidance for conferences, seminars, defenses, grants, journal clubs, with examples
871
+ - **`references/visual_review_workflow.md`**: PDF to images conversion, systematic inspection, issue documentation, iterative improvement
872
+
873
+ ## Assets
874
+
875
+ ### Guides
876
+
877
+ - **`assets/timing_guidelines.md`**: Comprehensive timing, pacing, and practice strategies
878
+
879
+ ## Quick Start Guide
880
+
881
+ ### For a 15-Minute Conference Talk
882
+
883
+ 1. **Research & Plan** (45 minutes):
884
+ - **Use research-lookup** to find 8-12 relevant papers for citations
885
+ - Build reference list (background, comparison studies)
886
+ - Outline content (intro → methods → 2-3 key results → conclusion)
887
+ - **Create detailed plan for each slide** (title, key points, visual elements)
888
+ - Target 15-18 slides
889
+
890
+ 2. **Generate Slides with Nano Banana Pro** (1-2 hours):
891
+
892
+ **Important: Use consistent formatting, attach previous slides, and include citations!**
893
+
894
+ ```bash
895
+ # Title slide (establishes style - default author: K-Dense)
896
+ python scripts/generate_slide_image.py "Title slide: 'Your Research Title'. Conference name, K-Dense. FORMATTING GOAL: [your color scheme], minimal professional design, no decorative elements, clean and corporate." -o slides/01_title.png
897
+
898
+ # Introduction slide with citations (attach previous for consistency)
899
+ python scripts/generate_slide_image.py "Slide titled 'Why This Matters'. Three key points with simple icons. CITATIONS: Include at bottom: (Smith et al., 2023; Jones et al., 2024). FORMATTING GOAL: Match attached slide style exactly." -o slides/02_intro.png --attach slides/01_title.png
900
+
901
+ # Continue for each slide (always attach previous, include citations where relevant)
902
+ python scripts/generate_slide_image.py "Slide titled 'Methods'. Key methodology points. CITATIONS: (Based on Chen et al., 2022). FORMATTING GOAL: Match attached slide style exactly." -o slides/03_methods.png --attach slides/02_intro.png
903
+
904
+ # Combine to PDF
905
+ python scripts/slides_to_pdf.py slides/*.png -o presentation.pdf
906
+ ```
907
+
908
+ 3. **Review & Iterate** (30 minutes):
909
+ - Open the PDF and review each slide
910
+ - Regenerate any slides that need improvement
911
+ - Re-combine to PDF
912
+
913
+ 4. **Practice** (2-3 hours):
914
+ - Practice 3-5 times with timer
915
+ - Aim for 13-14 minutes (leave buffer)
916
+ - Record yourself, watch playback
917
+ - **Prepare for questions** (use research-lookup to anticipate)
918
+
919
+ 5. **Finalize** (30 minutes):
920
+ - Generate backup/appendix slides if needed
921
+ - Save multiple copies
922
+ - Test on presentation computer
923
+
924
+ Total time: ~5-6 hours for quality AI-generated presentation
925
+
926
+ ## Summary: Key Principles
927
+
928
+ 1. **Visual-First Design**: Every slide needs strong visual element (figure, image, diagram) - avoid text-only slides
929
+ 2. **Research-Backed**: Use research-lookup to find 8-15 papers, cite 3-5 in intro, 3-5 in discussion
930
+ 3. **Modern Aesthetics**: Choose contemporary color palette matching topic, not default themes
931
+ 4. **Minimal Text**: 3-4 bullets, 4-6 words each (24-28pt font), let visuals tell story
932
+ 5. **Structure**: Follow story arc, spend 40-50% on results
933
+ 6. **High Contrast**: 7:1 preferred for professional appearance
934
+ 7. **Varied Layouts**: Mix full-figure, two-column, visual overlays (not all bullets)
935
+ 8. **Timing**: Practice 3-5 times, ~1 slide per minute, never skip conclusions
936
+ 9. **Validation**: Visual review workflow to catch overflow and overlap
937
+ 10. **White Space**: 40-50% of slide empty for visual breathing room
938
+
939
+ **Remember**:
940
+ - **Boring = Forgotten**: Dry, text-heavy slides fail to communicate your science
941
+ - **Visual + Research = Impact**: Combine compelling visuals with research-backed context
942
+ - **You are the presentation, slides are visual support**: They should enhance, not replace your talk