@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.
- package/bin/skills/citation-management/SKILL.md +1109 -0
- package/bin/skills/citation-management/assets/bibtex_template.bib +264 -0
- package/bin/skills/citation-management/assets/citation_checklist.md +386 -0
- package/bin/skills/citation-management/references/bibtex_formatting.md +908 -0
- package/bin/skills/citation-management/references/citation_validation.md +794 -0
- package/bin/skills/citation-management/references/google_scholar_search.md +725 -0
- package/bin/skills/citation-management/references/metadata_extraction.md +870 -0
- package/bin/skills/citation-management/references/pubmed_search.md +839 -0
- package/bin/skills/citation-management/scripts/doi_to_bibtex.py +182 -0
- package/bin/skills/citation-management/scripts/extract_metadata.py +570 -0
- package/bin/skills/citation-management/scripts/format_bibtex.py +349 -0
- package/bin/skills/citation-management/scripts/search_google_scholar.py +251 -0
- package/bin/skills/citation-management/scripts/search_pubmed.py +348 -0
- package/bin/skills/citation-management/scripts/validate_citations.py +494 -0
- package/bin/skills/clinical-decision-support/README.md +129 -0
- package/bin/skills/clinical-decision-support/SKILL.md +506 -0
- package/bin/skills/clinical-decision-support/assets/biomarker_report_template.tex +380 -0
- package/bin/skills/clinical-decision-support/assets/clinical_pathway_template.tex +222 -0
- package/bin/skills/clinical-decision-support/assets/cohort_analysis_template.tex +359 -0
- package/bin/skills/clinical-decision-support/assets/color_schemes.tex +149 -0
- package/bin/skills/clinical-decision-support/assets/example_gbm_cohort.md +208 -0
- package/bin/skills/clinical-decision-support/assets/recommendation_strength_guide.md +328 -0
- package/bin/skills/clinical-decision-support/assets/treatment_recommendation_template.tex +529 -0
- package/bin/skills/clinical-decision-support/references/biomarker_classification.md +719 -0
- package/bin/skills/clinical-decision-support/references/clinical_decision_algorithms.md +604 -0
- package/bin/skills/clinical-decision-support/references/evidence_synthesis.md +840 -0
- package/bin/skills/clinical-decision-support/references/outcome_analysis.md +640 -0
- package/bin/skills/clinical-decision-support/references/patient_cohort_analysis.md +427 -0
- package/bin/skills/clinical-decision-support/references/treatment_recommendations.md +521 -0
- package/bin/skills/clinical-decision-support/scripts/biomarker_classifier.py +383 -0
- package/bin/skills/clinical-decision-support/scripts/build_decision_tree.py +417 -0
- package/bin/skills/clinical-decision-support/scripts/create_cohort_tables.py +509 -0
- package/bin/skills/clinical-decision-support/scripts/generate_survival_analysis.py +441 -0
- package/bin/skills/clinical-decision-support/scripts/validate_cds_document.py +326 -0
- package/bin/skills/clinical-reports/IMPLEMENTATION_SUMMARY.md +641 -0
- package/bin/skills/clinical-reports/README.md +236 -0
- package/bin/skills/clinical-reports/SKILL.md +1127 -0
- package/bin/skills/clinical-reports/assets/case_report_template.md +352 -0
- package/bin/skills/clinical-reports/assets/clinical_trial_csr_template.md +353 -0
- package/bin/skills/clinical-reports/assets/clinical_trial_sae_template.md +359 -0
- package/bin/skills/clinical-reports/assets/consult_note_template.md +305 -0
- package/bin/skills/clinical-reports/assets/discharge_summary_template.md +453 -0
- package/bin/skills/clinical-reports/assets/hipaa_compliance_checklist.md +395 -0
- package/bin/skills/clinical-reports/assets/history_physical_template.md +305 -0
- package/bin/skills/clinical-reports/assets/lab_report_template.md +309 -0
- package/bin/skills/clinical-reports/assets/pathology_report_template.md +249 -0
- package/bin/skills/clinical-reports/assets/quality_checklist.md +338 -0
- package/bin/skills/clinical-reports/assets/radiology_report_template.md +318 -0
- package/bin/skills/clinical-reports/assets/soap_note_template.md +253 -0
- package/bin/skills/clinical-reports/references/case_report_guidelines.md +570 -0
- package/bin/skills/clinical-reports/references/clinical_trial_reporting.md +693 -0
- package/bin/skills/clinical-reports/references/data_presentation.md +530 -0
- package/bin/skills/clinical-reports/references/diagnostic_reports_standards.md +629 -0
- package/bin/skills/clinical-reports/references/medical_terminology.md +588 -0
- package/bin/skills/clinical-reports/references/patient_documentation.md +744 -0
- package/bin/skills/clinical-reports/references/peer_review_standards.md +585 -0
- package/bin/skills/clinical-reports/references/regulatory_compliance.md +577 -0
- package/bin/skills/clinical-reports/scripts/check_deidentification.py +332 -0
- package/bin/skills/clinical-reports/scripts/compliance_checker.py +78 -0
- package/bin/skills/clinical-reports/scripts/extract_clinical_data.py +97 -0
- package/bin/skills/clinical-reports/scripts/format_adverse_events.py +97 -0
- package/bin/skills/clinical-reports/scripts/generate_report_template.py +149 -0
- package/bin/skills/clinical-reports/scripts/terminology_validator.py +126 -0
- package/bin/skills/clinical-reports/scripts/validate_case_report.py +323 -0
- package/bin/skills/clinical-reports/scripts/validate_trial_report.py +88 -0
- package/bin/skills/fireworks-ai/SKILL.md +665 -0
- package/bin/skills/generate-image/SKILL.md +178 -0
- package/bin/skills/generate-image/scripts/generate_image.py +254 -0
- package/bin/skills/groq/SKILL.md +347 -0
- package/bin/skills/hypothesis-generation/SKILL.md +293 -0
- package/bin/skills/hypothesis-generation/assets/FORMATTING_GUIDE.md +672 -0
- package/bin/skills/hypothesis-generation/assets/hypothesis_generation.sty +307 -0
- package/bin/skills/hypothesis-generation/assets/hypothesis_report_template.tex +572 -0
- package/bin/skills/hypothesis-generation/references/experimental_design_patterns.md +329 -0
- package/bin/skills/hypothesis-generation/references/hypothesis_quality_criteria.md +198 -0
- package/bin/skills/hypothesis-generation/references/literature_search_strategies.md +622 -0
- package/bin/skills/latex-posters/README.md +417 -0
- package/bin/skills/latex-posters/SKILL.md +1602 -0
- package/bin/skills/latex-posters/assets/baposter_template.tex +257 -0
- package/bin/skills/latex-posters/assets/beamerposter_template.tex +244 -0
- package/bin/skills/latex-posters/assets/poster_quality_checklist.md +358 -0
- package/bin/skills/latex-posters/assets/tikzposter_template.tex +251 -0
- package/bin/skills/latex-posters/references/latex_poster_packages.md +745 -0
- package/bin/skills/latex-posters/references/poster_content_guide.md +748 -0
- package/bin/skills/latex-posters/references/poster_design_principles.md +806 -0
- package/bin/skills/latex-posters/references/poster_layout_design.md +900 -0
- package/bin/skills/latex-posters/scripts/review_poster.sh +214 -0
- package/bin/skills/literature-review/SKILL.md +641 -0
- package/bin/skills/literature-review/assets/review_template.md +412 -0
- package/bin/skills/literature-review/references/citation_styles.md +166 -0
- package/bin/skills/literature-review/references/database_strategies.md +455 -0
- package/bin/skills/literature-review/scripts/generate_pdf.py +184 -0
- package/bin/skills/literature-review/scripts/search_databases.py +310 -0
- package/bin/skills/literature-review/scripts/verify_citations.py +218 -0
- package/bin/skills/market-research-reports/SKILL.md +904 -0
- package/bin/skills/market-research-reports/assets/FORMATTING_GUIDE.md +428 -0
- package/bin/skills/market-research-reports/assets/market_report_template.tex +1380 -0
- package/bin/skills/market-research-reports/assets/market_research.sty +564 -0
- package/bin/skills/market-research-reports/references/data_analysis_patterns.md +548 -0
- package/bin/skills/market-research-reports/references/report_structure_guide.md +999 -0
- package/bin/skills/market-research-reports/references/visual_generation_guide.md +1077 -0
- package/bin/skills/market-research-reports/scripts/generate_market_visuals.py +472 -0
- package/bin/skills/markitdown/INSTALLATION_GUIDE.md +318 -0
- package/bin/skills/markitdown/LICENSE.txt +22 -0
- package/bin/skills/markitdown/OPENROUTER_INTEGRATION.md +359 -0
- package/bin/skills/markitdown/QUICK_REFERENCE.md +309 -0
- package/bin/skills/markitdown/README.md +184 -0
- package/bin/skills/markitdown/SKILL.md +486 -0
- package/bin/skills/markitdown/SKILL_SUMMARY.md +307 -0
- package/bin/skills/markitdown/assets/example_usage.md +463 -0
- package/bin/skills/markitdown/references/api_reference.md +399 -0
- package/bin/skills/markitdown/references/file_formats.md +542 -0
- package/bin/skills/markitdown/scripts/batch_convert.py +195 -0
- package/bin/skills/markitdown/scripts/convert_literature.py +262 -0
- package/bin/skills/markitdown/scripts/convert_with_ai.py +224 -0
- package/bin/skills/ml-paper-writing/SKILL.md +937 -0
- package/bin/skills/ml-paper-writing/references/checklists.md +361 -0
- package/bin/skills/ml-paper-writing/references/citation-workflow.md +562 -0
- package/bin/skills/ml-paper-writing/references/reviewer-guidelines.md +367 -0
- package/bin/skills/ml-paper-writing/references/sources.md +159 -0
- package/bin/skills/ml-paper-writing/references/writing-guide.md +476 -0
- package/bin/skills/ml-paper-writing/templates/README.md +251 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/README.md +534 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
- package/bin/skills/ml-paper-writing/templates/acl/README.md +50 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl.sty +312 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_latex.tex +377 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_lualatex.tex +101 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_natbib.bst +1940 -0
- package/bin/skills/ml-paper-writing/templates/acl/anthology.bib.txt +26 -0
- package/bin/skills/ml-paper-writing/templates/acl/custom.bib +70 -0
- package/bin/skills/ml-paper-writing/templates/acl/formatting.md +326 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/README.md +3 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/math_commands.tex +508 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/natbib.sty +1246 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/math_commands.tex +508 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/natbib.sty +1246 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/algorithm.sty +79 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/algorithmic.sty +201 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.bib +75 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.tex +662 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.bst +1443 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.sty +767 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/Makefile +36 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/main.tex +38 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/neurips.sty +382 -0
- package/bin/skills/paper-2-web/SKILL.md +491 -0
- package/bin/skills/paper-2-web/references/installation.md +141 -0
- package/bin/skills/paper-2-web/references/paper2poster.md +346 -0
- package/bin/skills/paper-2-web/references/paper2video.md +305 -0
- package/bin/skills/paper-2-web/references/paper2web.md +187 -0
- package/bin/skills/paper-2-web/references/usage_examples.md +436 -0
- package/bin/skills/peer-review/SKILL.md +702 -0
- package/bin/skills/peer-review/references/calibration_guidelines.md +196 -0
- package/bin/skills/peer-review/references/common_issues.md +552 -0
- package/bin/skills/peer-review/references/paper_mechanics.md +269 -0
- package/bin/skills/peer-review/references/reporting_standards.md +290 -0
- package/bin/skills/peer-review/references/scoring_rubric.md +239 -0
- package/bin/skills/pptx-posters/SKILL.md +410 -0
- package/bin/skills/pptx-posters/assets/poster_html_template.html +257 -0
- package/bin/skills/pptx-posters/assets/poster_quality_checklist.md +358 -0
- package/bin/skills/pptx-posters/references/poster_content_guide.md +748 -0
- package/bin/skills/pptx-posters/references/poster_design_principles.md +806 -0
- package/bin/skills/pptx-posters/references/poster_layout_design.md +900 -0
- package/bin/skills/research-grants/README.md +285 -0
- package/bin/skills/research-grants/SKILL.md +938 -0
- package/bin/skills/research-grants/assets/budget_justification_template.md +453 -0
- package/bin/skills/research-grants/assets/nih_specific_aims_template.md +166 -0
- package/bin/skills/research-grants/assets/nsf_project_summary_template.md +92 -0
- package/bin/skills/research-grants/references/broader_impacts.md +392 -0
- package/bin/skills/research-grants/references/darpa_guidelines.md +636 -0
- package/bin/skills/research-grants/references/doe_guidelines.md +586 -0
- package/bin/skills/research-grants/references/nih_guidelines.md +851 -0
- package/bin/skills/research-grants/references/nsf_guidelines.md +570 -0
- package/bin/skills/research-grants/references/specific_aims_guide.md +458 -0
- package/bin/skills/research-lookup/README.md +156 -0
- package/bin/skills/research-lookup/SKILL.md +606 -0
- package/bin/skills/research-lookup/examples.py +174 -0
- package/bin/skills/research-lookup/lookup.py +187 -0
- package/bin/skills/research-lookup/research_lookup.py +483 -0
- package/bin/skills/research-lookup/scripts/research_lookup.py +483 -0
- package/bin/skills/scholar-evaluation/SKILL.md +289 -0
- package/bin/skills/scholar-evaluation/references/evaluation_framework.md +663 -0
- package/bin/skills/scholar-evaluation/scripts/calculate_scores.py +366 -0
- package/bin/skills/scientific-critical-thinking/SKILL.md +566 -0
- package/bin/skills/scientific-critical-thinking/references/common_biases.md +364 -0
- package/bin/skills/scientific-critical-thinking/references/evidence_hierarchy.md +484 -0
- package/bin/skills/scientific-critical-thinking/references/experimental_design.md +496 -0
- package/bin/skills/scientific-critical-thinking/references/logical_fallacies.md +478 -0
- package/bin/skills/scientific-critical-thinking/references/scientific_method.md +169 -0
- package/bin/skills/scientific-critical-thinking/references/statistical_pitfalls.md +506 -0
- package/bin/skills/scientific-schematics/QUICK_REFERENCE.md +207 -0
- package/bin/skills/scientific-schematics/README.md +327 -0
- package/bin/skills/scientific-schematics/SKILL.md +615 -0
- package/bin/skills/scientific-schematics/example_usage.sh +89 -0
- package/bin/skills/scientific-schematics/references/best_practices.md +559 -0
- package/bin/skills/scientific-schematics/scripts/generate_schematic.py +135 -0
- package/bin/skills/scientific-schematics/scripts/generate_schematic_ai.py +807 -0
- package/bin/skills/scientific-schematics/test_ai_generation.py +243 -0
- package/bin/skills/scientific-slides/SKILL.md +942 -0
- package/bin/skills/scientific-slides/assets/timing_guidelines.md +597 -0
- package/bin/skills/scientific-slides/references/data_visualization_slides.md +708 -0
- package/bin/skills/scientific-slides/references/presentation_structure.md +642 -0
- package/bin/skills/scientific-slides/references/slide_design_principles.md +849 -0
- package/bin/skills/scientific-slides/references/talk_types_guide.md +687 -0
- package/bin/skills/scientific-slides/references/visual_review_workflow.md +775 -0
- package/bin/skills/scientific-slides/scripts/generate_slide_image.py +143 -0
- package/bin/skills/scientific-slides/scripts/generate_slide_image_ai.py +748 -0
- package/bin/skills/scientific-slides/scripts/pdf_to_images.py +201 -0
- package/bin/skills/scientific-slides/scripts/slides_to_pdf.py +220 -0
- package/bin/skills/scientific-slides/scripts/validate_presentation.py +367 -0
- package/bin/skills/scientific-writing/SKILL.md +714 -0
- package/bin/skills/scientific-writing/assets/REPORT_FORMATTING_GUIDE.md +574 -0
- package/bin/skills/scientific-writing/assets/scientific_report.sty +606 -0
- package/bin/skills/scientific-writing/assets/scientific_report_template.tex +449 -0
- package/bin/skills/scientific-writing/references/citation_styles.md +720 -0
- package/bin/skills/scientific-writing/references/figures_tables.md +806 -0
- package/bin/skills/scientific-writing/references/imrad_structure.md +686 -0
- package/bin/skills/scientific-writing/references/professional_report_formatting.md +664 -0
- package/bin/skills/scientific-writing/references/reporting_guidelines.md +748 -0
- package/bin/skills/scientific-writing/references/writing_principles.md +824 -0
- package/bin/skills/tinker/SKILL.md +2 -3
- package/bin/skills/together-ai/SKILL.md +722 -0
- package/bin/skills/treatment-plans/README.md +488 -0
- package/bin/skills/treatment-plans/SKILL.md +1579 -0
- package/bin/skills/treatment-plans/assets/STYLING_QUICK_REFERENCE.md +185 -0
- package/bin/skills/treatment-plans/assets/chronic_disease_management_plan.tex +665 -0
- package/bin/skills/treatment-plans/assets/general_medical_treatment_plan.tex +547 -0
- package/bin/skills/treatment-plans/assets/medical_treatment_plan.sty +222 -0
- package/bin/skills/treatment-plans/assets/mental_health_treatment_plan.tex +774 -0
- package/bin/skills/treatment-plans/assets/one_page_treatment_plan.tex +193 -0
- package/bin/skills/treatment-plans/assets/pain_management_plan.tex +799 -0
- package/bin/skills/treatment-plans/assets/perioperative_care_plan.tex +753 -0
- package/bin/skills/treatment-plans/assets/quality_checklist.md +471 -0
- package/bin/skills/treatment-plans/assets/rehabilitation_treatment_plan.tex +756 -0
- package/bin/skills/treatment-plans/references/goal_setting_frameworks.md +411 -0
- package/bin/skills/treatment-plans/references/intervention_guidelines.md +507 -0
- package/bin/skills/treatment-plans/references/regulatory_compliance.md +476 -0
- package/bin/skills/treatment-plans/references/specialty_specific_guidelines.md +655 -0
- package/bin/skills/treatment-plans/references/treatment_plan_standards.md +485 -0
- package/bin/skills/treatment-plans/scripts/check_completeness.py +322 -0
- package/bin/skills/treatment-plans/scripts/generate_template.py +233 -0
- package/bin/skills/treatment-plans/scripts/timeline_generator.py +385 -0
- package/bin/skills/treatment-plans/scripts/validate_treatment_plan.py +369 -0
- package/bin/skills/unsloth/SKILL.md +565 -47
- package/bin/skills/unsloth/docs/advanced-rl.md +222 -0
- package/bin/skills/unsloth/docs/chat-templates.md +141 -0
- package/bin/skills/unsloth/docs/datasets.md +489 -0
- package/bin/skills/unsloth/docs/docker-extended.md +99 -0
- package/bin/skills/unsloth/docs/dynamic-ggufs-2.0.md +116 -0
- package/bin/skills/unsloth/docs/dynamic-ggufs-aider.md +118 -0
- package/bin/skills/unsloth/docs/faq.md +91 -0
- package/bin/skills/unsloth/docs/fp16-vs-bf16.md +61 -0
- package/bin/skills/unsloth/docs/fp8-rl.md +224 -0
- package/bin/skills/unsloth/docs/glm-4.7-flash.md +997 -0
- package/bin/skills/unsloth/docs/inference-deployment-overview.md +17 -0
- package/bin/skills/unsloth/docs/inference.md +27 -0
- package/bin/skills/unsloth/docs/installation-docker.md +155 -0
- package/bin/skills/unsloth/docs/installation-pip.md +148 -0
- package/bin/skills/unsloth/docs/kernels-packing.md +190 -0
- package/bin/skills/unsloth/docs/kimi-k2.5.md +634 -0
- package/bin/skills/unsloth/docs/lm-studio.md +235 -0
- package/bin/skills/unsloth/docs/lora-hot-swapping.md +75 -0
- package/bin/skills/unsloth/docs/lora-hyperparameters.md +363 -0
- package/bin/skills/unsloth/docs/memory-efficient-rl.md +267 -0
- package/bin/skills/unsloth/docs/model-selection.md +70 -0
- package/bin/skills/unsloth/docs/models.md +532 -0
- package/bin/skills/unsloth/docs/multi-gpu-ddp.md +90 -0
- package/bin/skills/unsloth/docs/notebooks.md +223 -0
- package/bin/skills/unsloth/docs/overview.md +110 -0
- package/bin/skills/unsloth/docs/qwen3-coder-next-extended.md +900 -0
- package/bin/skills/unsloth/docs/qwen3-coder-next.md +900 -0
- package/bin/skills/unsloth/docs/requirements.md +45 -0
- package/bin/skills/unsloth/docs/reward-hacking.md +25 -0
- package/bin/skills/unsloth/docs/saving-to-gguf.md +138 -0
- package/bin/skills/unsloth/docs/saving-to-ollama.md +46 -0
- package/bin/skills/unsloth/docs/sglang-guide.md +278 -0
- package/bin/skills/unsloth/docs/speculative-decoding.md +70 -0
- package/bin/skills/unsloth/docs/tool-calling.md +334 -0
- package/bin/skills/unsloth/docs/troubleshooting-faq.md +204 -0
- package/bin/skills/unsloth/docs/troubleshooting-inference.md +26 -0
- package/bin/skills/unsloth/docs/tts-fine-tuning.md +149 -0
- package/bin/skills/unsloth/docs/tutorial-grpo.md +273 -0
- package/bin/skills/unsloth/docs/tutorial-llama3-ollama.md +356 -0
- package/bin/skills/unsloth/docs/vision-fine-tuning.md +135 -0
- package/bin/skills/unsloth/docs/vision-rl.md +170 -0
- package/bin/skills/unsloth/docs/vllm-engine-arguments.md +43 -0
- package/bin/skills/unsloth/docs/vllm-guide.md +98 -0
- package/bin/skills/venue-templates/SKILL.md +686 -0
- package/bin/skills/venue-templates/assets/examples/cell_summary_example.md +247 -0
- package/bin/skills/venue-templates/assets/examples/medical_structured_abstract.md +313 -0
- package/bin/skills/venue-templates/assets/examples/nature_abstract_examples.md +213 -0
- package/bin/skills/venue-templates/assets/examples/neurips_introduction_example.md +245 -0
- package/bin/skills/venue-templates/assets/grants/nih_specific_aims.tex +235 -0
- package/bin/skills/venue-templates/assets/grants/nsf_proposal_template.tex +375 -0
- package/bin/skills/venue-templates/assets/journals/nature_article.tex +171 -0
- package/bin/skills/venue-templates/assets/journals/neurips_article.tex +283 -0
- package/bin/skills/venue-templates/assets/journals/plos_one.tex +317 -0
- package/bin/skills/venue-templates/assets/posters/beamerposter_academic.tex +311 -0
- package/bin/skills/venue-templates/references/cell_press_style.md +483 -0
- package/bin/skills/venue-templates/references/conferences_formatting.md +564 -0
- package/bin/skills/venue-templates/references/cs_conference_style.md +463 -0
- package/bin/skills/venue-templates/references/grants_requirements.md +787 -0
- package/bin/skills/venue-templates/references/journals_formatting.md +486 -0
- package/bin/skills/venue-templates/references/medical_journal_styles.md +535 -0
- package/bin/skills/venue-templates/references/ml_conference_style.md +556 -0
- package/bin/skills/venue-templates/references/nature_science_style.md +405 -0
- package/bin/skills/venue-templates/references/posters_guidelines.md +628 -0
- package/bin/skills/venue-templates/references/reviewer_expectations.md +417 -0
- package/bin/skills/venue-templates/references/venue_writing_styles.md +321 -0
- package/bin/skills/venue-templates/scripts/customize_template.py +195 -0
- package/bin/skills/venue-templates/scripts/query_template.py +266 -0
- package/bin/skills/venue-templates/scripts/validate_format.py +250 -0
- package/bin/synsc +0 -0
- package/package.json +1 -1
- package/bin/skills/unsloth/references/index.md +0 -7
- package/bin/skills/unsloth/references/llms-full.md +0 -16799
- package/bin/skills/unsloth/references/llms-txt.md +0 -12044
- package/bin/skills/unsloth/references/llms.md +0 -82
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
# Paper2Web: Academic Homepage Generation
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Paper2Web converts academic papers into interactive, explorable academic homepages. Unlike traditional approaches (direct generation, template-based, or HTML conversion), Paper2Web creates layout-aware, interactive websites through an iterative refinement process.
|
|
6
|
+
|
|
7
|
+
## Core Capabilities
|
|
8
|
+
|
|
9
|
+
### 1. Layout-Aware Generation
|
|
10
|
+
- Analyzes paper structure and content organization
|
|
11
|
+
- Creates responsive, multi-section layouts
|
|
12
|
+
- Adapts design based on paper type (research article, review, preprint, etc.)
|
|
13
|
+
|
|
14
|
+
### 2. Interactive Elements
|
|
15
|
+
- Expandable sections for detailed content
|
|
16
|
+
- Interactive figures and tables
|
|
17
|
+
- Embedded citations and references
|
|
18
|
+
- Navigation menu for easy browsing
|
|
19
|
+
- Mobile-responsive design
|
|
20
|
+
|
|
21
|
+
### 3. Content Refinement
|
|
22
|
+
The system uses an iterative pipeline:
|
|
23
|
+
1. Initial content extraction and structuring
|
|
24
|
+
2. Layout generation with visual hierarchy
|
|
25
|
+
3. Interactive element integration
|
|
26
|
+
4. Aesthetic refinement
|
|
27
|
+
5. Quality assessment and validation
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
### Basic Website Generation
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
python pipeline_all.py \
|
|
35
|
+
--input-dir "path/to/papers" \
|
|
36
|
+
--output-dir "path/to/output" \
|
|
37
|
+
--model-choice 1
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Parameters
|
|
41
|
+
|
|
42
|
+
- `--input-dir`: Directory containing paper files (PDF or LaTeX)
|
|
43
|
+
- `--output-dir`: Directory for generated website files
|
|
44
|
+
- `--model-choice`: LLM model selection (1=GPT-4, 2=GPT-4.1)
|
|
45
|
+
- `--enable-logo-search`: Use Google Search API to find institution logos (optional)
|
|
46
|
+
|
|
47
|
+
### Input Format Requirements
|
|
48
|
+
|
|
49
|
+
**Supported Input Formats:**
|
|
50
|
+
1. **LaTeX source** (preferred for best results)
|
|
51
|
+
- Main file: `main.tex`
|
|
52
|
+
- Include all referenced figures, tables, and bibliography files
|
|
53
|
+
- Organize in a single directory per paper
|
|
54
|
+
|
|
55
|
+
2. **PDF files**
|
|
56
|
+
- High-quality PDF with selectable text
|
|
57
|
+
- Embedded figures should be high resolution
|
|
58
|
+
- Proper section headers and structure
|
|
59
|
+
|
|
60
|
+
**Directory Structure:**
|
|
61
|
+
```
|
|
62
|
+
input/
|
|
63
|
+
└── paper_name/
|
|
64
|
+
├── main.tex # LaTeX source
|
|
65
|
+
├── bibliography.bib # References
|
|
66
|
+
├── figures/ # Figure files
|
|
67
|
+
│ ├── fig1.png
|
|
68
|
+
│ └── fig2.pdf
|
|
69
|
+
└── tables/ # Table files
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Output Structure
|
|
73
|
+
|
|
74
|
+
Generated websites include:
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
output/paper_name/website/
|
|
78
|
+
├── index.html # Main webpage
|
|
79
|
+
├── styles.css # Styling
|
|
80
|
+
├── script.js # Interactive features
|
|
81
|
+
├── assets/ # Images and media
|
|
82
|
+
│ ├── figures/
|
|
83
|
+
│ └── logos/
|
|
84
|
+
└── data/ # Structured data (optional)
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Customization Options
|
|
88
|
+
|
|
89
|
+
### Visual Design
|
|
90
|
+
The generated websites automatically include:
|
|
91
|
+
- Professional color schemes based on paper content
|
|
92
|
+
- Typography optimized for readability
|
|
93
|
+
- Consistent spacing and visual hierarchy
|
|
94
|
+
- Dark mode support (optional)
|
|
95
|
+
|
|
96
|
+
### Content Sections
|
|
97
|
+
Standard sections include:
|
|
98
|
+
- Abstract
|
|
99
|
+
- Key findings/contributions
|
|
100
|
+
- Methodology overview
|
|
101
|
+
- Results and visualizations
|
|
102
|
+
- Discussion and implications
|
|
103
|
+
- References and citations
|
|
104
|
+
- Author information and affiliations
|
|
105
|
+
|
|
106
|
+
Additional sections are automatically added based on paper content:
|
|
107
|
+
- Code repositories
|
|
108
|
+
- Dataset links
|
|
109
|
+
- Supplementary materials
|
|
110
|
+
- Related publications
|
|
111
|
+
|
|
112
|
+
## Quality Assessment
|
|
113
|
+
|
|
114
|
+
Paper2Web includes built-in evaluation:
|
|
115
|
+
|
|
116
|
+
### Aesthetic Metrics
|
|
117
|
+
- Layout balance and spacing
|
|
118
|
+
- Color harmony
|
|
119
|
+
- Typography consistency
|
|
120
|
+
- Visual hierarchy effectiveness
|
|
121
|
+
|
|
122
|
+
### Informativeness Metrics
|
|
123
|
+
- Content completeness
|
|
124
|
+
- Key finding clarity
|
|
125
|
+
- Method explanation adequacy
|
|
126
|
+
- Results presentation quality
|
|
127
|
+
|
|
128
|
+
### Technical Metrics
|
|
129
|
+
- Page load time
|
|
130
|
+
- Mobile responsiveness
|
|
131
|
+
- Browser compatibility
|
|
132
|
+
- Accessibility compliance
|
|
133
|
+
|
|
134
|
+
## Advanced Features
|
|
135
|
+
|
|
136
|
+
### Logo Discovery
|
|
137
|
+
When enabled with Google Search API:
|
|
138
|
+
- Automatically finds institution logos
|
|
139
|
+
- Matches author affiliations
|
|
140
|
+
- Downloads and optimizes logo images
|
|
141
|
+
- Integrates into website header
|
|
142
|
+
|
|
143
|
+
### Citation Integration
|
|
144
|
+
- Interactive reference list
|
|
145
|
+
- Hover previews for citations
|
|
146
|
+
- Links to DOI and external sources
|
|
147
|
+
- Citation count tracking (if available)
|
|
148
|
+
|
|
149
|
+
### Figure Enhancement
|
|
150
|
+
- High-resolution figure rendering
|
|
151
|
+
- Zoom and pan functionality
|
|
152
|
+
- Caption and description integration
|
|
153
|
+
- Multi-panel figure navigation
|
|
154
|
+
|
|
155
|
+
## Best Practices
|
|
156
|
+
|
|
157
|
+
### Input Preparation
|
|
158
|
+
1. **Use LaTeX when possible**: Provides best structure extraction
|
|
159
|
+
2. **Include all assets**: Figures, tables, and bibliography files
|
|
160
|
+
3. **Clean formatting**: Remove compilation artifacts and temporary files
|
|
161
|
+
4. **High-quality figures**: Use vector formats (PDF, SVG) when available
|
|
162
|
+
|
|
163
|
+
### Model Selection
|
|
164
|
+
- **GPT-4**: Best balance of quality and cost
|
|
165
|
+
- **GPT-4.1**: Latest features, higher cost
|
|
166
|
+
- **GPT-3.5-turbo**: Faster processing, acceptable for simple papers
|
|
167
|
+
|
|
168
|
+
### Output Optimization
|
|
169
|
+
1. Review generated content for accuracy
|
|
170
|
+
2. Check that all figures render correctly
|
|
171
|
+
3. Test interactive elements functionality
|
|
172
|
+
4. Verify mobile responsiveness
|
|
173
|
+
5. Validate external links
|
|
174
|
+
|
|
175
|
+
## Limitations
|
|
176
|
+
|
|
177
|
+
- Complex mathematical equations may require manual review
|
|
178
|
+
- Multi-column layouts in PDF may affect extraction quality
|
|
179
|
+
- Large papers (>50 pages) may require extended processing time
|
|
180
|
+
- Some specialized figure types may need manual adjustment
|
|
181
|
+
|
|
182
|
+
## Integration with Other Components
|
|
183
|
+
|
|
184
|
+
Paper2Web can be combined with:
|
|
185
|
+
- **Paper2Video**: Generate companion video for the website
|
|
186
|
+
- **Paper2Poster**: Create matching poster design
|
|
187
|
+
- **AutoPR**: Generate promotional content linking to website
|
|
@@ -0,0 +1,436 @@
|
|
|
1
|
+
# Usage Examples and Workflows
|
|
2
|
+
|
|
3
|
+
## Complete Workflow Examples
|
|
4
|
+
|
|
5
|
+
### Example 1: Conference Presentation Package
|
|
6
|
+
|
|
7
|
+
**Scenario**: Preparing for a major conference presentation with website, poster, and video.
|
|
8
|
+
|
|
9
|
+
**User Request**: "I need to create a complete presentation package for my NeurIPS paper submission. Generate a website, poster, and video presentation."
|
|
10
|
+
|
|
11
|
+
**Workflow**:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Step 1: Organize paper files
|
|
15
|
+
mkdir -p input/neurips2025_paper
|
|
16
|
+
cp main.tex input/neurips2025_paper/
|
|
17
|
+
cp -r figures/ input/neurips2025_paper/
|
|
18
|
+
cp -r tables/ input/neurips2025_paper/
|
|
19
|
+
cp bibliography.bib input/neurips2025_paper/
|
|
20
|
+
|
|
21
|
+
# Step 2: Generate all components
|
|
22
|
+
python pipeline_all.py \
|
|
23
|
+
--input-dir input/neurips2025_paper \
|
|
24
|
+
--output-dir output/ \
|
|
25
|
+
--model-choice 1 \
|
|
26
|
+
--generate-website \
|
|
27
|
+
--generate-poster \
|
|
28
|
+
--generate-video \
|
|
29
|
+
--poster-width-inches 48 \
|
|
30
|
+
--poster-height-inches 36 \
|
|
31
|
+
--enable-logo-search
|
|
32
|
+
|
|
33
|
+
# Step 3: Review outputs
|
|
34
|
+
ls -R output/neurips2025_paper/
|
|
35
|
+
# - website/index.html
|
|
36
|
+
# - poster/poster_final.pdf
|
|
37
|
+
# - video/final_video.mp4
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
**Output**:
|
|
41
|
+
- Interactive website showcasing research
|
|
42
|
+
- 4'×3' conference poster (print-ready)
|
|
43
|
+
- 12-minute presentation video
|
|
44
|
+
- Processing time: ~45 minutes (without talking-head)
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
### Example 2: Quick Website for Preprint
|
|
49
|
+
|
|
50
|
+
**Scenario**: Creating an explorable homepage for a bioRxiv preprint.
|
|
51
|
+
|
|
52
|
+
**User Request**: "Convert my genomics preprint to an interactive website to accompany the bioRxiv submission."
|
|
53
|
+
|
|
54
|
+
**Workflow**:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# Using PDF input (LaTeX not available)
|
|
58
|
+
python pipeline_all.py \
|
|
59
|
+
--input-dir papers/genomics_preprint/ \
|
|
60
|
+
--output-dir output/genomics_web/ \
|
|
61
|
+
--model-choice 1 \
|
|
62
|
+
--generate-website
|
|
63
|
+
|
|
64
|
+
# Deploy to GitHub Pages or personal server
|
|
65
|
+
cd output/genomics_web/website/
|
|
66
|
+
# Add link to bioRxiv paper, data repositories, code
|
|
67
|
+
# Upload to hosting service
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
**Tips**:
|
|
71
|
+
- Include links to bioRxiv DOI
|
|
72
|
+
- Add GitHub repository links
|
|
73
|
+
- Include data availability section
|
|
74
|
+
- Embed interactive visualizations if possible
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
### Example 3: Video Abstract for Journal Submission
|
|
79
|
+
|
|
80
|
+
**Scenario**: Creating a video abstract for a journal that encourages multimedia submissions.
|
|
81
|
+
|
|
82
|
+
**User Request**: "Generate a 5-minute video abstract for my Nature Communications submission."
|
|
83
|
+
|
|
84
|
+
**Workflow**:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
# Generate concise video focusing on key findings
|
|
88
|
+
python pipeline_light.py \
|
|
89
|
+
--model_name_t gpt-4.1 \
|
|
90
|
+
--model_name_v gpt-4.1 \
|
|
91
|
+
--result_dir output/video_abstract/ \
|
|
92
|
+
--paper_latex_root papers/nature_comms/ \
|
|
93
|
+
--video-duration 300 \
|
|
94
|
+
--slides-per-minute 3
|
|
95
|
+
|
|
96
|
+
# Optional: Add custom intro/outro slides
|
|
97
|
+
# Optional: Include talking-head for introduction
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**Output**:
|
|
101
|
+
- 5-minute video abstract
|
|
102
|
+
- Focus on visual results
|
|
103
|
+
- Clear, accessible narration
|
|
104
|
+
- Journal-ready format
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
### Example 4: Multi-Paper Website Generation
|
|
109
|
+
|
|
110
|
+
**Scenario**: Creating websites for multiple papers from a research group.
|
|
111
|
+
|
|
112
|
+
**User Request**: "Generate websites for all 5 papers our lab published this year."
|
|
113
|
+
|
|
114
|
+
**Workflow**:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
# Organize papers
|
|
118
|
+
mkdir -p batch_input/
|
|
119
|
+
# Create subdirectories: paper1/, paper2/, paper3/, paper4/, paper5/
|
|
120
|
+
# Each with their LaTeX sources
|
|
121
|
+
|
|
122
|
+
# Batch process
|
|
123
|
+
python pipeline_all.py \
|
|
124
|
+
--input-dir batch_input/ \
|
|
125
|
+
--output-dir batch_output/ \
|
|
126
|
+
--model-choice 1 \
|
|
127
|
+
--generate-website \
|
|
128
|
+
--enable-logo-search
|
|
129
|
+
|
|
130
|
+
# Creates:
|
|
131
|
+
# batch_output/paper1/website/
|
|
132
|
+
# batch_output/paper2/website/
|
|
133
|
+
# batch_output/paper3/website/
|
|
134
|
+
# batch_output/paper4/website/
|
|
135
|
+
# batch_output/paper5/website/
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
**Best Practice**:
|
|
139
|
+
- Use consistent naming conventions
|
|
140
|
+
- Process overnight for large batches
|
|
141
|
+
- Review each website for accuracy
|
|
142
|
+
- Deploy to unified lab website
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
### Example 5: Poster for Virtual Conference
|
|
147
|
+
|
|
148
|
+
**Scenario**: Creating a digital poster for a virtual conference with interactive elements.
|
|
149
|
+
|
|
150
|
+
**User Request**: "Create a poster for the virtual ISMB conference with clickable links to code and data."
|
|
151
|
+
|
|
152
|
+
**Workflow**:
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
# Generate poster with QR codes and links
|
|
156
|
+
python pipeline_all.py \
|
|
157
|
+
--input-dir papers/ismb_submission/ \
|
|
158
|
+
--output-dir output/ismb_poster/ \
|
|
159
|
+
--model-choice 1 \
|
|
160
|
+
--generate-poster \
|
|
161
|
+
--poster-width-inches 48 \
|
|
162
|
+
--poster-height-inches 36 \
|
|
163
|
+
--enable-qr-codes
|
|
164
|
+
|
|
165
|
+
# Manually add QR codes to:
|
|
166
|
+
# - GitHub repository
|
|
167
|
+
# - Interactive results dashboard
|
|
168
|
+
# - Supplementary data
|
|
169
|
+
# - Video presentation
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
**Digital Enhancements**:
|
|
173
|
+
- PDF with embedded hyperlinks
|
|
174
|
+
- High-resolution PNG for virtual platform
|
|
175
|
+
- Separate PDF with video links for download
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
### Example 6: Promotional Video Clip
|
|
180
|
+
|
|
181
|
+
**Scenario**: Creating a short promotional video for social media.
|
|
182
|
+
|
|
183
|
+
**User Request**: "Generate a 2-minute highlight video of our Cell paper for Twitter."
|
|
184
|
+
|
|
185
|
+
**Workflow**:
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
# Generate short, engaging video
|
|
189
|
+
python pipeline_light.py \
|
|
190
|
+
--model_name_t gpt-4.1 \
|
|
191
|
+
--model_name_v gpt-4.1 \
|
|
192
|
+
--result_dir output/promo_video/ \
|
|
193
|
+
--paper_latex_root papers/cell_paper/ \
|
|
194
|
+
--video-duration 120 \
|
|
195
|
+
--presentation-style public
|
|
196
|
+
|
|
197
|
+
# Post-process:
|
|
198
|
+
# - Extract key 30-second clip for Twitter
|
|
199
|
+
# - Add captions for sound-off viewing
|
|
200
|
+
# - Optimize file size for social media
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
**Social Media Optimization**:
|
|
204
|
+
- Square format (1:1) for Instagram
|
|
205
|
+
- Horizontal format (16:9) for Twitter/LinkedIn
|
|
206
|
+
- Vertical format (9:16) for TikTok/Stories
|
|
207
|
+
- Add text overlays for key findings
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
## Common Use Case Patterns
|
|
212
|
+
|
|
213
|
+
### Pattern 1: LaTeX Paper → Full Package
|
|
214
|
+
|
|
215
|
+
**Input**: LaTeX source with all assets
|
|
216
|
+
**Output**: Website + Poster + Video
|
|
217
|
+
**Time**: 45-90 minutes
|
|
218
|
+
**Best for**: Major publications, conference presentations
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
python pipeline_all.py \
|
|
222
|
+
--input-dir [latex_dir] \
|
|
223
|
+
--output-dir [output_dir] \
|
|
224
|
+
--model-choice 1 \
|
|
225
|
+
--generate-website \
|
|
226
|
+
--generate-poster \
|
|
227
|
+
--generate-video
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
### Pattern 2: PDF → Interactive Website
|
|
233
|
+
|
|
234
|
+
**Input**: Published PDF paper
|
|
235
|
+
**Output**: Explorable website
|
|
236
|
+
**Time**: 15-30 minutes
|
|
237
|
+
**Best for**: Post-publication promotion, preprint enhancement
|
|
238
|
+
|
|
239
|
+
```bash
|
|
240
|
+
python pipeline_all.py \
|
|
241
|
+
--input-dir [pdf_dir] \
|
|
242
|
+
--output-dir [output_dir] \
|
|
243
|
+
--model-choice 1 \
|
|
244
|
+
--generate-website
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
### Pattern 3: LaTeX → Conference Poster
|
|
250
|
+
|
|
251
|
+
**Input**: LaTeX paper
|
|
252
|
+
**Output**: Print-ready poster (custom size)
|
|
253
|
+
**Time**: 10-20 minutes
|
|
254
|
+
**Best for**: Conference poster sessions
|
|
255
|
+
|
|
256
|
+
```bash
|
|
257
|
+
python pipeline_all.py \
|
|
258
|
+
--input-dir [latex_dir] \
|
|
259
|
+
--output-dir [output_dir] \
|
|
260
|
+
--model-choice 1 \
|
|
261
|
+
--generate-poster \
|
|
262
|
+
--poster-width-inches [width] \
|
|
263
|
+
--poster-height-inches [height]
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
### Pattern 4: LaTeX → Presentation Video
|
|
269
|
+
|
|
270
|
+
**Input**: LaTeX paper
|
|
271
|
+
**Output**: Narrated presentation video
|
|
272
|
+
**Time**: 20-60 minutes (without talking-head)
|
|
273
|
+
**Best for**: Video abstracts, online presentations, course materials
|
|
274
|
+
|
|
275
|
+
```bash
|
|
276
|
+
python pipeline_light.py \
|
|
277
|
+
--model_name_t gpt-4.1 \
|
|
278
|
+
--model_name_v gpt-4.1 \
|
|
279
|
+
--result_dir [output_dir] \
|
|
280
|
+
--paper_latex_root [latex_dir]
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
## Platform-Specific Outputs
|
|
286
|
+
|
|
287
|
+
### Twitter/X Promotional Content
|
|
288
|
+
|
|
289
|
+
The system auto-detects Twitter targeting for numeric folder names:
|
|
290
|
+
|
|
291
|
+
```bash
|
|
292
|
+
# Create Twitter-optimized content
|
|
293
|
+
mkdir -p input/001_twitter_post/
|
|
294
|
+
# System generates English promotional content
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
**Generated Output**:
|
|
298
|
+
- Short, engaging summary
|
|
299
|
+
- Key figure highlights
|
|
300
|
+
- Hashtag recommendations
|
|
301
|
+
- Thread-ready format
|
|
302
|
+
|
|
303
|
+
---
|
|
304
|
+
|
|
305
|
+
### Xiaohongshu (小红书) Content
|
|
306
|
+
|
|
307
|
+
For Chinese social media, use alphanumeric folder names:
|
|
308
|
+
|
|
309
|
+
```bash
|
|
310
|
+
# Create Xiaohongshu-optimized content
|
|
311
|
+
mkdir -p input/xhs_genomics/
|
|
312
|
+
# System generates Chinese promotional content
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
**Generated Output**:
|
|
316
|
+
- Chinese language content
|
|
317
|
+
- Platform-appropriate formatting
|
|
318
|
+
- Visual-first presentation
|
|
319
|
+
- Engagement optimizations
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
323
|
+
## Troubleshooting Common Scenarios
|
|
324
|
+
|
|
325
|
+
### Scenario: Large Paper (>50 pages)
|
|
326
|
+
|
|
327
|
+
**Challenge**: Processing time and content selection
|
|
328
|
+
**Solution**:
|
|
329
|
+
```bash
|
|
330
|
+
# Option 1: Focus on key sections
|
|
331
|
+
# Edit LaTeX to comment out less critical sections
|
|
332
|
+
|
|
333
|
+
# Option 2: Process in parts
|
|
334
|
+
# Generate website for overview
|
|
335
|
+
# Generate separate detailed videos for methods/results
|
|
336
|
+
|
|
337
|
+
# Option 3: Use faster model for initial pass
|
|
338
|
+
# Review and regenerate critical components with better model
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
---
|
|
342
|
+
|
|
343
|
+
### Scenario: Complex Mathematical Content
|
|
344
|
+
|
|
345
|
+
**Challenge**: Equations may not render perfectly
|
|
346
|
+
**Solution**:
|
|
347
|
+
- Use LaTeX input (not PDF) for best equation handling
|
|
348
|
+
- Review generated content for equation accuracy
|
|
349
|
+
- Manually adjust complex equations if needed
|
|
350
|
+
- Consider using figure screenshots for critical equations
|
|
351
|
+
|
|
352
|
+
---
|
|
353
|
+
|
|
354
|
+
### Scenario: Non-Standard Paper Structure
|
|
355
|
+
|
|
356
|
+
**Challenge**: Paper doesn't follow standard IMRAD format
|
|
357
|
+
**Solution**:
|
|
358
|
+
- Provide custom section guidance in paper metadata
|
|
359
|
+
- Review generated structure and adjust
|
|
360
|
+
- Use more powerful model (GPT-4.1) for better adaptation
|
|
361
|
+
- Consider manual section annotation in LaTeX comments
|
|
362
|
+
|
|
363
|
+
---
|
|
364
|
+
|
|
365
|
+
### Scenario: Limited API Budget
|
|
366
|
+
|
|
367
|
+
**Challenge**: Reducing costs while maintaining quality
|
|
368
|
+
**Solution**:
|
|
369
|
+
```bash
|
|
370
|
+
# Use GPT-3.5-turbo for simple papers
|
|
371
|
+
python pipeline_all.py \
|
|
372
|
+
--input-dir [paper_dir] \
|
|
373
|
+
--output-dir [output_dir] \
|
|
374
|
+
--model-choice 3
|
|
375
|
+
|
|
376
|
+
# Generate only needed components
|
|
377
|
+
# Website-only (cheapest)
|
|
378
|
+
# Poster-only (moderate)
|
|
379
|
+
# Video without talking-head (moderate)
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
### Scenario: Tight Deadline
|
|
385
|
+
|
|
386
|
+
**Challenge**: Need outputs quickly
|
|
387
|
+
**Solution**:
|
|
388
|
+
```bash
|
|
389
|
+
# Parallel processing if multiple papers
|
|
390
|
+
# Use faster models (GPT-3.5-turbo)
|
|
391
|
+
# Generate only essential component first
|
|
392
|
+
# Skip optional features (logo search, talking-head)
|
|
393
|
+
|
|
394
|
+
python pipeline_light.py \
|
|
395
|
+
--model_name_t gpt-3.5-turbo \
|
|
396
|
+
--model_name_v gpt-3.5-turbo \
|
|
397
|
+
--result_dir [output_dir] \
|
|
398
|
+
--paper_latex_root [latex_dir]
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
**Priority Order**:
|
|
402
|
+
1. Website (fastest, most versatile)
|
|
403
|
+
2. Poster (moderate speed, print deadline)
|
|
404
|
+
3. Video (slowest, can be generated later)
|
|
405
|
+
|
|
406
|
+
---
|
|
407
|
+
|
|
408
|
+
## Quality Optimization Tips
|
|
409
|
+
|
|
410
|
+
### For Best Website Results
|
|
411
|
+
1. Use LaTeX input with all assets
|
|
412
|
+
2. Include high-resolution figures
|
|
413
|
+
3. Ensure paper has clear section structure
|
|
414
|
+
4. Enable logo search for professional appearance
|
|
415
|
+
5. Review and test all interactive elements
|
|
416
|
+
|
|
417
|
+
### For Best Poster Results
|
|
418
|
+
1. Provide high-resolution figures (300+ DPI)
|
|
419
|
+
2. Specify exact poster dimensions needed
|
|
420
|
+
3. Include institution branding information
|
|
421
|
+
4. Use professional color scheme
|
|
422
|
+
5. Test print small preview before full poster
|
|
423
|
+
|
|
424
|
+
### For Best Video Results
|
|
425
|
+
1. Use LaTeX for clearest content extraction
|
|
426
|
+
2. Specify target duration appropriately
|
|
427
|
+
3. Review script before video generation
|
|
428
|
+
4. Choose appropriate presentation style
|
|
429
|
+
5. Test audio quality and pacing
|
|
430
|
+
|
|
431
|
+
### For Best Overall Results
|
|
432
|
+
1. Start with clean, well-organized LaTeX source
|
|
433
|
+
2. Use GPT-4 or GPT-4.1 for highest quality
|
|
434
|
+
3. Review all outputs before finalizing
|
|
435
|
+
4. Iterate on any component that needs adjustment
|
|
436
|
+
5. Combine components for cohesive presentation package
|