@synsci/cli-darwin-x64-baseline 1.1.71 → 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,938 @@
1
+ ---
2
+ name: research-grants
3
+ description: "Write competitive research proposals for NSF, NIH, DOE, and DARPA. Agency-specific formatting, review criteria, budget preparation, broader impacts, significance statements, innovation narratives, and compliance with submission requirements."
4
+ allowed-tools: [Read, Write, Edit, Bash]
5
+ ---
6
+
7
+ # Research Grant Writing
8
+
9
+ ## Overview
10
+
11
+ Research grant writing is the process of developing competitive funding proposals for federal agencies and foundations. Master agency-specific requirements, review criteria, narrative structure, budget preparation, and compliance for NSF (National Science Foundation), NIH (National Institutes of Health), DOE (Department of Energy), and DARPA (Defense Advanced Research Projects Agency) submissions.
12
+
13
+ **Critical Principle: Grants are persuasive documents that must simultaneously demonstrate scientific rigor, innovation, feasibility, and broader impact.** Each agency has distinct priorities, review criteria, formatting requirements, and strategic goals that must be addressed.
14
+
15
+ ## When to Use This Skill
16
+
17
+ This skill should be used when:
18
+ - Writing research proposals for NSF, NIH, DOE, or DARPA programs
19
+ - Preparing project descriptions, specific aims, or technical narratives
20
+ - Developing broader impacts or significance statements
21
+ - Creating research timelines and milestone plans
22
+ - Preparing budget justifications and personnel allocation plans
23
+ - Responding to program solicitations or funding announcements
24
+ - Addressing reviewer comments in resubmissions
25
+ - Planning multi-institutional collaborative proposals
26
+ - Writing preliminary data or feasibility sections
27
+ - Preparing biosketches, CVs, or facilities descriptions
28
+
29
+ ## Visual Enhancement with Scientific Schematics
30
+
31
+ **⚠️ MANDATORY: Every research grant proposal MUST include at least 1-2 AI-generated figures using the scientific-schematics skill.**
32
+
33
+ This is not optional. Grant proposals without visual elements are incomplete and less competitive. Before finalizing any document:
34
+ 1. Generate at minimum ONE schematic or diagram (e.g., project timeline, methodology flowchart, or conceptual framework)
35
+ 2. Prefer 2-3 figures for comprehensive proposals (research workflow, Gantt chart, preliminary data visualization)
36
+
37
+ **How to generate figures:**
38
+ - Use the **scientific-schematics** skill to generate AI-powered publication-quality diagrams
39
+ - Simply describe your desired diagram in natural language
40
+ - Nano Banana Pro will automatically generate, review, and refine the schematic
41
+
42
+ **How to generate schematics:**
43
+ ```bash
44
+ python scripts/generate_schematic.py "your diagram description" -o figures/output.png
45
+ ```
46
+
47
+ The AI will automatically:
48
+ - Create publication-quality images with proper formatting
49
+ - Review and refine through multiple iterations
50
+ - Ensure accessibility (colorblind-friendly, high contrast)
51
+ - Save outputs in the figures/ directory
52
+
53
+ **When to add schematics:**
54
+ - Research methodology and workflow diagrams
55
+ - Project timeline Gantt charts
56
+ - Conceptual framework illustrations
57
+ - System architecture diagrams (for technical proposals)
58
+ - Experimental design flowcharts
59
+ - Broader impacts activity diagrams
60
+ - Collaboration network diagrams
61
+ - Any complex concept that benefits from visualization
62
+
63
+ For detailed guidance on creating schematics, refer to the scientific-schematics skill documentation.
64
+
65
+ ---
66
+
67
+ ## Agency-Specific Overview
68
+
69
+ ### NSF (National Science Foundation)
70
+ **Mission**: Promote the progress of science and advance national health, prosperity, and welfare
71
+
72
+ **Key Features**:
73
+ - Intellectual Merit + Broader Impacts (equally weighted)
74
+ - 15-page project description limit (most programs)
75
+ - Emphasis on education, diversity, and societal benefit
76
+ - Collaborative research encouraged
77
+ - Open data and open science emphasis
78
+ - Merit review process with panel + ad hoc reviewers
79
+
80
+ ### NIH (National Institutes of Health)
81
+ **Mission**: Enhance health, lengthen life, and reduce illness and disability
82
+
83
+ **Key Features**:
84
+ - Specific Aims (1 page) + Research Strategy (12 pages for R01)
85
+ - Significance, Innovation, Approach as core review criteria
86
+ - Preliminary data typically required for R01s
87
+ - Emphasis on rigor, reproducibility, and clinical relevance
88
+ - Modular budgets ($250K increments) for most R01s
89
+ - Multiple resubmission opportunities
90
+
91
+ ### DOE (Department of Energy)
92
+ **Mission**: Ensure America's security and prosperity through energy, environmental, and nuclear challenges
93
+
94
+ **Key Features**:
95
+ - Focus on energy, climate, computational science, basic energy sciences
96
+ - Often requires cost sharing or industry partnerships
97
+ - Emphasis on national laboratory collaboration
98
+ - Strong computational and experimental integration
99
+ - Energy innovation and commercialization pathways
100
+ - Varies by office (ARPA-E, Office of Science, EERE, etc.)
101
+
102
+ ### DARPA (Defense Advanced Research Projects Agency)
103
+ **Mission**: Make pivotal investments in breakthrough technologies for national security
104
+
105
+ **Key Features**:
106
+ - High-risk, high-reward transformative research
107
+ - Focus on "DARPA-hard" problems (what if true, who cares)
108
+ - Emphasis on prototypes, demonstrations, and transition paths
109
+ - Often requires multiple phases (feasibility, development, demonstration)
110
+ - Strong project management and milestone tracking
111
+ - Teaming and collaboration often required
112
+ - Varies dramatically by program manager and BAA (Broad Agency Announcement)
113
+
114
+ ## Core Components of Research Proposals
115
+
116
+ ### 1. Executive Summary / Project Summary / Abstract
117
+
118
+ Every proposal needs a concise overview that communicates the essential elements of the research to both technical reviewers and program officers.
119
+
120
+ **Purpose**: Provide a standalone summary that captures the research vision, significance, and approach
121
+
122
+ **Length**:
123
+ - NSF: 1 page (Project Summary with separate Overview, Intellectual Merit, Broader Impacts)
124
+ - NIH: 30 lines (Project Summary/Abstract)
125
+ - DOE: Varies (typically 1 page)
126
+ - DARPA: Varies (often 1-2 pages)
127
+
128
+ **Essential Elements**:
129
+ - Clear statement of the problem or research question
130
+ - Why this problem matters (significance, urgency, impact)
131
+ - Novel approach or innovation
132
+ - Expected outcomes and deliverables
133
+ - Qualifications of the team
134
+ - Broader impacts or translational pathway
135
+
136
+ **Writing Strategy**:
137
+ - Open with a compelling hook that establishes importance
138
+ - Use accessible language (avoid jargon in opening sentences)
139
+ - State specific, measurable objectives
140
+ - Convey enthusiasm and confidence
141
+ - Ensure every sentence adds value (no filler)
142
+ - End with transformative vision or impact statement
143
+
144
+ **Common Mistakes to Avoid**:
145
+ - Being too technical or detailed (save for project description)
146
+ - Failing to articulate "why now" or "why this team"
147
+ - Vague objectives or outcomes
148
+ - Neglecting broader impacts or significance
149
+ - Generic statements that could apply to any proposal
150
+
151
+ ### 2. Project Description / Research Strategy
152
+
153
+ The core technical narrative that presents the research plan in detail.
154
+
155
+ **Structure Varies by Agency:**
156
+
157
+ **NSF Project Description** (typically 15 pages):
158
+ - Introduction and background
159
+ - Research objectives and questions
160
+ - Preliminary results (if applicable)
161
+ - Research plan and methodology
162
+ - Timeline and milestones
163
+ - Broader impacts (integrated throughout or separate section)
164
+ - Prior NSF support (if applicable)
165
+
166
+ **NIH Research Strategy** (12 pages for R01):
167
+ - Significance (why the problem matters)
168
+ - Innovation (what's novel and transformative)
169
+ - Approach (detailed research plan)
170
+ - Preliminary data
171
+ - Research design and methods
172
+ - Expected outcomes
173
+ - Potential problems and alternative approaches
174
+
175
+ **DOE Project Narrative** (varies):
176
+ - Background and significance
177
+ - Technical approach and innovation
178
+ - Qualifications and experience
179
+ - Facilities and resources
180
+ - Project management and timeline
181
+
182
+ **DARPA Technical Volume** (varies):
183
+ - Technical challenge and innovation
184
+ - Approach and methodology
185
+ - Schedule and milestones
186
+ - Deliverables and metrics
187
+ - Team qualifications
188
+ - Risk assessment and mitigation
189
+
190
+ For detailed agency-specific guidance, refer to:
191
+ - `references/nsf_guidelines.md`
192
+ - `references/nih_guidelines.md`
193
+ - `references/doe_guidelines.md`
194
+ - `references/darpa_guidelines.md`
195
+
196
+ ### 3. Specific Aims (NIH) or Objectives (NSF/DOE/DARPA)
197
+
198
+ Clear, testable goals that structure the research plan.
199
+
200
+ **NIH Specific Aims Page** (1 page):
201
+ - Opening paragraph: Gap in knowledge and significance
202
+ - Long-term goal and immediate objectives
203
+ - Central hypothesis or research question
204
+ - 2-4 specific aims with sub-aims
205
+ - Expected outcomes and impact
206
+ - Payoff paragraph: Why this matters
207
+
208
+ **Structure for Each Aim:**
209
+ - Aim statement (1-2 sentences, starts with action verb)
210
+ - Rationale (why this aim, preliminary data support)
211
+ - Working hypothesis (testable prediction)
212
+ - Approach summary (brief methods overview)
213
+ - Expected outcomes and interpretation
214
+
215
+ **Writing Strategy**:
216
+ - Make aims independent but complementary
217
+ - Ensure each aim is achievable within timeline and budget
218
+ - Provide enough detail to judge feasibility
219
+ - Include contingency plans or alternative approaches
220
+ - Use parallel structure across aims
221
+ - Clearly state what will be learned from each aim
222
+
223
+ For detailed guidance, refer to `references/specific_aims_guide.md`.
224
+
225
+ ### 4. Broader Impacts (NSF) / Significance (NIH)
226
+
227
+ Articulate the societal, educational, or translational value of the research.
228
+
229
+ **NSF Broader Impacts** (critical component, equal weight with Intellectual Merit):
230
+
231
+ NSF explicitly evaluates broader impacts. Address at least one of these areas:
232
+ 1. **Advancing discovery and understanding while promoting teaching, training, and learning**
233
+ - Integration of research and education
234
+ - Training of students and postdocs
235
+ - Curriculum development
236
+ - Educational materials and resources
237
+
238
+ 2. **Broadening participation of underrepresented groups**
239
+ - Recruitment and retention strategies
240
+ - Partnerships with minority-serving institutions
241
+ - Outreach to underrepresented communities
242
+ - Mentoring programs
243
+
244
+ 3. **Enhancing infrastructure for research and education**
245
+ - Shared facilities or instrumentation
246
+ - Cyberinfrastructure and data resources
247
+ - Community-wide tools or databases
248
+ - Open-source software or methods
249
+
250
+ 4. **Broad dissemination to enhance scientific and technological understanding**
251
+ - Public outreach and science communication
252
+ - K-12 educational programs
253
+ - Museum exhibits or media engagement
254
+ - Policy briefs or stakeholder engagement
255
+
256
+ 5. **Benefits to society**
257
+ - Economic impact or commercialization
258
+ - Health, environment, or national security benefits
259
+ - Informed decision-making
260
+ - Workforce development
261
+
262
+ **Writing Strategy for NSF Broader Impacts**:
263
+ - Be specific with concrete activities, not vague statements
264
+ - Provide timeline and milestones for broader impacts activities
265
+ - Explain how impacts will be measured and assessed
266
+ - Connect to institutional resources and existing programs
267
+ - Show commitment through preliminary efforts or partnerships
268
+ - Integrate with research plan (not tacked on)
269
+
270
+ **NIH Significance**:
271
+ - Addresses important problem or critical barrier to progress
272
+ - Improves scientific knowledge, technical capability, or clinical practice
273
+ - Potential to lead to better outcomes, interventions, or understanding
274
+ - Rigor of prior research in the field
275
+ - Alignment with NIH mission and institute priorities
276
+
277
+ For detailed guidance, refer to `references/broader_impacts.md`.
278
+
279
+ ### 5. Innovation and Transformative Potential
280
+
281
+ Articulate what is novel, creative, and paradigm-shifting about the research.
282
+
283
+ **Innovation Elements to Highlight**:
284
+ - **Conceptual Innovation**: New frameworks, models, or theories
285
+ - **Methodological Innovation**: Novel techniques, approaches, or technologies
286
+ - **Integrative Innovation**: Combining disciplines or approaches in new ways
287
+ - **Translational Innovation**: New pathways from discovery to application
288
+ - **Scale Innovation**: Unprecedented scope or resolution
289
+
290
+ **Writing Strategy**:
291
+ - Clearly state what is innovative (don't assume it's obvious)
292
+ - Explain why current approaches are insufficient
293
+ - Describe how your innovation overcomes limitations
294
+ - Provide evidence that innovation is feasible (preliminary data, proof-of-concept)
295
+ - Distinguish incremental from transformative advances
296
+ - Balance innovation with feasibility (not too risky)
297
+
298
+ **Common Mistakes**:
299
+ - Claiming novelty without demonstrating knowledge of prior work
300
+ - Confusing "new to me" with "new to the field"
301
+ - Over-promising without supporting evidence
302
+ - Being too incremental (minor variation on existing work)
303
+ - Being too speculative (no path to success)
304
+
305
+ ### 6. Research Approach and Methods
306
+
307
+ Detailed description of how the research will be conducted.
308
+
309
+ **Essential Components**:
310
+ - Overall research design and framework
311
+ - Detailed methods for each aim/objective
312
+ - Sample sizes, statistical power, and analysis plans
313
+ - Timeline and sequence of activities
314
+ - Data collection, management, and analysis
315
+ - Quality control and validation approaches
316
+ - Potential problems and alternative strategies
317
+ - Rigor and reproducibility measures
318
+
319
+ **Writing Strategy**:
320
+ - Provide enough detail for reproducibility and feasibility assessment
321
+ - Use subheadings and figures to improve organization
322
+ - Justify choice of methods and approaches
323
+ - Address potential limitations proactively
324
+ - Include preliminary data demonstrating feasibility
325
+ - Show that you've thought through the research process
326
+ - Balance detail with readability (use supplementary materials for extensive details)
327
+
328
+ **For Experimental Research**:
329
+ - Describe experimental design (controls, replicates, blinding)
330
+ - Specify materials, reagents, and equipment
331
+ - Detail data collection protocols
332
+ - Explain statistical analysis plans
333
+ - Address rigor and reproducibility
334
+
335
+ **For Computational Research**:
336
+ - Describe algorithms, models, and software
337
+ - Specify datasets and validation approaches
338
+ - Explain computational resources required
339
+ - Address code availability and documentation
340
+ - Describe benchmarking and performance metrics
341
+
342
+ **For Clinical or Translational Research**:
343
+ - Describe study population and recruitment
344
+ - Detail intervention or treatment protocols
345
+ - Explain outcome measures and assessments
346
+ - Address regulatory approvals (IRB, IND, IDE)
347
+ - Describe clinical trial design and monitoring
348
+
349
+ For detailed methodology guidance by discipline, refer to `references/research_methods.md`.
350
+
351
+ ### 7. Preliminary Data and Feasibility
352
+
353
+ Demonstrate that the research is achievable and the team is capable.
354
+
355
+ **Purpose**:
356
+ - Prove that the proposed approach can work
357
+ - Show that the team has necessary expertise
358
+ - Demonstrate access to required resources
359
+ - Reduce perceived risk for reviewers
360
+ - Provide foundation for proposed work
361
+
362
+ **What to Include**:
363
+ - Pilot studies or proof-of-concept results
364
+ - Method development or optimization
365
+ - Access to unique resources (samples, data, collaborators)
366
+ - Relevant publications from your team
367
+ - Preliminary models or simulations
368
+ - Feasibility assessments or power calculations
369
+
370
+ **NIH Requirements**:
371
+ - R01 applications typically require substantial preliminary data
372
+ - R21 applications may have less stringent requirements
373
+ - New investigators may have less preliminary data
374
+ - Preliminary data should directly support proposed aims
375
+
376
+ **NSF Approach**:
377
+ - Preliminary data less commonly required than NIH
378
+ - May be important for high-risk or novel approaches
379
+ - Can strengthen proposal for competitive programs
380
+
381
+ **Writing Strategy**:
382
+ - Present most compelling data that supports your approach
383
+ - Clearly connect preliminary data to proposed aims
384
+ - Acknowledge limitations and how proposed work will address them
385
+ - Use figures and data visualizations effectively
386
+ - Avoid over-interpreting or overstating preliminary findings
387
+ - Show trajectory of your research program
388
+
389
+ ### 8. Timeline, Milestones, and Management Plan
390
+
391
+ Demonstrate that the project is well-planned and achievable within the proposed timeframe.
392
+
393
+ **Essential Elements**:
394
+ - Phased timeline with clear milestones
395
+ - Logical sequence and dependencies
396
+ - Realistic timeframes for each activity
397
+ - Decision points and go/no-go criteria
398
+ - Risk mitigation strategies
399
+ - Resource allocation across time
400
+ - Coordination plan for multi-institutional teams
401
+
402
+ **Presentation Formats**:
403
+ - Gantt charts showing overlapping activities
404
+ - Year-by-year breakdown of activities
405
+ - Quarterly milestones and deliverables
406
+ - Table of aims/tasks with timeline and personnel
407
+
408
+ **Writing Strategy**:
409
+ - Be realistic about what can be accomplished
410
+ - Build in time for unexpected delays or setbacks
411
+ - Show that timeline aligns with budget and personnel
412
+ - Demonstrate understanding of regulatory timelines (IRB, IACUC)
413
+ - Include time for dissemination and broader impacts
414
+ - Address how progress will be monitored and assessed
415
+
416
+ **DARPA Emphasis**:
417
+ - Particularly important for DARPA proposals
418
+ - Clear technical milestones with measurable metrics
419
+ - Quarterly deliverables and reporting
420
+ - Phase-based structure with exit criteria
421
+ - Demonstration and transition planning
422
+
423
+ For detailed guidance, refer to `references/timeline_planning.md`.
424
+
425
+ ### 9. Team Qualifications and Collaboration
426
+
427
+ Demonstrate that the team has the expertise, experience, and resources to succeed.
428
+
429
+ **Essential Elements**:
430
+ - PI qualifications and relevant expertise
431
+ - Co-I and collaborator roles and contributions
432
+ - Track record in the research area
433
+ - Complementary expertise across team
434
+ - Institutional support and resources
435
+ - Prior collaboration history (if applicable)
436
+ - Mentoring and training plan (for students/postdocs)
437
+
438
+ **Writing Strategy**:
439
+ - Highlight most relevant publications and accomplishments
440
+ - Clearly define roles and responsibilities
441
+ - Show that team composition is necessary (not just convenient)
442
+ - Demonstrate successful prior collaborations
443
+ - Address how team will be managed and coordinated
444
+ - Explain institutional commitment and support
445
+
446
+ **Biosketches / CVs**:
447
+ - Follow agency-specific formats (NSF, NIH, DOE, DARPA differ)
448
+ - Highlight most relevant publications and accomplishments
449
+ - Include synergistic activities and collaborations
450
+ - Show trajectory and productivity
451
+ - Address any career gaps or interruptions
452
+
453
+ **Letters of Collaboration**:
454
+ - Specific commitments and contributions
455
+ - Demonstrates genuine partnership
456
+ - Includes resource sharing or access agreements
457
+ - Signed and on letterhead
458
+
459
+ For detailed guidance, refer to `references/team_building.md`.
460
+
461
+ ### 10. Budget and Budget Justification
462
+
463
+ Develop realistic budgets that align with the proposed work and agency guidelines.
464
+
465
+ **Budget Categories** (typical):
466
+ - **Personnel**: Salary and fringe for PI, co-Is, postdocs, students, staff
467
+ - **Equipment**: Items >$5,000 (varies by agency)
468
+ - **Travel**: Conferences, collaborations, fieldwork
469
+ - **Materials and Supplies**: Consumables, reagents, software
470
+ - **Other Direct Costs**: Publication costs, participant incentives, consulting
471
+ - **Indirect Costs (F&A)**: Institutional overhead (rates vary)
472
+ - **Subawards**: Costs for collaborating institutions
473
+
474
+ **Agency-Specific Considerations**:
475
+
476
+ **NSF**:
477
+ - Full budget justification required
478
+ - Cost sharing generally not required (but may strengthen proposal)
479
+ - Up to 2 months summer salary for faculty
480
+ - Graduate student support encouraged
481
+
482
+ **NIH**:
483
+ - Modular budgets for ≤$250K direct costs per year (R01)
484
+ - Detailed budgets for >$250K or complex awards
485
+ - Salary cap applies (~$221,900 for 2024)
486
+ - Limited to 1 month (8.33% FTE) for most PIs
487
+
488
+ **DOE**:
489
+ - Often requires cost sharing (especially ARPA-E)
490
+ - Detailed budget with quarterly breakdown
491
+ - Requires institutional commitment letters
492
+ - National laboratory collaboration budgets separate
493
+
494
+ **DARPA**:
495
+ - Detailed budgets by phase and task
496
+ - Requires supporting cost data for large procurements
497
+ - Often requires cost-plus or firm-fixed-price structures
498
+ - Travel budget for program meetings
499
+
500
+ **Budget Justification Writing**:
501
+ - Justify each line item in terms of the research plan
502
+ - Explain effort percentages for personnel
503
+ - Describe specific equipment and why necessary
504
+ - Justify travel (conferences, collaborations)
505
+ - Explain consultant roles and rates
506
+ - Show how budget aligns with timeline
507
+
508
+ For detailed budget guidance, refer to `references/budget_preparation.md`.
509
+
510
+ ## Review Criteria by Agency
511
+
512
+ Understanding how proposals are evaluated is critical for writing competitive applications.
513
+
514
+ ### NSF Review Criteria
515
+
516
+ **Intellectual Merit** (primary):
517
+ - What is the potential for the proposed activity to advance knowledge?
518
+ - How well-conceived and organized is the proposed activity?
519
+ - Is there sufficient access to resources?
520
+ - How well-qualified is the individual, team, or institution to conduct proposed activities?
521
+
522
+ **Broader Impacts** (equally important):
523
+ - What is the potential for the proposed activity to benefit society?
524
+ - To what extent does the proposal address broader impacts in meaningful ways?
525
+
526
+ **Additional Considerations**:
527
+ - Integration of research and education
528
+ - Diversity and inclusion
529
+ - Results from prior NSF support (if applicable)
530
+
531
+ ### NIH Review Criteria
532
+
533
+ **Scored Criteria** (1-9 scale, 1 = exceptional, 9 = poor):
534
+
535
+ 1. **Significance**
536
+ - Addresses important problem or critical barrier
537
+ - Improves scientific knowledge, technical capability, or clinical practice
538
+ - Aligns with NIH mission
539
+
540
+ 2. **Investigator(s)**
541
+ - Well-suited to the project
542
+ - Track record of accomplishments
543
+ - Adequate training and expertise
544
+
545
+ 3. **Innovation**
546
+ - Novel concepts, approaches, methodologies, or interventions
547
+ - Challenges existing paradigms
548
+ - Addresses important problem in creative ways
549
+
550
+ 4. **Approach**
551
+ - Well-reasoned and appropriate
552
+ - Rigorous and reproducible
553
+ - Adequately accounts for potential problems
554
+ - Feasible within timeline
555
+
556
+ 5. **Environment**
557
+ - Institutional support and resources
558
+ - Scientific environment contributes to probability of success
559
+
560
+ **Additional Review Considerations** (not scored but discussed):
561
+ - Protections for human subjects
562
+ - Inclusion of women, minorities, and children
563
+ - Vertebrate animal welfare
564
+ - Biohazards
565
+ - Resubmission response (if applicable)
566
+ - Budget and timeline appropriateness
567
+
568
+ ### DOE Review Criteria
569
+
570
+ Varies by program office, but generally includes:
571
+ - Scientific and/or technical merit
572
+ - Appropriateness of proposed method or approach
573
+ - Competency of personnel and adequacy of facilities
574
+ - Reasonableness and appropriateness of budget
575
+ - Relevance to DOE mission and program goals
576
+
577
+ ### DARPA Review Criteria
578
+
579
+ **DARPA-specific considerations**:
580
+ - Overall scientific and technical merit
581
+ - Potential contribution to DARPA mission
582
+ - Relevance to stated program goals
583
+ - Plans and capability to accomplish technology transition
584
+ - Qualifications and experience of proposed team
585
+ - Realism of proposed costs and availability of funds
586
+
587
+ **Key Questions DARPA Asks**:
588
+ - **What if you succeed?** (Impact if the research works)
589
+ - **What if you're right?** (Implications of your hypothesis)
590
+ - **Who cares?** (Why it matters for national security)
591
+
592
+ For detailed review criteria by agency, refer to `references/review_criteria.md`.
593
+
594
+ ## Writing Principles for Competitive Proposals
595
+
596
+ ### Clarity and Accessibility
597
+
598
+ **Write for Multiple Audiences**:
599
+ - Technical reviewers in your field (will scrutinize methods)
600
+ - Reviewers in related but not identical fields (need context)
601
+ - Program officers (look for alignment with agency goals)
602
+ - Panel members reading 15+ proposals (need clear organization)
603
+
604
+ **Strategies**:
605
+ - Use clear section headings and subheadings
606
+ - Start sections with overview paragraphs
607
+ - Define technical terms and abbreviations
608
+ - Use figures, diagrams, and tables to clarify complex ideas
609
+ - Avoid jargon when possible; explain when necessary
610
+ - Use topic sentences to guide readers
611
+
612
+ ### Persuasive Argumentation
613
+
614
+ **Build a Compelling Narrative**:
615
+ - Establish the problem and its importance
616
+ - Show gaps in current knowledge or approaches
617
+ - Present your solution as innovative and feasible
618
+ - Demonstrate that you're the right team
619
+ - Show that success will have significant impact
620
+
621
+ **Structure of Persuasion**:
622
+ 1. **Hook**: Capture attention with significance
623
+ 2. **Problem**: Establish what's not known or not working
624
+ 3. **Solution**: Present your innovative approach
625
+ 4. **Evidence**: Support with preliminary data
626
+ 5. **Impact**: Show transformative potential
627
+ 6. **Team**: Demonstrate capability to deliver
628
+
629
+ **Language Choices**:
630
+ - Use active voice for clarity and confidence
631
+ - Choose strong verbs (investigate, elucidate, discover vs. look at, study)
632
+ - Be confident but not arrogant (avoid "obviously," "clearly")
633
+ - Acknowledge uncertainty appropriately
634
+ - Use precise language (avoid vague terms like "several," "various")
635
+
636
+ ### Visual Communication
637
+
638
+ **Effective Use of Figures**:
639
+ - Conceptual diagrams showing research framework
640
+ - Preliminary data demonstrating feasibility
641
+ - Timelines and Gantt charts
642
+ - Workflow diagrams showing methodology
643
+ - Expected results or predictions
644
+
645
+ **Design Principles**:
646
+ - Make figures self-explanatory with complete captions
647
+ - Use consistent color schemes and fonts
648
+ - Ensure readability (large enough fonts, clear labels)
649
+ - Integrate figures with text (refer to specific figures)
650
+ - Follow agency-specific formatting requirements
651
+
652
+ ### Addressing Risk and Feasibility
653
+
654
+ **Balance Innovation and Risk**:
655
+ - Acknowledge potential challenges
656
+ - Provide alternative approaches
657
+ - Show preliminary data reducing risk
658
+ - Demonstrate expertise to handle challenges
659
+ - Include contingency plans
660
+
661
+ **Common Concerns**:
662
+ - Too ambitious for timeline/budget
663
+ - Technically infeasible
664
+ - Team lacks necessary expertise
665
+ - Preliminary data insufficient
666
+ - Methods not adequately described
667
+ - Lack of innovation or significance
668
+
669
+ ### Integration and Coherence
670
+
671
+ **Ensure All Parts Align**:
672
+ - Budget supports activities in project description
673
+ - Timeline matches aims and milestones
674
+ - Team composition matches required expertise
675
+ - Broader impacts connect to research plan
676
+ - Letters of support confirm stated collaborations
677
+
678
+ **Avoid Contradictions**:
679
+ - Preliminary data vs. stated gaps
680
+ - Claimed expertise vs. publication record
681
+ - Stated aims vs. actual methods
682
+ - Budget vs. stated activities
683
+
684
+ ## Common Proposal Types
685
+
686
+ ### NSF Proposal Types
687
+
688
+ - **Standard Research Proposals**: Most common, up to $500K and 5 years
689
+ - **CAREER Awards**: Early career faculty, integrated research/education, $400-500K over 5 years
690
+ - **Collaborative Research**: Multiple institutions, separately submitted, shared research plan
691
+ - **RAPID**: Urgent research opportunities, up to $200K, no preliminary data required
692
+ - **EAGER**: High-risk, high-reward exploratory research, up to $300K
693
+ - **EArly-concept Grants for Exploratory Research (EAGER)**: Early-stage exploratory work
694
+
695
+ ### NIH Award Mechanisms
696
+
697
+ - **R01**: Research Project Grant, $250K+ per year, 3-5 years, most common
698
+ - **R21**: Exploratory/Developmental Research, up to $275K over 2 years, no preliminary data
699
+ - **R03**: Small Grant Program, up to $100K over 2 years
700
+ - **R15**: Academic Research Enhancement Awards (AREA), for primarily undergraduate institutions
701
+ - **R35**: MIRA (Maximizing Investigators' Research Award), program-specific
702
+ - **P01**: Program Project Grant, multi-project integrated research
703
+ - **U01**: Research Project Cooperative Agreement, NIH involvement in conduct
704
+
705
+ **Fellowship Mechanisms**:
706
+ - **F30**: Predoctoral MD/PhD Fellowship
707
+ - **F31**: Predoctoral Fellowship
708
+ - **F32**: Postdoctoral Fellowship
709
+ - **K99/R00**: Pathway to Independence Award
710
+ - **K08**: Mentored Clinical Scientist Research Career Development Award
711
+
712
+ ### DOE Programs
713
+
714
+ - **Office of Science**: Basic research in physical sciences, biological sciences, computing
715
+ - **ARPA-E**: Transformative energy technologies, requires cost sharing
716
+ - **EERE**: Applied research in renewable energy and energy efficiency
717
+ - **National Laboratories**: Collaborative research with DOE labs
718
+
719
+ ### DARPA Programs
720
+
721
+ - **Varies by Office**: BTO, DSO, I2O, MTO, STO, TTO
722
+ - **Program-Specific BAAs**: Broad Agency Announcements for specific thrusts
723
+ - **Young Faculty Award (YFA)**: Early career researchers, up to $500K
724
+ - **Director's Fellowship**: High-risk, paradigm-shifting research
725
+
726
+ For detailed program guidance, refer to `references/funding_mechanisms.md`.
727
+
728
+ ## Resubmission Strategies
729
+
730
+ ### NIH Resubmission (A1)
731
+
732
+ **Introduction to Resubmission** (1 page):
733
+ - Summarize major criticisms from previous review
734
+ - Describe specific changes made in response
735
+ - Use bullet points for clarity
736
+ - Be respectful of reviewers' comments
737
+ - Highlight substantial improvements
738
+
739
+ **Strategies**:
740
+ - Address every major criticism
741
+ - Make changes visible (but don't use track changes in final)
742
+ - Strengthen weak areas (preliminary data, methods, significance)
743
+ - Consider changing aims if fundamentally flawed
744
+ - Get external feedback before resubmitting
745
+ - Use full 37-month window if needed for new data
746
+
747
+ **When Not to Resubmit**:
748
+ - Fundamental conceptual flaws
749
+ - Lack of innovation or significance
750
+ - Missing key expertise or resources
751
+ - Extensive revisions needed (consider new submission)
752
+
753
+ ### NSF Resubmission
754
+
755
+ **NSF allows resubmission after revision**:
756
+ - Address reviewer concerns in revised proposal
757
+ - No formal "introduction to resubmission" section
758
+ - May be reviewed by same or different panel
759
+ - Consider program officer feedback
760
+ - May need to wait for next submission cycle
761
+
762
+ For detailed resubmission guidance, refer to `references/resubmission_strategies.md`.
763
+
764
+ ## Common Mistakes to Avoid
765
+
766
+ ### Conceptual Mistakes
767
+
768
+ 1. **Failing to Address Review Criteria**: Not explicitly discussing significance, innovation, approach, etc.
769
+ 2. **Mismatch with Agency Mission**: Proposing research that doesn't align with agency goals
770
+ 3. **Unclear Significance**: Failing to articulate why the research matters
771
+ 4. **Insufficient Innovation**: Incremental work presented as transformative
772
+ 5. **Vague Objectives**: Goals that are not specific or measurable
773
+
774
+ ### Writing Mistakes
775
+
776
+ 1. **Poor Organization**: Lack of clear structure and flow
777
+ 2. **Excessive Jargon**: Inaccessible to broader review panel
778
+ 3. **Verbosity**: Unnecessarily complex or wordy writing
779
+ 4. **Missing Context**: Assuming reviewers know your field deeply
780
+ 5. **Inconsistent Terminology**: Using different terms for same concept
781
+
782
+ ### Technical Mistakes
783
+
784
+ 1. **Inadequate Methods**: Insufficient detail to judge feasibility
785
+ 2. **Overly Ambitious**: Too much proposed for timeline/budget
786
+ 3. **No Preliminary Data**: For mechanisms requiring demonstrated feasibility
787
+ 4. **Poor Timeline**: Unrealistic or poorly justified schedule
788
+ 5. **Misaligned Budget**: Budget doesn't support proposed activities
789
+
790
+ ### Formatting Mistakes
791
+
792
+ 1. **Exceeding Page Limits**: Automatic rejection
793
+ 2. **Wrong Font or Margins**: Non-compliant formatting
794
+ 3. **Missing Required Sections**: Incomplete application
795
+ 4. **Poor Figure Quality**: Illegible or unprofessional figures
796
+ 5. **Inconsistent Citations**: Formatting errors in references
797
+
798
+ ### Strategic Mistakes
799
+
800
+ 1. **Wrong Program or Mechanism**: Proposing to inappropriate opportunity
801
+ 2. **Weak Team**: Insufficient expertise or missing key collaborators
802
+ 3. **No Broader Impacts**: For NSF, failing to adequately address
803
+ 4. **Ignoring Program Priorities**: Not aligning with current emphasis areas
804
+ 5. **Late Submission**: Technical issues or rushed preparation
805
+
806
+ ## Workflow for Grant Development
807
+
808
+ ### Phase 1: Planning and Preparation (2-6 months before deadline)
809
+
810
+ **Activities**:
811
+ - Identify appropriate funding opportunities
812
+ - Review program announcements and requirements
813
+ - Consult with program officers (if appropriate)
814
+ - Assemble team and confirm collaborations
815
+ - Develop preliminary data (if needed)
816
+ - Outline research plan and specific aims
817
+ - Review successful proposals (if available)
818
+
819
+ **Outputs**:
820
+ - Selected funding opportunity
821
+ - Assembled team with defined roles
822
+ - Preliminary outline of specific aims
823
+ - Gap analysis of needed preliminary data
824
+
825
+ ### Phase 2: Drafting (2-3 months before deadline)
826
+
827
+ **Activities**:
828
+ - Write specific aims or objectives (start here!)
829
+ - Develop project description/research strategy
830
+ - Create figures and data visualizations
831
+ - Draft timeline and milestones
832
+ - Prepare preliminary budget
833
+ - Write broader impacts or significance sections
834
+ - Request letters of support/collaboration
835
+
836
+ **Outputs**:
837
+ - Complete first draft of narrative sections
838
+ - Preliminary budget with justification
839
+ - Timeline and management plan
840
+ - Requested letters from collaborators
841
+
842
+ ### Phase 3: Internal Review (1-2 months before deadline)
843
+
844
+ **Activities**:
845
+ - Circulate draft to co-investigators
846
+ - Seek feedback from colleagues and mentors
847
+ - Request institutional review (if required)
848
+ - Mock review session (if possible)
849
+ - Revise based on feedback
850
+ - Refine budget and budget justification
851
+
852
+ **Outputs**:
853
+ - Revised draft incorporating feedback
854
+ - Refined budget aligned with revised plan
855
+ - Identified weaknesses and mitigation strategies
856
+
857
+ ### Phase 4: Finalization (2-4 weeks before deadline)
858
+
859
+ **Activities**:
860
+ - Final revisions to narrative
861
+ - Prepare all required forms and documents
862
+ - Finalize budget and budget justification
863
+ - Compile biosketches, CVs, and current & pending
864
+ - Collect letters of support
865
+ - Prepare data management plan (if required)
866
+ - Write project summary/abstract
867
+ - Proofread all materials
868
+
869
+ **Outputs**:
870
+ - Complete, polished proposal
871
+ - All required supplementary documents
872
+ - Formatted according to agency requirements
873
+
874
+ ### Phase 5: Submission (1 week before deadline)
875
+
876
+ **Activities**:
877
+ - Institutional review and approval
878
+ - Upload to submission portal
879
+ - Verify all documents and formatting
880
+ - Submit 24-48 hours before deadline
881
+ - Confirm successful submission
882
+ - Receive confirmation and proposal number
883
+
884
+ **Outputs**:
885
+ - Submitted proposal
886
+ - Submission confirmation
887
+ - Archived copy of all materials
888
+
889
+ **Critical Tip**: Never wait until the deadline. Portals crash, files corrupt, and emergencies happen. Aim for 48 hours early.
890
+
891
+ ## Integration with Other Skills
892
+
893
+ This skill works effectively with:
894
+ - **Scientific Writing**: For clear, compelling prose
895
+ - **Literature Review**: For comprehensive background sections
896
+ - **Peer Review**: For self-assessment before submission
897
+ - **Venue Templates**: For publication-related writing style guidance
898
+
899
+ **Publication Context:** When grant work leads to publications, consult the **venue-templates** skill for venue-specific writing styles (`nature_science_style.md`, `ml_conference_style.md`, etc.) and reviewer expectations to tailor manuscripts for target journals or conferences.
900
+ - **Research Lookup**: For finding relevant citations and prior work
901
+ - **Data Visualization**: For creating effective figures
902
+
903
+ ## Resources
904
+
905
+ This skill includes comprehensive reference files covering specific aspects of grant writing:
906
+
907
+ - `references/nsf_guidelines.md`: NSF-specific requirements, formatting, and strategies
908
+ - `references/nih_guidelines.md`: NIH mechanisms, review criteria, and submission requirements
909
+ - `references/doe_guidelines.md`: DOE programs, emphasis areas, and application procedures
910
+ - `references/darpa_guidelines.md`: DARPA BAAs, program offices, and proposal strategies
911
+ - `references/broader_impacts.md`: Strategies for compelling broader impacts statements
912
+ - `references/specific_aims_guide.md`: Writing effective specific aims pages
913
+ - `references/budget_preparation.md`: Budget development and justification
914
+ - `references/review_criteria.md`: Detailed review criteria by agency
915
+ - `references/timeline_planning.md`: Creating realistic timelines and milestones
916
+ - `references/team_building.md`: Assembling and presenting effective teams
917
+ - `references/resubmission_strategies.md`: Responding to reviews and revising proposals
918
+
919
+ Load these references as needed when working on specific aspects of grant writing.
920
+
921
+ ## Templates and Assets
922
+
923
+ - `assets/nsf_project_summary_template.md`: NSF project summary structure
924
+ - `assets/nih_specific_aims_template.md`: NIH specific aims page template
925
+ - `assets/timeline_gantt_template.md`: Timeline and Gantt chart examples
926
+ - `assets/budget_justification_template.md`: Budget justification structure
927
+ - `assets/biosketch_templates/`: Agency-specific biosketch formats
928
+
929
+ ## Scripts and Tools
930
+
931
+ - `scripts/compliance_checker.py`: Verify formatting requirements
932
+ - `scripts/budget_calculator.py`: Calculate budgets with inflation and fringe
933
+ - `scripts/deadline_tracker.py`: Track submission deadlines and milestones
934
+
935
+ ---
936
+
937
+ **Final Note**: Grant writing is both an art and a science. Success requires not only excellent research ideas but also clear communication, strategic positioning, and meticulous attention to detail. Start early, seek feedback, and remember that even the best researchers face rejection—persistence and revision are key to funding success.
938
+