@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,606 @@
1
+ ---
2
+ name: research-lookup
3
+ description: "Look up current research information using Perplexity's Sonar Pro Search or Sonar Reasoning Pro models through OpenRouter. Automatically selects the best model based on query complexity. Search academic papers, recent studies, technical documentation, and general research information with citations."
4
+ allowed-tools: [Read, Write, Edit, Bash]
5
+ ---
6
+
7
+ # Research Information Lookup
8
+
9
+ ## Overview
10
+
11
+ This skill enables real-time research information lookup using Perplexity's Sonar models through OpenRouter. It intelligently selects between **Sonar Pro Search** (fast, efficient lookup) and **Sonar Reasoning Pro** (deep analytical reasoning) based on query complexity. The skill provides access to current academic literature, recent studies, technical documentation, and general research information with proper citations and source attribution.
12
+
13
+ ## When to Use This Skill
14
+
15
+ Use this skill when you need:
16
+
17
+ - **Current Research Information**: Latest studies, papers, and findings in a specific field
18
+ - **Literature Verification**: Check facts, statistics, or claims against current research
19
+ - **Background Research**: Gather context and supporting evidence for scientific writing
20
+ - **Citation Sources**: Find relevant papers and studies to cite in manuscripts
21
+ - **Technical Documentation**: Look up specifications, protocols, or methodologies
22
+ - **Recent Developments**: Stay current with emerging trends and breakthroughs
23
+ - **Statistical Data**: Find recent statistics, survey results, or research findings
24
+ - **Expert Opinions**: Access insights from recent interviews, reviews, or commentary
25
+
26
+ ## Visual Enhancement with Scientific Schematics
27
+
28
+ **When creating documents with this skill, always consider adding scientific diagrams and schematics to enhance visual communication.**
29
+
30
+ If your document does not already contain schematics or diagrams:
31
+ - Use the **scientific-schematics** skill to generate AI-powered publication-quality diagrams
32
+ - Simply describe your desired diagram in natural language
33
+ - Nano Banana Pro will automatically generate, review, and refine the schematic
34
+
35
+ **For new documents:** Scientific schematics should be generated by default to visually represent key concepts, workflows, architectures, or relationships described in the text.
36
+
37
+ **How to generate schematics:**
38
+ ```bash
39
+ python scripts/generate_schematic.py "your diagram description" -o figures/output.png
40
+ ```
41
+
42
+ The AI will automatically:
43
+ - Create publication-quality images with proper formatting
44
+ - Review and refine through multiple iterations
45
+ - Ensure accessibility (colorblind-friendly, high contrast)
46
+ - Save outputs in the figures/ directory
47
+
48
+ **When to add schematics:**
49
+ - Research information flow diagrams
50
+ - Query processing workflow illustrations
51
+ - Model selection decision trees
52
+ - System integration architecture diagrams
53
+ - Information retrieval pipeline visualizations
54
+ - Knowledge synthesis frameworks
55
+ - Any complex concept that benefits from visualization
56
+
57
+ For detailed guidance on creating schematics, refer to the scientific-schematics skill documentation.
58
+
59
+ ---
60
+
61
+ ## Core Capabilities
62
+
63
+ ### 1. Academic Research Queries
64
+
65
+ **Search Academic Literature**: Query for recent papers, studies, and reviews in specific domains:
66
+
67
+ ```
68
+ Query Examples:
69
+ - "Recent advances in CRISPR gene editing 2024"
70
+ - "Latest clinical trials for Alzheimer's disease treatment"
71
+ - "Machine learning applications in drug discovery systematic review"
72
+ - "Climate change impacts on biodiversity meta-analysis"
73
+ ```
74
+
75
+ **Expected Response Format**:
76
+ - Summary of key findings from recent literature
77
+ - Citation of 3-5 most relevant papers with authors, titles, journals, and years
78
+ - Key statistics or findings highlighted
79
+ - Identification of research gaps or controversies
80
+ - Links to full papers when available
81
+
82
+ ### 2. Technical and Methodological Information
83
+
84
+ **Protocol and Method Lookups**: Find detailed procedures, specifications, and methodologies:
85
+
86
+ ```
87
+ Query Examples:
88
+ - "Western blot protocol for protein detection"
89
+ - "RNA sequencing library preparation methods"
90
+ - "Statistical power analysis for clinical trials"
91
+ - "Machine learning model evaluation metrics"
92
+ ```
93
+
94
+ **Expected Response Format**:
95
+ - Step-by-step procedures or protocols
96
+ - Required materials and equipment
97
+ - Critical parameters and considerations
98
+ - Troubleshooting common issues
99
+ - References to standard protocols or seminal papers
100
+
101
+ ### 3. Statistical and Data Information
102
+
103
+ **Research Statistics**: Look up current statistics, survey results, and research data:
104
+
105
+ ```
106
+ Query Examples:
107
+ - "Prevalence of diabetes in US population 2024"
108
+ - "Global renewable energy adoption statistics"
109
+ - "COVID-19 vaccination rates by country"
110
+ - "AI adoption in healthcare industry survey"
111
+ ```
112
+
113
+ **Expected Response Format**:
114
+ - Current statistics with dates and sources
115
+ - Methodology of data collection
116
+ - Confidence intervals or margins of error when available
117
+ - Comparison with previous years or benchmarks
118
+ - Citations to original surveys or studies
119
+
120
+ ### 4. Citation and Reference Assistance
121
+
122
+ **Citation Finding**: Locate the most influential, highly-cited papers from reputable authors and prestigious venues:
123
+
124
+ ```
125
+ Query Examples:
126
+ - "Foundational papers on transformer architecture" (expect: Vaswani et al. 2017 in NeurIPS, 90,000+ citations)
127
+ - "Seminal works in quantum computing" (expect: papers from Nature, Science by leading researchers)
128
+ - "Key studies on climate change mitigation" (expect: IPCC-cited papers, Nature Climate Change)
129
+ - "Landmark trials in cancer immunotherapy" (expect: NEJM, Lancet trials with 1000+ citations)
130
+ ```
131
+
132
+ **Expected Response Format**:
133
+ - 5-10 most influential papers, **ranked by impact and relevance**
134
+ - Complete citation information (authors, title, journal, year, DOI)
135
+ - **Citation count** for each paper (approximate if exact unavailable)
136
+ - **Venue tier** indication (Nature, Science, Cell = Tier 1, etc.)
137
+ - Brief description of each paper's contribution
138
+ - **Author credentials** when notable (e.g., "from the Hinton lab", "Nobel laureate")
139
+ - Journal impact factors when relevant
140
+
141
+ **Quality Criteria for Citation Selection**:
142
+ - Prefer papers with **100+ citations** (for papers 3+ years old)
143
+ - Prioritize **Tier-1 journals** (Nature, Science, Cell, NEJM, Lancet)
144
+ - Include work from **recognized leaders** in the field
145
+ - Balance **foundational papers** (high citations, older) with **recent advances** (emerging, high-impact venues)
146
+
147
+ ## Automatic Model Selection
148
+
149
+ This skill features **intelligent model selection** based on query complexity:
150
+
151
+ ### Model Types
152
+
153
+ **1. Sonar Pro Search** (`perplexity/sonar-pro-search`)
154
+ - **Use Case**: Straightforward information lookup
155
+ - **Best For**:
156
+ - Simple fact-finding queries
157
+ - Recent publication searches
158
+ - Basic protocol lookups
159
+ - Statistical data retrieval
160
+ - **Speed**: Fast responses
161
+ - **Cost**: Lower cost per query
162
+
163
+ **2. Sonar Reasoning Pro** (`perplexity/sonar-reasoning-pro`)
164
+ - **Use Case**: Complex analytical queries requiring deep reasoning
165
+ - **Best For**:
166
+ - Comparative analysis ("compare X vs Y")
167
+ - Synthesis of multiple studies
168
+ - Evaluating trade-offs or controversies
169
+ - Explaining mechanisms or relationships
170
+ - Critical analysis and interpretation
171
+ - **Speed**: Slower but more thorough
172
+ - **Cost**: Higher cost per query, but provides deeper insights
173
+
174
+ ### Complexity Assessment
175
+
176
+ The skill automatically detects query complexity using these indicators:
177
+
178
+ **Reasoning Keywords** (triggers Sonar Reasoning Pro):
179
+ - Analytical: `compare`, `contrast`, `analyze`, `analysis`, `evaluate`, `critique`
180
+ - Comparative: `versus`, `vs`, `vs.`, `compared to`, `differences between`, `similarities`
181
+ - Synthesis: `meta-analysis`, `systematic review`, `synthesis`, `integrate`
182
+ - Causal: `mechanism`, `why`, `how does`, `how do`, `explain`, `relationship`, `causal relationship`, `underlying mechanism`
183
+ - Theoretical: `theoretical framework`, `implications`, `interpret`, `reasoning`
184
+ - Debate: `controversy`, `conflicting`, `paradox`, `debate`, `reconcile`
185
+ - Trade-offs: `pros and cons`, `advantages and disadvantages`, `trade-off`, `tradeoff`, `trade offs`
186
+ - Complexity: `multifaceted`, `complex interaction`, `critical analysis`
187
+
188
+ **Complexity Scoring**:
189
+ - Reasoning keywords: 3 points each (heavily weighted)
190
+ - Multiple questions: 2 points per question mark
191
+ - Complex sentence structures: 1.5 points per clause indicator (and, or, but, however, whereas, although)
192
+ - Very long queries: 1 point if >150 characters
193
+ - **Threshold**: Queries scoring ≥3 points trigger Sonar Reasoning Pro
194
+
195
+ **Practical Result**: Even a single strong reasoning keyword (compare, explain, analyze, etc.) will trigger the more powerful Sonar Reasoning Pro model, ensuring you get deep analysis when needed.
196
+
197
+ **Example Query Classification**:
198
+
199
+ ✅ **Sonar Pro Search** (straightforward lookup):
200
+ - "Recent advances in CRISPR gene editing 2024"
201
+ - "Prevalence of diabetes in US population"
202
+ - "Western blot protocol for protein detection"
203
+
204
+ ✅ **Sonar Reasoning Pro** (complex analysis):
205
+ - "Compare and contrast mRNA vaccines vs traditional vaccines for cancer treatment"
206
+ - "Explain the mechanism underlying the relationship between gut microbiome and depression"
207
+ - "Analyze the controversy surrounding AI in medical diagnosis and evaluate trade-offs"
208
+
209
+ ### Manual Override
210
+
211
+ You can force a specific model using the `force_model` parameter:
212
+
213
+ ```python
214
+ # Force Sonar Pro Search for fast lookup
215
+ research = ResearchLookup(force_model='pro')
216
+
217
+ # Force Sonar Reasoning Pro for deep analysis
218
+ research = ResearchLookup(force_model='reasoning')
219
+
220
+ # Automatic selection (default)
221
+ research = ResearchLookup()
222
+ ```
223
+
224
+ Command-line usage:
225
+ ```bash
226
+ # Force Sonar Pro Search
227
+ python research_lookup.py "your query" --force-model pro
228
+
229
+ # Force Sonar Reasoning Pro
230
+ python research_lookup.py "your query" --force-model reasoning
231
+
232
+ # Automatic (no flag)
233
+ python research_lookup.py "your query"
234
+
235
+ # Save output to a file
236
+ python research_lookup.py "your query" -o results.txt
237
+
238
+ # Output as JSON (useful for programmatic access)
239
+ python research_lookup.py "your query" --json
240
+
241
+ # Combine: JSON output saved to file
242
+ python research_lookup.py "your query" --json -o results.json
243
+ ```
244
+
245
+ ## Technical Integration
246
+
247
+ ### OpenRouter API Configuration
248
+
249
+ This skill integrates with OpenRouter (openrouter.ai) to access Perplexity's Sonar models:
250
+
251
+ **Model Specifications**:
252
+ - **Models**:
253
+ - `perplexity/sonar-pro-search` (fast lookup)
254
+ - `perplexity/sonar-reasoning-pro-online` (deep analysis)
255
+ - **Search Mode**: Academic/scholarly mode (prioritizes peer-reviewed sources)
256
+ - **Search Context**: Always uses `high` search context for deeper, more comprehensive research results
257
+ - **Context Window**: 200K+ tokens for comprehensive research
258
+ - **Capabilities**: Academic paper search, citation generation, scholarly analysis
259
+ - **Output**: Rich responses with citations and source links from academic databases
260
+
261
+ **API Requirements**:
262
+ - OpenRouter API key (set as `OPENROUTER_API_KEY` environment variable)
263
+ - Account with sufficient credits for research queries
264
+ - Proper attribution and citation of sources
265
+
266
+ **Academic Mode Configuration**:
267
+ - System message configured to prioritize scholarly sources
268
+ - Search focused on peer-reviewed journals and academic publications
269
+ - Enhanced citation extraction for academic references
270
+ - Preference for recent academic literature (2020-2024)
271
+ - Direct access to academic databases and repositories
272
+
273
+ ### Response Quality and Reliability
274
+
275
+ **Source Verification**: The skill prioritizes:
276
+ - Peer-reviewed academic papers and journals
277
+ - Reputable institutional sources (universities, government agencies, NGOs)
278
+ - Recent publications (within last 2-3 years preferred)
279
+ - High-impact journals and conferences
280
+ - Primary research over secondary sources
281
+
282
+ **Citation Standards**: All responses include:
283
+ - Complete bibliographic information
284
+ - DOI or stable URLs when available
285
+ - Access dates for web sources
286
+ - Clear attribution of direct quotes or data
287
+
288
+ ## Paper Quality and Popularity Prioritization
289
+
290
+ **CRITICAL**: When searching for papers, ALWAYS prioritize high-quality, influential papers over obscure or low-impact publications. Quality matters more than quantity.
291
+
292
+ ### Citation-Based Ranking
293
+
294
+ Prioritize papers based on citation count relative to their age:
295
+
296
+ | Paper Age | Citation Threshold | Classification |
297
+ |-----------|-------------------|----------------|
298
+ | 0-3 years | 20+ citations | Noteworthy |
299
+ | 0-3 years | 100+ citations | Highly Influential |
300
+ | 3-7 years | 100+ citations | Significant |
301
+ | 3-7 years | 500+ citations | Landmark Paper |
302
+ | 7+ years | 500+ citations | Seminal Work |
303
+ | 7+ years | 1000+ citations | Foundational |
304
+
305
+ **When reporting citations**: Always indicate approximate citation count when known (e.g., "cited 500+ times" or "highly cited").
306
+
307
+ ### Venue Quality Tiers
308
+
309
+ Prioritize papers from higher-tier venues:
310
+
311
+ **Tier 1 - Premier Venues** (Always prefer):
312
+ - **General Science**: Nature, Science, Cell, PNAS
313
+ - **Medicine**: NEJM, Lancet, JAMA, BMJ
314
+ - **Field-Specific Flagships**: Nature Medicine, Nature Biotechnology, Nature Methods, Nature Genetics, Cell Stem Cell, Immunity
315
+ - **Top CS/AI**: NeurIPS, ICML, ICLR, ACL, CVPR (for ML/AI topics)
316
+
317
+ **Tier 2 - High-Impact Specialized** (Strong preference):
318
+ - Journals with Impact Factor > 10
319
+ - Top conferences in subfields (e.g., EMNLP, NAACL, ECCV, MICCAI)
320
+ - Society flagship journals (e.g., Blood, Circulation, Gastroenterology)
321
+
322
+ **Tier 3 - Respected Specialized** (Include when relevant):
323
+ - Journals with Impact Factor 5-10
324
+ - Established conferences in the field
325
+ - Well-indexed specialized journals
326
+
327
+ **Tier 4 - Other Peer-Reviewed** (Use sparingly):
328
+ - Lower-impact journals, only if directly relevant and no better source exists
329
+
330
+ ### Author Reputation Indicators
331
+
332
+ Prefer papers from established, reputable researchers:
333
+
334
+ - **Senior authors with high h-index** (>40 in established fields)
335
+ - **Multiple publications in Tier-1 venues**
336
+ - **Leadership positions** at recognized research institutions
337
+ - **Recognized expertise**: Awards, editorial positions, society fellows
338
+ - **First/last author on landmark papers** in the field
339
+
340
+ ### Direct Relevance Scoring
341
+
342
+ Always prioritize papers that directly address the research question:
343
+
344
+ 1. **Primary Priority**: Papers directly addressing the exact research question
345
+ 2. **Secondary Priority**: Papers with applicable methods, data, or conceptual frameworks
346
+ 3. **Tertiary Priority**: Tangentially related papers (include ONLY if from Tier-1 venues or highly cited)
347
+
348
+ ### Practical Application
349
+
350
+ When conducting research lookups:
351
+
352
+ 1. **Start with the most influential papers** - Look for highly-cited, foundational work first
353
+ 2. **Prioritize Tier-1 venues** - Nature, Science, Cell family journals, NEJM, Lancet for medical topics
354
+ 3. **Check author credentials** - Prefer work from established research groups
355
+ 4. **Balance recency with impact** - Recent highly-cited papers > older obscure papers > recent uncited papers
356
+ 5. **Report quality indicators** - Include citation counts, journal names, and author affiliations in responses
357
+
358
+ **Example Quality-Focused Query Response**:
359
+ ```
360
+ Key findings from high-impact literature:
361
+
362
+ 1. Smith et al. (2023), Nature Medicine (IF: 82.9, cited 450+ times)
363
+ - Senior author: Prof. John Smith, Harvard Medical School
364
+ - Key finding: [finding]
365
+
366
+ 2. Johnson & Lee (2024), Cell (IF: 64.5, cited 120+ times)
367
+ - From the renowned Lee Lab at Stanford
368
+ - Key finding: [finding]
369
+
370
+ 3. Chen et al. (2022), NEJM (IF: 158.5, cited 890+ times)
371
+ - Landmark clinical trial (N=5,000)
372
+ - Key finding: [finding]
373
+ ```
374
+
375
+ ## Query Best Practices
376
+
377
+ ### 1. Model Selection Strategy
378
+
379
+ **For Simple Lookups (Sonar Pro Search)**:
380
+ - Recent papers on a specific topic
381
+ - Statistical data or prevalence rates
382
+ - Standard protocols or methodologies
383
+ - Citation finding for specific papers
384
+ - Factual information retrieval
385
+
386
+ **For Complex Analysis (Sonar Reasoning Pro)**:
387
+ - Comparative studies and synthesis
388
+ - Mechanism explanations
389
+ - Controversy evaluation
390
+ - Trade-off analysis
391
+ - Theoretical frameworks
392
+ - Multi-faceted relationships
393
+
394
+ **Pro Tip**: The automatic selection is optimized for most use cases. Only use `force_model` if you have specific requirements or know the query needs deeper reasoning than detected.
395
+
396
+ ### 2. Specific and Focused Queries
397
+
398
+ **Good Queries** (will trigger appropriate model):
399
+ - "Randomized controlled trials of mRNA vaccines for cancer treatment 2023-2024" → Sonar Pro Search
400
+ - "Compare the efficacy and safety of mRNA vaccines vs traditional vaccines for cancer treatment" → Sonar Reasoning Pro
401
+ - "Explain the mechanism by which CRISPR off-target effects occur and strategies to minimize them" → Sonar Reasoning Pro
402
+
403
+ **Poor Queries**:
404
+ - "Tell me about AI" (too broad)
405
+ - "Cancer research" (lacks specificity)
406
+ - "Latest news" (too vague)
407
+
408
+ ### 3. Structured Query Format
409
+
410
+ **Recommended Structure**:
411
+ ```
412
+ [Topic] + [Specific Aspect] + [Time Frame] + [Type of Information]
413
+ ```
414
+
415
+ **Examples**:
416
+ - "CRISPR gene editing + off-target effects + 2024 + clinical trials"
417
+ - "Quantum computing + error correction + recent advances + review papers"
418
+ - "Renewable energy + solar efficiency + 2023-2024 + statistical data"
419
+
420
+ ### 4. Follow-up Queries
421
+
422
+ **Effective Follow-ups**:
423
+ - "Show me the full citation for the Smith et al. 2024 paper"
424
+ - "What are the limitations of this methodology?"
425
+ - "Find similar studies using different approaches"
426
+ - "What controversies exist in this research area?"
427
+
428
+ ## Integration with Scientific Writing
429
+
430
+ This skill enhances scientific writing by providing:
431
+
432
+ 1. **Literature Review Support**: Gather current research for introduction and discussion sections
433
+ 2. **Methods Validation**: Verify protocols and procedures against current standards
434
+ 3. **Results Contextualization**: Compare findings with recent similar studies
435
+ 4. **Discussion Enhancement**: Support arguments with latest evidence
436
+ 5. **Citation Management**: Provide properly formatted citations in multiple styles
437
+
438
+ ## Error Handling and Limitations
439
+
440
+ **Known Limitations**:
441
+ - Information cutoff: Responses limited to training data (typically 2023-2024)
442
+ - Paywall content: May not access full text behind paywalls
443
+ - Emerging research: May miss very recent papers not yet indexed
444
+ - Specialized databases: Cannot access proprietary or restricted databases
445
+
446
+ **Error Conditions**:
447
+ - API rate limits or quota exceeded
448
+ - Network connectivity issues
449
+ - Malformed or ambiguous queries
450
+ - Model unavailability or maintenance
451
+
452
+ **Fallback Strategies**:
453
+ - Rephrase queries for better clarity
454
+ - Break complex queries into simpler components
455
+ - Use broader time frames if recent data unavailable
456
+ - Cross-reference with multiple query variations
457
+
458
+ ## Usage Examples
459
+
460
+ ### Example 1: Simple Literature Search (Sonar Pro Search)
461
+
462
+ **Query**: "Recent advances in transformer attention mechanisms 2024"
463
+
464
+ **Model Selected**: Sonar Pro Search (straightforward lookup)
465
+
466
+ **Response Includes**:
467
+ - Summary of 5 key papers from 2024
468
+ - Complete citations with DOIs
469
+ - Key innovations and improvements
470
+ - Performance benchmarks
471
+ - Future research directions
472
+
473
+ ### Example 2: Comparative Analysis (Sonar Reasoning Pro)
474
+
475
+ **Query**: "Compare and contrast the advantages and limitations of transformer-based models versus traditional RNNs for sequence modeling"
476
+
477
+ **Model Selected**: Sonar Reasoning Pro (complex analysis required)
478
+
479
+ **Response Includes**:
480
+ - Detailed comparison across multiple dimensions
481
+ - Analysis of architectural differences
482
+ - Trade-offs in computational efficiency vs performance
483
+ - Use case recommendations
484
+ - Synthesis of evidence from multiple studies
485
+ - Discussion of ongoing debates in the field
486
+
487
+ ### Example 3: Method Verification (Sonar Pro Search)
488
+
489
+ **Query**: "Standard protocols for flow cytometry analysis"
490
+
491
+ **Model Selected**: Sonar Pro Search (protocol lookup)
492
+
493
+ **Response Includes**:
494
+ - Step-by-step protocol from recent review
495
+ - Required controls and calibrations
496
+ - Common pitfalls and troubleshooting
497
+ - Reference to definitive methodology paper
498
+ - Alternative approaches with pros/cons
499
+
500
+ ### Example 4: Mechanism Explanation (Sonar Reasoning Pro)
501
+
502
+ **Query**: "Explain the underlying mechanism of how mRNA vaccines trigger immune responses and why they differ from traditional vaccines"
503
+
504
+ **Model Selected**: Sonar Reasoning Pro (requires causal reasoning)
505
+
506
+ **Response Includes**:
507
+ - Detailed mechanistic explanation
508
+ - Step-by-step biological processes
509
+ - Comparative analysis with traditional vaccines
510
+ - Molecular-level interactions
511
+ - Integration of immunology and pharmacology concepts
512
+ - Evidence from recent research
513
+
514
+ ### Example 5: Statistical Data (Sonar Pro Search)
515
+
516
+ **Query**: "Global AI adoption in healthcare statistics 2024"
517
+
518
+ **Model Selected**: Sonar Pro Search (data lookup)
519
+
520
+ **Response Includes**:
521
+ - Current adoption rates by region
522
+ - Market size and growth projections
523
+ - Survey methodology and sample size
524
+ - Comparison with previous years
525
+ - Citations to market research reports
526
+
527
+ ## Performance and Cost Considerations
528
+
529
+ ### Response Times
530
+
531
+ **Sonar Pro Search**:
532
+ - Typical response time: 5-15 seconds
533
+ - Best for rapid information gathering
534
+ - Suitable for batch queries
535
+
536
+ **Sonar Reasoning Pro**:
537
+ - Typical response time: 15-45 seconds
538
+ - Worth the wait for complex analytical queries
539
+ - Provides more thorough reasoning and synthesis
540
+
541
+ ### Cost Optimization
542
+
543
+ **Automatic Selection Benefits**:
544
+ - Saves costs by using Sonar Pro Search for straightforward queries
545
+ - Reserves Sonar Reasoning Pro for queries that truly benefit from deeper analysis
546
+ - Optimizes the balance between cost and quality
547
+
548
+ **Manual Override Use Cases**:
549
+ - Force Sonar Pro Search when budget is constrained and speed is priority
550
+ - Force Sonar Reasoning Pro when working on critical research requiring maximum depth
551
+ - Use for specific sections of papers (e.g., Pro Search for methods, Reasoning for discussion)
552
+
553
+ **Best Practices**:
554
+ 1. Trust the automatic selection for most use cases
555
+ 2. Review query results - if Sonar Pro Search doesn't provide sufficient depth, rephrase with reasoning keywords
556
+ 3. Use batch queries strategically - combine simple lookups to minimize total query count
557
+ 4. For literature reviews, start with Sonar Pro Search for breadth, then use Sonar Reasoning Pro for synthesis
558
+
559
+ ## Security and Ethical Considerations
560
+
561
+ **Responsible Use**:
562
+ - Verify all information against primary sources when possible
563
+ - Clearly attribute all data and quotes to original sources
564
+ - Avoid presenting AI-generated summaries as original research
565
+ - Respect copyright and licensing restrictions
566
+ - Use for research assistance, not to bypass paywalls or subscriptions
567
+
568
+ **Academic Integrity**:
569
+ - Always cite original sources, not the AI tool
570
+ - Use as a starting point for literature searches
571
+ - Follow institutional guidelines for AI tool usage
572
+ - Maintain transparency about research methods
573
+
574
+ ## Complementary Tools
575
+
576
+ In addition to research-lookup, the scientific writer has access to **WebSearch** for:
577
+
578
+ - **Quick metadata verification**: Look up DOIs, publication years, journal names, volume/page numbers
579
+ - **Non-academic sources**: News, blogs, technical documentation, current events
580
+ - **General information**: Company info, product details, current statistics
581
+ - **Cross-referencing**: Verify citation details found through research-lookup
582
+
583
+ **When to use which tool:**
584
+ | Task | Tool |
585
+ |------|------|
586
+ | Find academic papers | research-lookup |
587
+ | Literature search | research-lookup |
588
+ | Deep analysis/comparison | research-lookup (Sonar Reasoning Pro) |
589
+ | Look up DOI/metadata | WebSearch |
590
+ | Verify publication year | WebSearch |
591
+ | Find journal volume/pages | WebSearch |
592
+ | Current events/news | WebSearch |
593
+ | Non-scholarly sources | WebSearch |
594
+
595
+ ## Summary
596
+
597
+ This skill serves as a powerful research assistant with intelligent dual-model selection:
598
+
599
+ - **Automatic Intelligence**: Analyzes query complexity and selects the optimal model (Sonar Pro Search or Sonar Reasoning Pro)
600
+ - **Cost-Effective**: Uses faster, cheaper Sonar Pro Search for straightforward lookups
601
+ - **Deep Analysis**: Automatically engages Sonar Reasoning Pro for complex comparative, analytical, and theoretical queries
602
+ - **Flexible Control**: Manual override available when you know exactly what level of analysis you need
603
+ - **Academic Focus**: Both models configured to prioritize peer-reviewed sources and scholarly literature
604
+ - **Complementary WebSearch**: Use alongside WebSearch for metadata verification and non-academic sources
605
+
606
+ Whether you need quick fact-finding or deep analytical synthesis, this skill automatically adapts to deliver the right level of research support for your scientific writing needs.