@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,641 @@
1
+ ---
2
+ name: literature-review
3
+ description: Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be used when conducting systematic literature reviews, meta-analyses, research synthesis, or comprehensive literature searches across biomedical, scientific, and technical domains. Creates professionally formatted markdown documents and PDFs with verified citations in multiple citation styles (APA, Nature, Vancouver, etc.).
4
+ allowed-tools: [Read, Write, Edit, Bash]
5
+ ---
6
+
7
+ # Literature Review
8
+
9
+ ## Overview
10
+
11
+ Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature databases, synthesize findings thematically, verify all citations for accuracy, and generate professional output documents in markdown and PDF formats.
12
+
13
+ This skill integrates with multiple scientific skills for database access (gget, bioservices, datacommons-client) and provides specialized tools for citation verification, result aggregation, and document generation.
14
+
15
+ ## When to Use This Skill
16
+
17
+ Use this skill when:
18
+ - Conducting a systematic literature review for research or publication
19
+ - Synthesizing current knowledge on a specific topic across multiple sources
20
+ - Performing meta-analysis or scoping reviews
21
+ - Writing the literature review section of a research paper or thesis
22
+ - Investigating the state of the art in a research domain
23
+ - Identifying research gaps and future directions
24
+ - Requiring verified citations and professional formatting
25
+
26
+ ## Visual Enhancement with Scientific Schematics
27
+
28
+ **⚠️ MANDATORY: Every literature review MUST include at least 1-2 AI-generated figures using the scientific-schematics skill.**
29
+
30
+ This is not optional. Literature reviews without visual elements are incomplete. Before finalizing any document:
31
+ 1. Generate at minimum ONE schematic or diagram (e.g., PRISMA flow diagram for systematic reviews)
32
+ 2. Prefer 2-3 figures for comprehensive reviews (search strategy flowchart, thematic synthesis diagram, conceptual framework)
33
+
34
+ **How to generate figures:**
35
+ - Use the **scientific-schematics** skill to generate AI-powered publication-quality diagrams
36
+ - Simply describe your desired diagram in natural language
37
+ - Nano Banana Pro will automatically generate, review, and refine the schematic
38
+
39
+ **How to generate schematics:**
40
+ ```bash
41
+ python scripts/generate_schematic.py "your diagram description" -o figures/output.png
42
+ ```
43
+
44
+ The AI will automatically:
45
+ - Create publication-quality images with proper formatting
46
+ - Review and refine through multiple iterations
47
+ - Ensure accessibility (colorblind-friendly, high contrast)
48
+ - Save outputs in the figures/ directory
49
+
50
+ **When to add schematics:**
51
+ - PRISMA flow diagrams for systematic reviews
52
+ - Literature search strategy flowcharts
53
+ - Thematic synthesis diagrams
54
+ - Research gap visualization maps
55
+ - Citation network diagrams
56
+ - Conceptual framework illustrations
57
+ - Any complex concept that benefits from visualization
58
+
59
+ For detailed guidance on creating schematics, refer to the scientific-schematics skill documentation.
60
+
61
+ ---
62
+
63
+ ## Core Workflow
64
+
65
+ Literature reviews follow a structured, multi-phase workflow:
66
+
67
+ ### Phase 1: Planning and Scoping
68
+
69
+ 1. **Define Research Question**: Use PICO framework (Population, Intervention, Comparison, Outcome) for clinical/biomedical reviews
70
+ - Example: "What is the efficacy of CRISPR-Cas9 (I) for treating sickle cell disease (P) compared to standard care (C)?"
71
+
72
+ 2. **Establish Scope and Objectives**:
73
+ - Define clear, specific research questions
74
+ - Determine review type (narrative, systematic, scoping, meta-analysis)
75
+ - Set boundaries (time period, geographic scope, study types)
76
+
77
+ 3. **Develop Search Strategy**:
78
+ - Identify 2-4 main concepts from research question
79
+ - List synonyms, abbreviations, and related terms for each concept
80
+ - Plan Boolean operators (AND, OR, NOT) to combine terms
81
+ - Select minimum 3 complementary databases
82
+
83
+ 4. **Set Inclusion/Exclusion Criteria**:
84
+ - Date range (e.g., last 10 years: 2015-2024)
85
+ - Language (typically English, or specify multilingual)
86
+ - Publication types (peer-reviewed, preprints, reviews)
87
+ - Study designs (RCTs, observational, in vitro, etc.)
88
+ - Document all criteria clearly
89
+
90
+ ### Phase 2: Systematic Literature Search
91
+
92
+ 1. **Multi-Database Search**:
93
+
94
+ Select databases appropriate for the domain:
95
+
96
+ **Biomedical & Life Sciences:**
97
+ - Use `gget` skill: `gget search pubmed "search terms"` for PubMed/PMC
98
+ - Use `gget` skill: `gget search biorxiv "search terms"` for preprints
99
+ - Use `bioservices` skill for ChEMBL, KEGG, UniProt, etc.
100
+
101
+ **General Scientific Literature:**
102
+ - Search arXiv via direct API (preprints in physics, math, CS, q-bio)
103
+ - Search Semantic Scholar via API (200M+ papers, cross-disciplinary)
104
+ - Use Google Scholar for comprehensive coverage (manual or careful scraping)
105
+
106
+ **Specialized Databases:**
107
+ - Use `gget alphafold` for protein structures
108
+ - Use `gget cosmic` for cancer genomics
109
+ - Use `datacommons-client` for demographic/statistical data
110
+ - Use specialized databases as appropriate for the domain
111
+
112
+ 2. **Document Search Parameters**:
113
+ ```markdown
114
+ ## Search Strategy
115
+
116
+ ### Database: PubMed
117
+ - **Date searched**: 2024-10-25
118
+ - **Date range**: 2015-01-01 to 2024-10-25
119
+ - **Search string**:
120
+ ```
121
+ ("CRISPR"[Title] OR "Cas9"[Title])
122
+ AND ("sickle cell"[MeSH] OR "SCD"[Title/Abstract])
123
+ AND 2015:2024[Publication Date]
124
+ ```
125
+ - **Results**: 247 articles
126
+ ```
127
+
128
+ Repeat for each database searched.
129
+
130
+ 3. **Export and Aggregate Results**:
131
+ - Export results in JSON format from each database
132
+ - Combine all results into a single file
133
+ - Use `scripts/search_databases.py` for post-processing:
134
+ ```bash
135
+ python search_databases.py combined_results.json \
136
+ --deduplicate \
137
+ --format markdown \
138
+ --output aggregated_results.md
139
+ ```
140
+
141
+ ### Phase 3: Screening and Selection
142
+
143
+ 1. **Deduplication**:
144
+ ```bash
145
+ python search_databases.py results.json --deduplicate --output unique_results.json
146
+ ```
147
+ - Removes duplicates by DOI (primary) or title (fallback)
148
+ - Document number of duplicates removed
149
+
150
+ 2. **Title Screening**:
151
+ - Review all titles against inclusion/exclusion criteria
152
+ - Exclude obviously irrelevant studies
153
+ - Document number excluded at this stage
154
+
155
+ 3. **Abstract Screening**:
156
+ - Read abstracts of remaining studies
157
+ - Apply inclusion/exclusion criteria rigorously
158
+ - Document reasons for exclusion
159
+
160
+ 4. **Full-Text Screening**:
161
+ - Obtain full texts of remaining studies
162
+ - Conduct detailed review against all criteria
163
+ - Document specific reasons for exclusion
164
+ - Record final number of included studies
165
+
166
+ 5. **Create PRISMA Flow Diagram**:
167
+ ```
168
+ Initial search: n = X
169
+ ├─ After deduplication: n = Y
170
+ ├─ After title screening: n = Z
171
+ ├─ After abstract screening: n = A
172
+ └─ Included in review: n = B
173
+ ```
174
+
175
+ ### Phase 4: Data Extraction and Quality Assessment
176
+
177
+ 1. **Extract Key Data** from each included study:
178
+ - Study metadata (authors, year, journal, DOI)
179
+ - Study design and methods
180
+ - Sample size and population characteristics
181
+ - Key findings and results
182
+ - Limitations noted by authors
183
+ - Funding sources and conflicts of interest
184
+
185
+ 2. **Assess Study Quality**:
186
+ - **For RCTs**: Use Cochrane Risk of Bias tool
187
+ - **For observational studies**: Use Newcastle-Ottawa Scale
188
+ - **For systematic reviews**: Use AMSTAR 2
189
+ - Rate each study: High, Moderate, Low, or Very Low quality
190
+ - Consider excluding very low-quality studies
191
+
192
+ 3. **Organize by Themes**:
193
+ - Identify 3-5 major themes across studies
194
+ - Group studies by theme (studies may appear in multiple themes)
195
+ - Note patterns, consensus, and controversies
196
+
197
+ ### Phase 5: Synthesis and Analysis
198
+
199
+ 1. **Create Review Document** from template:
200
+ ```bash
201
+ cp assets/review_template.md my_literature_review.md
202
+ ```
203
+
204
+ 2. **Write Thematic Synthesis** (NOT study-by-study summaries):
205
+ - Organize Results section by themes or research questions
206
+ - Synthesize findings across multiple studies within each theme
207
+ - Compare and contrast different approaches and results
208
+ - Identify consensus areas and points of controversy
209
+ - Highlight the strongest evidence
210
+
211
+ Example structure:
212
+ ```markdown
213
+ #### 3.3.1 Theme: CRISPR Delivery Methods
214
+
215
+ Multiple delivery approaches have been investigated for therapeutic
216
+ gene editing. Viral vectors (AAV) were used in 15 studies^1-15^ and
217
+ showed high transduction efficiency (65-85%) but raised immunogenicity
218
+ concerns^3,7,12^. In contrast, lipid nanoparticles demonstrated lower
219
+ efficiency (40-60%) but improved safety profiles^16-23^.
220
+ ```
221
+
222
+ 3. **Critical Analysis**:
223
+ - Evaluate methodological strengths and limitations across studies
224
+ - Assess quality and consistency of evidence
225
+ - Identify knowledge gaps and methodological gaps
226
+ - Note areas requiring future research
227
+
228
+ 4. **Write Discussion**:
229
+ - Interpret findings in broader context
230
+ - Discuss clinical, practical, or research implications
231
+ - Acknowledge limitations of the review itself
232
+ - Compare with previous reviews if applicable
233
+ - Propose specific future research directions
234
+
235
+ ### Phase 6: Citation Verification
236
+
237
+ **CRITICAL**: All citations must be verified for accuracy before final submission.
238
+
239
+ 1. **Verify All DOIs**:
240
+ ```bash
241
+ python scripts/verify_citations.py my_literature_review.md
242
+ ```
243
+
244
+ This script:
245
+ - Extracts all DOIs from the document
246
+ - Verifies each DOI resolves correctly
247
+ - Retrieves metadata from CrossRef
248
+ - Generates verification report
249
+ - Outputs properly formatted citations
250
+
251
+ 2. **Review Verification Report**:
252
+ - Check for any failed DOIs
253
+ - Verify author names, titles, and publication details match
254
+ - Correct any errors in the original document
255
+ - Re-run verification until all citations pass
256
+
257
+ 3. **Format Citations Consistently**:
258
+ - Choose one citation style and use throughout (see `references/citation_styles.md`)
259
+ - Common styles: APA, Nature, Vancouver, Chicago, IEEE
260
+ - Use verification script output to format citations correctly
261
+ - Ensure in-text citations match reference list format
262
+
263
+ ### Phase 7: Document Generation
264
+
265
+ 1. **Generate PDF**:
266
+ ```bash
267
+ python scripts/generate_pdf.py my_literature_review.md \
268
+ --citation-style apa \
269
+ --output my_review.pdf
270
+ ```
271
+
272
+ Options:
273
+ - `--citation-style`: apa, nature, chicago, vancouver, ieee
274
+ - `--no-toc`: Disable table of contents
275
+ - `--no-numbers`: Disable section numbering
276
+ - `--check-deps`: Check if pandoc/xelatex are installed
277
+
278
+ 2. **Review Final Output**:
279
+ - Check PDF formatting and layout
280
+ - Verify all sections are present
281
+ - Ensure citations render correctly
282
+ - Check that figures/tables appear properly
283
+ - Verify table of contents is accurate
284
+
285
+ 3. **Quality Checklist**:
286
+ - [ ] All DOIs verified with verify_citations.py
287
+ - [ ] Citations formatted consistently
288
+ - [ ] PRISMA flow diagram included (for systematic reviews)
289
+ - [ ] Search methodology fully documented
290
+ - [ ] Inclusion/exclusion criteria clearly stated
291
+ - [ ] Results organized thematically (not study-by-study)
292
+ - [ ] Quality assessment completed
293
+ - [ ] Limitations acknowledged
294
+ - [ ] References complete and accurate
295
+ - [ ] PDF generates without errors
296
+
297
+ ## Database-Specific Search Guidance
298
+
299
+ ### PubMed / PubMed Central
300
+
301
+ Access via `gget` skill:
302
+ ```bash
303
+ # Search PubMed
304
+ gget search pubmed "CRISPR gene editing" -l 100
305
+
306
+ # Search with filters
307
+ # Use PubMed Advanced Search Builder to construct complex queries
308
+ # Then execute via gget or direct Entrez API
309
+ ```
310
+
311
+ **Search tips**:
312
+ - Use MeSH terms: `"sickle cell disease"[MeSH]`
313
+ - Field tags: `[Title]`, `[Title/Abstract]`, `[Author]`
314
+ - Date filters: `2020:2024[Publication Date]`
315
+ - Boolean operators: AND, OR, NOT
316
+ - See MeSH browser: https://meshb.nlm.nih.gov/search
317
+
318
+ ### bioRxiv / medRxiv
319
+
320
+ Access via `gget` skill:
321
+ ```bash
322
+ gget search biorxiv "CRISPR sickle cell" -l 50
323
+ ```
324
+
325
+ **Important considerations**:
326
+ - Preprints are not peer-reviewed
327
+ - Verify findings with caution
328
+ - Check if preprint has been published (CrossRef)
329
+ - Note preprint version and date
330
+
331
+ ### arXiv
332
+
333
+ Access via direct API or WebFetch:
334
+ ```python
335
+ # Example search categories:
336
+ # q-bio.QM (Quantitative Methods)
337
+ # q-bio.GN (Genomics)
338
+ # q-bio.MN (Molecular Networks)
339
+ # cs.LG (Machine Learning)
340
+ # stat.ML (Machine Learning Statistics)
341
+
342
+ # Search format: category AND terms
343
+ search_query = "cat:q-bio.QM AND ti:\"single cell sequencing\""
344
+ ```
345
+
346
+ ### Semantic Scholar
347
+
348
+ Access via direct API (requires API key, or use free tier):
349
+ - 200M+ papers across all fields
350
+ - Excellent for cross-disciplinary searches
351
+ - Provides citation graphs and paper recommendations
352
+ - Use for finding highly influential papers
353
+
354
+ ### Specialized Biomedical Databases
355
+
356
+ Use appropriate skills:
357
+ - **ChEMBL**: `bioservices` skill for chemical bioactivity
358
+ - **UniProt**: `gget` or `bioservices` skill for protein information
359
+ - **KEGG**: `bioservices` skill for pathways and genes
360
+ - **COSMIC**: `gget` skill for cancer mutations
361
+ - **AlphaFold**: `gget alphafold` for protein structures
362
+ - **PDB**: `gget` or direct API for experimental structures
363
+
364
+ ### Citation Chaining
365
+
366
+ Expand search via citation networks:
367
+
368
+ 1. **Forward citations** (papers citing key papers):
369
+ - Use Google Scholar "Cited by"
370
+ - Use Semantic Scholar or OpenAlex APIs
371
+ - Identifies newer research building on seminal work
372
+
373
+ 2. **Backward citations** (references from key papers):
374
+ - Extract references from included papers
375
+ - Identify highly cited foundational work
376
+ - Find papers cited by multiple included studies
377
+
378
+ ## Citation Style Guide
379
+
380
+ Detailed formatting guidelines are in `references/citation_styles.md`. Quick reference:
381
+
382
+ ### APA (7th Edition)
383
+ - In-text: (Smith et al., 2023)
384
+ - Reference: Smith, J. D., Johnson, M. L., & Williams, K. R. (2023). Title. *Journal*, *22*(4), 301-318. https://doi.org/10.xxx/yyy
385
+
386
+ ### Nature
387
+ - In-text: Superscript numbers^1,2^
388
+ - Reference: Smith, J. D., Johnson, M. L. & Williams, K. R. Title. *Nat. Rev. Drug Discov.* **22**, 301-318 (2023).
389
+
390
+ ### Vancouver
391
+ - In-text: Superscript numbers^1,2^
392
+ - Reference: Smith JD, Johnson ML, Williams KR. Title. Nat Rev Drug Discov. 2023;22(4):301-18.
393
+
394
+ **Always verify citations** with verify_citations.py before finalizing.
395
+
396
+ ## Best Practices
397
+
398
+ ### Prioritizing High-Impact Papers (CRITICAL)
399
+
400
+ **Always prioritize influential, highly-cited papers from reputable authors and top venues.** Quality matters more than quantity in literature reviews.
401
+
402
+ #### Citation Count Thresholds
403
+
404
+ Use citation counts to identify the most impactful papers:
405
+
406
+ | Paper Age | Citation Threshold | Classification |
407
+ |-----------|-------------------|----------------|
408
+ | 0-3 years | 20+ citations | Noteworthy |
409
+ | 0-3 years | 100+ citations | Highly Influential |
410
+ | 3-7 years | 100+ citations | Significant |
411
+ | 3-7 years | 500+ citations | Landmark Paper |
412
+ | 7+ years | 500+ citations | Seminal Work |
413
+ | 7+ years | 1000+ citations | Foundational |
414
+
415
+ #### Journal and Venue Tiers
416
+
417
+ Prioritize papers from higher-tier venues:
418
+
419
+ - **Tier 1 (Always Prefer):** Nature, Science, Cell, NEJM, Lancet, JAMA, PNAS, Nature Medicine, Nature Biotechnology
420
+ - **Tier 2 (Strong Preference):** High-impact specialized journals (IF>10), top conferences (NeurIPS, ICML for ML/AI)
421
+ - **Tier 3 (Include When Relevant):** Respected specialized journals (IF 5-10)
422
+ - **Tier 4 (Use Sparingly):** Lower-impact peer-reviewed venues
423
+
424
+ #### Author Reputation Assessment
425
+
426
+ Prefer papers from:
427
+ - **Senior researchers** with high h-index (>40 in established fields)
428
+ - **Leading research groups** at recognized institutions (Harvard, Stanford, MIT, Oxford, etc.)
429
+ - **Authors with multiple Tier-1 publications** in the relevant field
430
+ - **Researchers with recognized expertise** (awards, editorial positions, society fellows)
431
+
432
+ #### Identifying Seminal Papers
433
+
434
+ For any topic, identify foundational work by:
435
+ 1. **High citation count** (typically 500+ for papers 5+ years old)
436
+ 2. **Frequently cited by other included studies** (appears in many reference lists)
437
+ 3. **Published in Tier-1 venues** (Nature, Science, Cell family)
438
+ 4. **Written by field pioneers** (often cited as establishing concepts)
439
+
440
+ ### Search Strategy
441
+ 1. **Use multiple databases** (minimum 3): Ensures comprehensive coverage
442
+ 2. **Include preprint servers**: Captures latest unpublished findings
443
+ 3. **Document everything**: Search strings, dates, result counts for reproducibility
444
+ 4. **Test and refine**: Run pilot searches, review results, adjust search terms
445
+ 5. **Sort by citations**: When available, sort search results by citation count to surface influential work first
446
+
447
+ ### Screening and Selection
448
+ 1. **Use clear criteria**: Document inclusion/exclusion criteria before screening
449
+ 2. **Screen systematically**: Title → Abstract → Full text
450
+ 3. **Document exclusions**: Record reasons for excluding studies
451
+ 4. **Consider dual screening**: For systematic reviews, have two reviewers screen independently
452
+ 5. **Prioritize Tier-1 venues**: Include all relevant papers from top venues before considering lower-tier sources
453
+
454
+ ### Synthesis
455
+ 1. **Organize thematically**: Group by themes, NOT by individual studies
456
+ 2. **Synthesize across studies**: Compare, contrast, identify patterns
457
+ 3. **Be critical**: Evaluate quality and consistency of evidence
458
+ 4. **Identify gaps**: Note what's missing or understudied
459
+ 5. **Lead with high-impact work**: Start each theme with the most influential/cited papers
460
+
461
+ ### Quality and Reproducibility
462
+ 1. **Assess study quality**: Use appropriate quality assessment tools
463
+ 2. **Verify all citations**: Run verify_citations.py script
464
+ 3. **Document methodology**: Provide enough detail for others to reproduce
465
+ 4. **Follow guidelines**: Use PRISMA for systematic reviews
466
+
467
+ ### Writing
468
+ 1. **Be objective**: Present evidence fairly, acknowledge limitations
469
+ 2. **Be systematic**: Follow structured template
470
+ 3. **Be specific**: Include numbers, statistics, effect sizes where available
471
+ 4. **Be clear**: Use clear headings, logical flow, thematic organization
472
+ 5. **Cite impact indicators**: When relevant, mention citation counts and venue prestige
473
+
474
+ ## Common Pitfalls to Avoid
475
+
476
+ 1. **Single database search**: Misses relevant papers; always search multiple databases
477
+ 2. **No search documentation**: Makes review irreproducible; document all searches
478
+ 3. **Study-by-study summary**: Lacks synthesis; organize thematically instead
479
+ 4. **Unverified citations**: Leads to errors; always run verify_citations.py
480
+ 5. **Too broad search**: Yields thousands of irrelevant results; refine with specific terms
481
+ 6. **Too narrow search**: Misses relevant papers; include synonyms and related terms
482
+ 7. **Ignoring preprints**: Misses latest findings; include bioRxiv, medRxiv, arXiv
483
+ 8. **No quality assessment**: Treats all evidence equally; assess and report quality
484
+ 9. **Publication bias**: Only positive results published; note potential bias
485
+ 10. **Outdated search**: Field evolves rapidly; clearly state search date
486
+
487
+ ## Example Workflow
488
+
489
+ Complete workflow for a biomedical literature review:
490
+
491
+ ```bash
492
+ # 1. Create review document from template
493
+ cp assets/review_template.md crispr_sickle_cell_review.md
494
+
495
+ # 2. Search multiple databases using appropriate skills
496
+ # - Use gget skill for PubMed, bioRxiv
497
+ # - Use direct API access for arXiv, Semantic Scholar
498
+ # - Export results in JSON format
499
+
500
+ # 3. Aggregate and process results
501
+ python scripts/search_databases.py combined_results.json \
502
+ --deduplicate \
503
+ --rank citations \
504
+ --year-start 2015 \
505
+ --year-end 2024 \
506
+ --format markdown \
507
+ --output search_results.md \
508
+ --summary
509
+
510
+ # 4. Screen results and extract data
511
+ # - Manually screen titles, abstracts, full texts
512
+ # - Extract key data into the review document
513
+ # - Organize by themes
514
+
515
+ # 5. Write the review following template structure
516
+ # - Introduction with clear objectives
517
+ # - Detailed methodology section
518
+ # - Results organized thematically
519
+ # - Critical discussion
520
+ # - Clear conclusions
521
+
522
+ # 6. Verify all citations
523
+ python scripts/verify_citations.py crispr_sickle_cell_review.md
524
+
525
+ # Review the citation report
526
+ cat crispr_sickle_cell_review_citation_report.json
527
+
528
+ # Fix any failed citations and re-verify
529
+ python scripts/verify_citations.py crispr_sickle_cell_review.md
530
+
531
+ # 7. Generate professional PDF
532
+ python scripts/generate_pdf.py crispr_sickle_cell_review.md \
533
+ --citation-style nature \
534
+ --output crispr_sickle_cell_review.pdf
535
+
536
+ # 8. Review final PDF and markdown outputs
537
+ ```
538
+
539
+ ## Integration with Other Skills
540
+
541
+ This skill works seamlessly with other scientific skills:
542
+
543
+ ### Database Access Skills
544
+ - **gget**: PubMed, bioRxiv, COSMIC, AlphaFold, Ensembl, UniProt
545
+ - **bioservices**: ChEMBL, KEGG, Reactome, UniProt, PubChem
546
+ - **datacommons-client**: Demographics, economics, health statistics
547
+
548
+ ### Analysis Skills
549
+ - **pydeseq2**: RNA-seq differential expression (for methods sections)
550
+ - **scanpy**: Single-cell analysis (for methods sections)
551
+ - **anndata**: Single-cell data (for methods sections)
552
+ - **biopython**: Sequence analysis (for background sections)
553
+
554
+ ### Visualization Skills
555
+ - **matplotlib**: Generate figures and plots for review
556
+ - **seaborn**: Statistical visualizations
557
+
558
+ ### Writing Skills
559
+ - **brand-guidelines**: Apply institutional branding to PDF
560
+ - **internal-comms**: Adapt review for different audiences
561
+ - **venue-templates**: Access venue-specific writing style guides when preparing reviews for publication
562
+
563
+ ### Venue-Specific Writing Styles
564
+
565
+ When preparing a literature review for a specific journal, consult the **venue-templates** skill for writing style guidance:
566
+ - `venue_writing_styles.md`: Master style comparison across venues
567
+ - `nature_science_style.md`: Nature/Science flowing abstract style, story-driven structure
568
+ - `cell_press_style.md`: Cell Press graphical abstracts, Highlights format
569
+ - `medical_journal_styles.md`: NEJM/Lancet/JAMA structured abstracts, PRISMA compliance
570
+
571
+ These guides help adapt your review's tone, abstract format, and structure to match the target venue's expectations.
572
+
573
+ ## Resources
574
+
575
+ ### Bundled Resources
576
+
577
+ **Scripts:**
578
+ - `scripts/verify_citations.py`: Verify DOIs and generate formatted citations
579
+ - `scripts/generate_pdf.py`: Convert markdown to professional PDF
580
+ - `scripts/search_databases.py`: Process, deduplicate, and format search results
581
+
582
+ **References:**
583
+ - `references/citation_styles.md`: Detailed citation formatting guide (APA, Nature, Vancouver, Chicago, IEEE)
584
+ - `references/database_strategies.md`: Comprehensive database search strategies
585
+
586
+ **Assets:**
587
+ - `assets/review_template.md`: Complete literature review template with all sections
588
+
589
+ ### External Resources
590
+
591
+ **Guidelines:**
592
+ - PRISMA (Systematic Reviews): http://www.prisma-statement.org/
593
+ - Cochrane Handbook: https://training.cochrane.org/handbook
594
+ - AMSTAR 2 (Review Quality): https://amstar.ca/
595
+
596
+ **Tools:**
597
+ - MeSH Browser: https://meshb.nlm.nih.gov/search
598
+ - PubMed Advanced Search: https://pubmed.ncbi.nlm.nih.gov/advanced/
599
+ - Boolean Search Guide: https://www.ncbi.nlm.nih.gov/books/NBK3827/
600
+
601
+ **Citation Styles:**
602
+ - APA Style: https://apastyle.apa.org/
603
+ - Nature Portfolio: https://www.nature.com/nature-portfolio/editorial-policies/reporting-standards
604
+ - NLM/Vancouver: https://www.nlm.nih.gov/bsd/uniform_requirements.html
605
+
606
+ ## Dependencies
607
+
608
+ ### Required Python Packages
609
+ ```bash
610
+ pip install requests # For citation verification
611
+ ```
612
+
613
+ ### Required System Tools
614
+ ```bash
615
+ # For PDF generation
616
+ brew install pandoc # macOS
617
+ apt-get install pandoc # Linux
618
+
619
+ # For LaTeX (PDF generation)
620
+ brew install --cask mactex # macOS
621
+ apt-get install texlive-xetex # Linux
622
+ ```
623
+
624
+ Check dependencies:
625
+ ```bash
626
+ python scripts/generate_pdf.py --check-deps
627
+ ```
628
+
629
+ ## Summary
630
+
631
+ This literature-review skill provides:
632
+
633
+ 1. **Systematic methodology** following academic best practices
634
+ 2. **Multi-database integration** via existing scientific skills
635
+ 3. **Citation verification** ensuring accuracy and credibility
636
+ 4. **Professional output** in markdown and PDF formats
637
+ 5. **Comprehensive guidance** covering the entire review process
638
+ 6. **Quality assurance** with verification and validation tools
639
+ 7. **Reproducibility** through detailed documentation requirements
640
+
641
+ Conduct thorough, rigorous literature reviews that meet academic standards and provide comprehensive synthesis of current knowledge in any domain.