@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,239 @@
1
+ # Peer Review Scoring Rubric
2
+
3
+ Detailed scoring criteria with severity calibration for consistent, fair evaluation.
4
+
5
+ ## Overall Score (1-10 Scale)
6
+
7
+ ### Score Anchors
8
+
9
+ | Score | Label | Criteria |
10
+ |-------|-------|----------|
11
+ | **10** | Outstanding | Exceptional contribution, flawless execution, field-changing potential |
12
+ | **9** | Strong Accept | Significant contribution, excellent methodology, high impact, minor polish needed |
13
+ | **8** | Accept | Solid contribution, rigorous execution, clear value to field |
14
+ | **7** | Accept | Good work with minor methodological or scope limitations, contribution clear |
15
+ | **6** | Weak Accept | Sound methodology, acknowledged limitations, narrow scope but valid |
16
+ | **5** | Borderline | Significant concerns but potentially salvageable with major revisions |
17
+ | **4** | Lean Reject | Multiple major issues affecting validity or interpretation |
18
+ | **3** | Reject | Fundamental methodological flaws or unsupported claims |
19
+ | **2** | Strong Reject | Serious scientific concerns, major rewrite needed |
20
+ | **1** | Clear Reject | Fatally flawed, ethical concerns, or not suitable for venue |
21
+
22
+ ### Score Distribution Expectations
23
+
24
+ In a well-calibrated review process:
25
+ - **8-10**: ~10-15% of submissions (truly excellent work)
26
+ - **6-7**: ~40-50% of submissions (solid, publishable work)
27
+ - **5**: ~20-25% of submissions (borderline, needs work)
28
+ - **1-4**: ~15-20% of submissions (significant issues)
29
+
30
+ ## Sub-Score Dimensions (1-4 Scale)
31
+
32
+ ### Soundness
33
+
34
+ Technical correctness of methodology, analysis, and conclusions.
35
+
36
+ | Score | Description | Indicators |
37
+ |-------|-------------|------------|
38
+ | **4** | Excellent | Methods impeccable, statistics appropriate, conclusions fully supported |
39
+ | **3** | Good | Minor issues but core methodology sound, conclusions mostly supported |
40
+ | **2** | Fair | Notable methodological concerns affecting some conclusions |
41
+ | **1** | Poor | Fundamental flaws invalidating major claims |
42
+
43
+ **Soundness Red Flags:**
44
+ - Inappropriate statistical tests for data type
45
+ - Missing critical controls
46
+ - Circular analysis (same data for selection and testing)
47
+ - Pseudoreplication
48
+ - Overclaiming from correlational data
49
+
50
+ ### Originality
51
+
52
+ Novelty of contribution relative to prior work.
53
+
54
+ | Score | Description | Indicators |
55
+ |-------|-------------|------------|
56
+ | **4** | Highly Novel | New problem, method, or insight advancing the field |
57
+ | **3** | Novel | Clear contribution beyond incremental improvement |
58
+ | **2** | Incremental | Extension of existing work with limited new insight |
59
+ | **1** | Derivative | Minimal novelty, replication without extension |
60
+
61
+ **Originality Considerations:**
62
+ - Novel problem formulation counts as originality
63
+ - Rigorous negative results can be original contributions
64
+ - Cross-domain application of known methods can be novel
65
+ - Scale or efficiency improvements require substantial gains for high novelty
66
+
67
+ ### Clarity
68
+
69
+ Quality of writing, organization, and presentation.
70
+
71
+ | Score | Description | Indicators |
72
+ |-------|-------------|------------|
73
+ | **4** | Excellent | Clear, well-organized, accessible to broad audience |
74
+ | **3** | Good | Generally clear, minor organizational or writing issues |
75
+ | **2** | Fair | Significant clarity issues affecting comprehension |
76
+ | **1** | Poor | Difficult to follow, major organizational problems |
77
+
78
+ **Clarity Checklist:**
79
+ - Abstract accurately summarizes findings
80
+ - Introduction motivates and contextualizes work
81
+ - Methods reproducible from description
82
+ - Results presented logically
83
+ - Discussion distinguishes data from speculation
84
+ - Figures/tables clear and well-labeled
85
+
86
+ ### Significance
87
+
88
+ Potential impact on the field.
89
+
90
+ | Score | Description | Indicators |
91
+ |-------|-------------|------------|
92
+ | **4** | High Impact | Likely to influence research direction or practice |
93
+ | **3** | Significant | Clear value to researchers in the area |
94
+ | **2** | Moderate | Useful but limited impact expected |
95
+ | **1** | Low | Minimal expected influence |
96
+
97
+ **Significance Factors:**
98
+ - Size and activity of affected research community
99
+ - Practical applications enabled
100
+ - Theoretical insights provided
101
+ - Reproducibility and extensibility of work
102
+
103
+ ## Severity Calibration
104
+
105
+ ### Issue Classification
106
+
107
+ | Severity | Definition | Score Impact | Frequency |
108
+ |----------|------------|--------------|-----------|
109
+ | **Critical** | Invalidates conclusions, requires fundamental revision | -3 to -4 | <5% of reviews |
110
+ | **Major** | Significantly affects interpretation, addressable with effort | -1 to -2 | 20-30% |
111
+ | **Moderate** | Notable limitation, acknowledged is acceptable | -0.5 to -1 | 40-50% |
112
+ | **Minor** | Polish issue, easy to fix | -0 to -0.5 | Common |
113
+
114
+ ### Critical Issues (Reserve for True Invalidity)
115
+
116
+ Only use "Critical" severity for:
117
+ - Statistical tests fundamentally inappropriate (e.g., t-test on non-independent data)
118
+ - Missing controls that prevent any valid interpretation
119
+ - Fabrication or falsification concerns
120
+ - Undisclosed conflicts of interest affecting conclusions
121
+ - Ethical violations (missing IRB for human subjects)
122
+
123
+ ### What Is NOT Critical
124
+
125
+ These are Major or Moderate, not Critical:
126
+ - Missing some baselines (if primary comparison valid)
127
+ - Synthetic data only (standard in many fields)
128
+ - Limited generalization (scope issue)
129
+ - Acknowledged limitations
130
+ - Reproducibility details missing (fixable)
131
+
132
+ ## Score Adjustment Rules
133
+
134
+ ### Limitation Acknowledgment Bonus
135
+
136
+ If authors explicitly acknowledge a limitation:
137
+ - Reduce penalty by 50% (e.g., -2 → -1)
138
+ - Never penalize >1 point for acknowledged issues
139
+ - Credit honest self-assessment in summary
140
+
141
+ ### Reproducibility Credit
142
+
143
+ If the paper provides:
144
+ - Detailed methods section
145
+ - Random seeds and hyperparameters
146
+ - Code/data availability statement
147
+ - Confidence intervals and effect sizes
148
+
149
+ → Apply score floor of 6 (cannot go below Weak Accept)
150
+
151
+ ### Scope Adjustment
152
+
153
+ A narrow-but-sound study on an interesting problem:
154
+ - Should score 6-7 (Weak Accept to Accept)
155
+ - Should NOT score 5 or below unless methodology flawed
156
+ - Evaluate on what it does, not what it doesn't attempt
157
+
158
+ ## Calibration Examples
159
+
160
+ ### Example A: Narrow-but-Sound ML Paper
161
+
162
+ **Paper Profile:**
163
+ - Novel method for specific NLP task
164
+ - Synthetic benchmark data only
165
+ - Thorough ablations and error analysis
166
+ - Authors acknowledge limited real-world validation
167
+ - Code and data available
168
+
169
+ **Calibrated Score: 6-7 (Weak Accept)**
170
+ - Soundness: 3/4 (methodology rigorous within scope)
171
+ - Originality: 3/4 (clear contribution)
172
+ - Clarity: 3/4 (well-written)
173
+ - Significance: 2/4 (limited by scope)
174
+
175
+ **Reasoning:** Sound methodology + acknowledged limitations + reproducibility = floor of 6
176
+
177
+ ### Example B: Overstated Claims
178
+
179
+ **Paper Profile:**
180
+ - Interesting research question
181
+ - Appropriate methods
182
+ - But: Conclusions significantly overstate findings
183
+ - Claims causation from correlational data
184
+ - Generalizes beyond data support
185
+
186
+ **Calibrated Score: 5 (Borderline)**
187
+ - Soundness: 2/4 (overclaiming)
188
+ - Originality: 3/4 (good question)
189
+ - Clarity: 3/4 (well-written)
190
+ - Significance: 2/4 (limited by overclaiming)
191
+
192
+ **Reasoning:** Overclaiming is a Major issue (-2), methodology otherwise sound
193
+
194
+ ### Example C: Strong Work with Minor Issues
195
+
196
+ **Paper Profile:**
197
+ - Significant contribution
198
+ - Rigorous methodology
199
+ - Comprehensive experiments
200
+ - Minor: Some figure labels small
201
+ - Minor: A few citations missing
202
+
203
+ **Calibrated Score: 8 (Accept)**
204
+ - Soundness: 4/4
205
+ - Originality: 3/4
206
+ - Clarity: 3/4 (minor presentation issues)
207
+ - Significance: 4/4
208
+
209
+ **Reasoning:** Minor issues don't affect validity or interpretation
210
+
211
+ ## Common Calibration Errors
212
+
213
+ ### Over-Penalization Patterns
214
+
215
+ | Error | Correct Approach |
216
+ |-------|------------------|
217
+ | -2 for synthetic data alone | Synthetic data is standard; only penalize if claimed to be real-world |
218
+ | -2 for narrow scope | Scope affects Significance sub-score, not Soundness |
219
+ | -2 for acknowledged limitations | -0.5 to -1 max for acknowledged issues |
220
+ | Critical for missing baselines | Major at most; Critical only if no valid comparisons exist |
221
+
222
+ ### Under-Penalization Patterns
223
+
224
+ | Error | Correct Approach |
225
+ |-------|------------------|
226
+ | Ignoring statistical issues | Inappropriate tests can invalidate conclusions |
227
+ | Overlooking pseudoreplication | This is often a Critical issue |
228
+ | Accepting overclaiming | Major issue even if methods are sound |
229
+ | Missing ethics concerns | Should be flagged regardless of other quality |
230
+
231
+ ## Final Scoring Algorithm
232
+
233
+ 1. Start at 7 (default for competent submission)
234
+ 2. Add +1 to +3 for exceptional elements (novelty, rigor, impact)
235
+ 3. Subtract for issues based on severity
236
+ 4. Apply limitation acknowledgment bonus
237
+ 5. Apply reproducibility credit floor
238
+ 6. Verify score matches calibration examples
239
+ 7. Ensure sub-scores are consistent with overall
@@ -0,0 +1,410 @@
1
+ ---
2
+ name: pptx-posters
3
+ description: "Create research posters using HTML/CSS that can be exported to PDF or PPTX. Use this skill ONLY when the user explicitly requests PowerPoint/PPTX poster format. For standard research posters, use latex-posters instead. This skill provides modern web-based poster design with responsive layouts and easy visual integration."
4
+ allowed-tools: [Read, Write, Edit, Bash]
5
+ ---
6
+
7
+ # PPTX Research Posters (HTML-Based)
8
+
9
+ ## Overview
10
+
11
+ **⚠️ USE THIS SKILL ONLY WHEN USER EXPLICITLY REQUESTS PPTX/POWERPOINT POSTER FORMAT.**
12
+
13
+ For standard research posters, use the **latex-posters** skill instead, which provides better typographic control and is the default for academic conferences.
14
+
15
+ This skill creates research posters using HTML/CSS, which can then be exported to PDF or converted to PowerPoint format. The web-based approach offers:
16
+ - Modern, responsive layouts
17
+ - Easy integration of AI-generated visuals
18
+ - Quick iteration and preview in browser
19
+ - Export to PDF via browser print function
20
+ - Conversion to PPTX if specifically needed
21
+
22
+ ## When to Use This Skill
23
+
24
+ **ONLY use this skill when:**
25
+ - User explicitly requests "PPTX poster", "PowerPoint poster", or "PPT poster"
26
+ - User specifically asks for HTML-based poster
27
+ - User needs to edit poster in PowerPoint after creation
28
+ - LaTeX is not available or user requests non-LaTeX solution
29
+
30
+ **DO NOT use this skill when:**
31
+ - User asks for a "poster" without specifying format → Use latex-posters
32
+ - User asks for "research poster" or "conference poster" → Use latex-posters
33
+ - User mentions LaTeX, tikzposter, beamerposter, or baposter → Use latex-posters
34
+
35
+ ## AI-Powered Visual Element Generation
36
+
37
+ **STANDARD WORKFLOW: Generate ALL major visual elements using AI before creating the HTML poster.**
38
+
39
+ This is the recommended approach for creating visually compelling posters:
40
+ 1. Plan all visual elements needed (hero image, intro, methods, results, conclusions)
41
+ 2. Generate each element using scientific-schematics or Nano Banana Pro
42
+ 3. Assemble generated images in the HTML template
43
+ 4. Add text content around the visuals
44
+
45
+ **Target: 60-70% of poster area should be AI-generated visuals, 30-40% text.**
46
+
47
+ ---
48
+
49
+ ### CRITICAL: Poster-Size Font Requirements
50
+
51
+ **⚠️ ALL text within AI-generated visualizations MUST be poster-readable.**
52
+
53
+ When generating graphics for posters, you MUST include font size specifications in EVERY prompt. Poster graphics are viewed from 4-6 feet away, so text must be LARGE.
54
+
55
+ **MANDATORY prompt requirements for EVERY poster graphic:**
56
+
57
+ ```
58
+ POSTER FORMAT REQUIREMENTS (STRICTLY ENFORCE):
59
+ - ABSOLUTE MAXIMUM 3-4 elements per graphic (3 is ideal)
60
+ - ABSOLUTE MAXIMUM 10 words total in the entire graphic
61
+ - NO complex workflows with 5+ steps (split into 2-3 simple graphics instead)
62
+ - NO multi-level nested diagrams (flatten to single level)
63
+ - NO case studies with multiple sub-sections (one key point per case)
64
+ - ALL text GIANT BOLD (80pt+ for labels, 120pt+ for key numbers)
65
+ - High contrast ONLY (dark on white OR white on dark, NO gradients with text)
66
+ - MANDATORY 50% white space minimum (half the graphic should be empty)
67
+ - Thick lines only (5px+ minimum), large icons (200px+ minimum)
68
+ - ONE SINGLE MESSAGE per graphic (not 3 related messages)
69
+ ```
70
+
71
+ **⚠️ BEFORE GENERATING: Review your prompt and count elements**
72
+ - If your description has 5+ items → STOP. Split into multiple graphics
73
+ - If your workflow has 5+ stages → STOP. Show only 3-4 high-level steps
74
+ - If your comparison has 4+ methods → STOP. Show only top 3 or Our vs Best Baseline
75
+
76
+ **Example - WRONG (7-stage workflow):**
77
+ ```bash
78
+ # ❌ Creates tiny unreadable text
79
+ python scripts/generate_schematic.py "Drug discovery workflow: Stage 1 Target ID, Stage 2 Synthesis, Stage 3 Screening, Stage 4 Lead Opt, Stage 5 Validation, Stage 6 Clinical Trial, Stage 7 FDA Approval with metrics." -o figures/workflow.png
80
+ ```
81
+
82
+ **Example - CORRECT (3 mega-stages):**
83
+ ```bash
84
+ # ✅ Same content, simplified to readable poster format
85
+ python scripts/generate_schematic.py "POSTER FORMAT for A0. ULTRA-SIMPLE 3-box workflow: 'DISCOVER' → 'VALIDATE' → 'APPROVE'. Each word in GIANT bold (120pt+). Thick arrows (10px). 60% white space. ONLY these 3 words. NO substeps. Readable from 12 feet." -o figures/workflow_simple.png
86
+ ```
87
+
88
+ ---
89
+
90
+ ### CRITICAL: Preventing Content Overflow
91
+
92
+ **⚠️ POSTERS MUST NOT HAVE TEXT OR CONTENT CUT OFF AT EDGES.**
93
+
94
+ **Prevention Rules:**
95
+
96
+ **1. Limit Content Sections (MAXIMUM 5-6 sections):**
97
+ ```
98
+ ✅ GOOD - 5 sections with room to breathe:
99
+ - Title/Header
100
+ - Introduction/Problem
101
+ - Methods
102
+ - Results (1-2 key findings)
103
+ - Conclusions
104
+
105
+ ❌ BAD - 8+ sections crammed together
106
+ ```
107
+
108
+ **2. Word Count Limits:**
109
+ - **Per section**: 50-100 words maximum
110
+ - **Total poster**: 300-800 words MAXIMUM
111
+ - **If you have more content**: Cut it or make a handout
112
+
113
+ ---
114
+
115
+ ## Core Capabilities
116
+
117
+ ### 1. HTML/CSS Poster Design
118
+
119
+ The HTML template (`assets/poster_html_template.html`) provides:
120
+ - Fixed poster dimensions (36×48 inches = 2592×3456 pt)
121
+ - Professional header with gradient styling
122
+ - Three-column content layout
123
+ - Block-based sections with modern styling
124
+ - Footer with references and contact info
125
+
126
+ ### 2. Poster Structure
127
+
128
+ **Standard Layout:**
129
+ ```
130
+ ┌─────────────────────────────────────────┐
131
+ │ HEADER: Title, Authors, Hero Image │
132
+ ├─────────────┬─────────────┬─────────────┤
133
+ │ Introduction│ Results │ Discussion │
134
+ │ │ │ │
135
+ │ Methods │ (charts) │ Conclusions │
136
+ │ │ │ │
137
+ │ (diagram) │ (data) │ (summary) │
138
+ ├─────────────┴─────────────┴─────────────┤
139
+ │ FOOTER: References & Contact Info │
140
+ └─────────────────────────────────────────┘
141
+ ```
142
+
143
+ ### 3. Visual Integration
144
+
145
+ Each section should prominently feature AI-generated visuals:
146
+
147
+ **Hero Image (Header):**
148
+ ```html
149
+ <img src="figures/hero.png" class="hero-image">
150
+ ```
151
+
152
+ **Section Graphics:**
153
+ ```html
154
+ <div class="block">
155
+ <h2 class="block-title">Methods</h2>
156
+ <div class="block-content">
157
+ <img src="figures/workflow.png" class="block-image">
158
+ <ul>
159
+ <li>Brief methodology point</li>
160
+ </ul>
161
+ </div>
162
+ </div>
163
+ ```
164
+
165
+ ### 4. Generating Visual Elements
166
+
167
+ **Before creating the HTML, generate all visual elements:**
168
+
169
+ ```bash
170
+ # Create figures directory
171
+ mkdir -p figures
172
+
173
+ # Hero image - SIMPLE, impactful
174
+ python scripts/generate_schematic.py "POSTER FORMAT for A0. Hero banner: '[TOPIC]' in HUGE text (120pt+). Dark blue gradient background. ONE iconic visual. Minimal text. Readable from 15 feet." -o figures/hero.png
175
+
176
+ # Introduction visual - ONLY 3 elements
177
+ python scripts/generate_schematic.py "POSTER FORMAT for A0. SIMPLE visual with ONLY 3 icons: [icon1] → [icon2] → [icon3]. ONE word labels (80pt+). 50% white space. Readable from 8 feet." -o figures/intro.png
178
+
179
+ # Methods flowchart - ONLY 4 steps
180
+ python scripts/generate_schematic.py "POSTER FORMAT for A0. SIMPLE flowchart with ONLY 4 boxes: STEP1 → STEP2 → STEP3 → STEP4. GIANT labels (100pt+). Thick arrows. 50% white space. NO sub-steps." -o figures/workflow.png
181
+
182
+ # Results visualization - ONLY 3 bars
183
+ python scripts/generate_schematic.py "POSTER FORMAT for A0. SIMPLE bar chart with ONLY 3 bars: BASELINE (70%), EXISTING (85%), OURS (95%). GIANT percentages ON bars (120pt+). NO axis, NO legend. 50% white space." -o figures/results.png
184
+
185
+ # Conclusions - EXACTLY 3 key findings
186
+ python scripts/generate_schematic.py "POSTER FORMAT for A0. EXACTLY 3 cards: '95%' (150pt) 'ACCURACY' (60pt), '2X' (150pt) 'FASTER' (60pt), checkmark 'READY' (60pt). 50% white space. NO other text." -o figures/conclusions.png
187
+ ```
188
+
189
+ ---
190
+
191
+ ## Workflow for PPTX Poster Creation
192
+
193
+ ### Stage 1: Planning
194
+
195
+ 1. **Confirm PPTX is explicitly requested**
196
+ 2. **Determine poster requirements:**
197
+ - Size: 36×48 inches (most common) or A0
198
+ - Orientation: Portrait (most common)
199
+ 3. **Develop content outline:**
200
+ - Identify 1-3 core messages
201
+ - Plan 3-5 visual elements
202
+ - Draft minimal text (300-800 words total)
203
+
204
+ ### Stage 2: Generate Visual Elements (AI-Powered)
205
+
206
+ **CRITICAL: Generate SIMPLE figures with MINIMAL content.**
207
+
208
+ ```bash
209
+ mkdir -p figures
210
+
211
+ # Generate each element with POSTER FORMAT specifications
212
+ # (See examples in Section 4 above)
213
+ ```
214
+
215
+ ### Stage 3: Create HTML Poster
216
+
217
+ 1. **Copy the template:**
218
+ ```bash
219
+ cp skills/pptx-posters/assets/poster_html_template.html poster.html
220
+ ```
221
+
222
+ 2. **Update content:**
223
+ - Replace placeholder title and authors
224
+ - Insert AI-generated images
225
+ - Add minimal supporting text
226
+ - Update references and contact info
227
+
228
+ 3. **Preview in browser:**
229
+ ```bash
230
+ open poster.html # macOS
231
+ # or
232
+ xdg-open poster.html # Linux
233
+ ```
234
+
235
+ ### Stage 4: Export to PDF
236
+
237
+ **Browser Print Method:**
238
+ 1. Open poster.html in Chrome or Firefox
239
+ 2. Print (Cmd/Ctrl + P)
240
+ 3. Select "Save as PDF"
241
+ 4. Set paper size to match poster dimensions
242
+ 5. Remove margins
243
+ 6. Enable "Background graphics"
244
+
245
+ **Command Line (if Chrome available):**
246
+ ```bash
247
+ # Chrome headless PDF export
248
+ google-chrome --headless --print-to-pdf=poster.pdf \
249
+ --print-to-pdf-no-header \
250
+ --no-margins \
251
+ poster.html
252
+ ```
253
+
254
+ ### Stage 5: Convert to PPTX (If Required)
255
+
256
+ **Option 1: PDF to PPTX conversion**
257
+ ```bash
258
+ # Using LibreOffice
259
+ libreoffice --headless --convert-to pptx poster.pdf
260
+
261
+ # Or use online converters for simple cases
262
+ ```
263
+
264
+ **Option 2: Direct PPTX creation with python-pptx**
265
+ ```python
266
+ from pptx import Presentation
267
+ from pptx.util import Inches, Pt
268
+
269
+ prs = Presentation()
270
+ prs.slide_width = Inches(48)
271
+ prs.slide_height = Inches(36)
272
+
273
+ slide = prs.slides.add_slide(prs.slide_layouts[6]) # Blank
274
+
275
+ # Add images from figures/
276
+ slide.shapes.add_picture("figures/hero.png", Inches(0), Inches(0), width=Inches(48))
277
+ # ... add other elements
278
+
279
+ prs.save("poster.pptx")
280
+ ```
281
+
282
+ ---
283
+
284
+ ## HTML Template Structure
285
+
286
+ The provided template (`assets/poster_html_template.html`) includes:
287
+
288
+ ### CSS Variables for Customization
289
+
290
+ ```css
291
+ /* Poster dimensions */
292
+ body {
293
+ width: 2592pt; /* 36 inches */
294
+ height: 3456pt; /* 48 inches */
295
+ }
296
+
297
+ /* Color scheme - customize these */
298
+ .header {
299
+ background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 50%, #3182ce 100%);
300
+ }
301
+
302
+ /* Typography */
303
+ .poster-title { font-size: 108pt; }
304
+ .authors { font-size: 48pt; }
305
+ .block-title { font-size: 52pt; }
306
+ .block-content { font-size: 34pt; }
307
+ ```
308
+
309
+ ### Key Classes
310
+
311
+ | Class | Purpose | Font Size |
312
+ |-------|---------|-----------|
313
+ | `.poster-title` | Main title | 108pt |
314
+ | `.authors` | Author names | 48pt |
315
+ | `.affiliations` | Institutions | 38pt |
316
+ | `.block-title` | Section headers | 52pt |
317
+ | `.block-content` | Body text | 34pt |
318
+ | `.key-finding` | Highlight box | 36pt |
319
+
320
+ ---
321
+
322
+ ## Quality Checklist
323
+
324
+ ### Step 0: Pre-Generation Review (MANDATORY)
325
+
326
+ **For EACH planned graphic, verify:**
327
+ - [ ] Can describe in 3-4 items or less? (NOT 5+)
328
+ - [ ] Is it a simple workflow (3-4 steps, NOT 7+)?
329
+ - [ ] Can describe all text in 10 words or less?
330
+ - [ ] Does it convey ONE message (not multiple)?
331
+
332
+ **Reject these patterns:**
333
+ - ❌ "7-stage workflow" → Simplify to "3 mega-stages"
334
+ - ❌ "Multiple case studies" → One case per graphic
335
+ - ❌ "Timeline 2015-2024 annual" → "ONLY 3 key years"
336
+ - ❌ "Compare 6 methods" → "ONLY 2: ours vs best"
337
+
338
+ ### Step 2b: Post-Generation Review (MANDATORY)
339
+
340
+ **For EACH generated figure at 25% zoom:**
341
+
342
+ **✅ PASS criteria (ALL must be true):**
343
+ - [ ] Can read ALL text clearly
344
+ - [ ] Count: 3-4 elements or fewer
345
+ - [ ] White space: 50%+ empty
346
+ - [ ] Understand in 2 seconds
347
+ - [ ] NOT a complex 5+ stage workflow
348
+ - [ ] NOT multiple nested sections
349
+
350
+ **❌ FAIL criteria (regenerate if ANY true):**
351
+ - [ ] Text small/hard to read → Regenerate with "150pt+"
352
+ - [ ] More than 4 elements → Regenerate "ONLY 3 elements"
353
+ - [ ] Less than 50% white space → Regenerate "60% white space"
354
+ - [ ] Complex multi-stage → SPLIT into 2-3 graphics
355
+ - [ ] Multiple cases cramped → SPLIT into separate graphics
356
+
357
+ ### After Export
358
+
359
+ - [ ] NO content cut off at ANY of the 4 edges (check carefully)
360
+ - [ ] All images display correctly
361
+ - [ ] Colors render as expected
362
+ - [ ] Text readable at 25% scale
363
+ - [ ] Graphics look SIMPLE (not like complex 7-stage workflows)
364
+
365
+ ---
366
+
367
+ ## Common Pitfalls to Avoid
368
+
369
+ **AI-Generated Graphics Mistakes:**
370
+ - ❌ Too many elements (10+ items) → Keep to 3-5 max
371
+ - ❌ Text too small → Specify "GIANT (100pt+)" in prompts
372
+ - ❌ No white space → Add "50% white space" to every prompt
373
+ - ❌ Complex flowcharts (8+ steps) → Limit to 4-5 steps
374
+
375
+ **HTML/Export Mistakes:**
376
+ - ❌ Content exceeding poster dimensions → Check overflow in browser
377
+ - ❌ Missing background graphics in PDF → Enable in print settings
378
+ - ❌ Wrong paper size in PDF → Match poster dimensions exactly
379
+ - ❌ Low-resolution images → Use 300 DPI minimum
380
+
381
+ **Content Mistakes:**
382
+ - ❌ Too much text (over 1000 words) → Cut to 300-800 words
383
+ - ❌ Too many sections (7+) → Consolidate to 5-6
384
+ - ❌ No clear visual hierarchy → Make key findings prominent
385
+
386
+ ---
387
+
388
+ ## Integration with Other Skills
389
+
390
+ This skill works with:
391
+ - **Scientific Schematics**: Generate all poster diagrams and flowcharts
392
+ - **Generate Image / Nano Banana Pro**: Create stylized graphics and hero images
393
+ - **LaTeX Posters**: DEFAULT skill for poster creation (use this instead unless PPTX explicitly requested)
394
+
395
+ ---
396
+
397
+ ## Template Assets
398
+
399
+ Available in `assets/` directory:
400
+
401
+ - `poster_html_template.html`: Main HTML poster template (36×48 inches)
402
+ - `poster_quality_checklist.md`: Pre-submission validation checklist
403
+
404
+ ## References
405
+
406
+ Available in `references/` directory:
407
+
408
+ - `poster_content_guide.md`: Content organization and writing guidelines
409
+ - `poster_design_principles.md`: Typography, color theory, and visual hierarchy
410
+ - `poster_layout_design.md`: Layout principles and grid systems