medsci-skills 4.1.0
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/LICENSE +50 -0
- package/README.md +602 -0
- package/README_FIRST.md +27 -0
- package/bin/medsci-skills.js +159 -0
- package/installers/install-macos.command +19 -0
- package/installers/install-windows.cmd +26 -0
- package/installers/install-windows.ps1 +17 -0
- package/installers/install.py +218 -0
- package/metadata/skills_catalog.json +452 -0
- package/package.json +48 -0
- package/skills/academic-aio/SKILL.md +408 -0
- package/skills/academic-aio/references/case_studies/kjr_mllm_2025.md +82 -0
- package/skills/academic-aio/references/checklists/AIO_GENERAL.md +354 -0
- package/skills/academic-aio/references/journal_summarybox_templates.yaml +126 -0
- package/skills/academic-aio/references/oac_funding_checklist.yaml +129 -0
- package/skills/academic-aio/references/reporting_guideline_mapping.md +39 -0
- package/skills/academic-aio/references/schema_markup_templates/CodeRepository.jsonld +32 -0
- package/skills/academic-aio/references/schema_markup_templates/Dataset.jsonld +36 -0
- package/skills/academic-aio/references/schema_markup_templates/Person.jsonld +30 -0
- package/skills/academic-aio/references/schema_markup_templates/README.md +43 -0
- package/skills/academic-aio/references/schema_markup_templates/ScholarlyArticle.jsonld +55 -0
- package/skills/academic-aio/scripts/batch_metadata_audit.py +169 -0
- package/skills/academic-aio/scripts/validate_schema.py +118 -0
- package/skills/academic-aio/skill.yml +36 -0
- package/skills/academic-aio/templates/aio_audit_checklist.md.j2 +108 -0
- package/skills/add-journal/SKILL.md +482 -0
- package/skills/add-journal/skill.yml +33 -0
- package/skills/analyze-stats/SKILL.md +598 -0
- package/skills/analyze-stats/references/analysis_guides/missing_data.md +109 -0
- package/skills/analyze-stats/references/analysis_guides/nhis_icd10_mapping.md +247 -0
- package/skills/analyze-stats/references/analysis_guides/propensity_score.md +132 -0
- package/skills/analyze-stats/references/analysis_guides/regression.md +115 -0
- package/skills/analyze-stats/references/analysis_guides/repeated_measures.md +160 -0
- package/skills/analyze-stats/references/analysis_guides/survey_weighted.md +366 -0
- package/skills/analyze-stats/references/analysis_guides/test_selection.md +86 -0
- package/skills/analyze-stats/references/style/figure_style.mplstyle +69 -0
- package/skills/analyze-stats/references/style/theme_publication.R +147 -0
- package/skills/analyze-stats/references/table-standards/journal-profiles/ajr.yaml +51 -0
- package/skills/analyze-stats/references/table-standards/journal-profiles/european_radiology.yaml +55 -0
- package/skills/analyze-stats/references/table-standards/journal-profiles/jama.yaml +66 -0
- package/skills/analyze-stats/references/table-standards/journal-profiles/lancet.yaml +57 -0
- package/skills/analyze-stats/references/table-standards/journal-profiles/nejm.yaml +51 -0
- package/skills/analyze-stats/references/table-standards/journal-profiles/radiology.yaml +66 -0
- package/skills/analyze-stats/references/table-standards/table-standards.md +287 -0
- package/skills/analyze-stats/references/table-standards/table-types/diagnostic_accuracy.md +36 -0
- package/skills/analyze-stats/references/table-standards/table-types/meta_analysis.md +58 -0
- package/skills/analyze-stats/references/table-standards/table-types/model_comparison.md +36 -0
- package/skills/analyze-stats/references/table-standards/table-types/regression_results.md +50 -0
- package/skills/analyze-stats/references/table-standards/table-types/table1_demographics.md +51 -0
- package/skills/analyze-stats/references/table-standards/tool-comparison.md +79 -0
- package/skills/analyze-stats/references/templates/agreement_analysis.py +436 -0
- package/skills/analyze-stats/references/templates/dca_plot.R +237 -0
- package/skills/analyze-stats/references/templates/diagnostic_accuracy.py +401 -0
- package/skills/analyze-stats/references/templates/dta_meta_analysis.R +384 -0
- package/skills/analyze-stats/references/templates/forest_plot.py +412 -0
- package/skills/analyze-stats/references/templates/likert_summary.py +356 -0
- package/skills/analyze-stats/references/templates/meta_analysis.R +365 -0
- package/skills/analyze-stats/references/templates/propensity_score.py +478 -0
- package/skills/analyze-stats/references/templates/regression.py +425 -0
- package/skills/analyze-stats/references/templates/repeated_measures.py +434 -0
- package/skills/analyze-stats/references/templates/sample_size.R +382 -0
- package/skills/analyze-stats/references/templates/survey_weighted_analysis.py +411 -0
- package/skills/analyze-stats/references/templates/survival_analysis.py +325 -0
- package/skills/analyze-stats/references/templates/table1_demographics.py +287 -0
- package/skills/analyze-stats/scripts/check_generated_code.py +335 -0
- package/skills/analyze-stats/skill.yml +38 -0
- package/skills/analyze-stats/tests/fixtures/gen_bad.R +16 -0
- package/skills/analyze-stats/tests/fixtures/gen_bad.py +24 -0
- package/skills/analyze-stats/tests/fixtures/gen_clean.py +21 -0
- package/skills/analyze-stats/tests/test_generated_code.sh +59 -0
- package/skills/analyze-stats/tests/test_survival_template.sh +53 -0
- package/skills/author-strategy/SKILL.md +117 -0
- package/skills/author-strategy/analyze_patterns.py +303 -0
- package/skills/author-strategy/fetch_pubmed.py +374 -0
- package/skills/author-strategy/skill.yml +34 -0
- package/skills/batch-cohort/SKILL.md +223 -0
- package/skills/batch-cohort/references/base_template_knhanes.R +210 -0
- package/skills/batch-cohort/references/batch_template_generator.R +222 -0
- package/skills/batch-cohort/references/variable_coding_registry.md +136 -0
- package/skills/batch-cohort/skill.yml +35 -0
- package/skills/calc-sample-size/SKILL.md +491 -0
- package/skills/calc-sample-size/references/formulas.md +655 -0
- package/skills/calc-sample-size/references/observational_cohort.md +49 -0
- package/skills/calc-sample-size/skill.yml +51 -0
- package/skills/check-reporting/SKILL.md +534 -0
- package/skills/check-reporting/references/LICENSES.md +41 -0
- package/skills/check-reporting/references/checklists/AMSTAR2.md +54 -0
- package/skills/check-reporting/references/checklists/ARRIVE_2.md +234 -0
- package/skills/check-reporting/references/checklists/CARE.md +102 -0
- package/skills/check-reporting/references/checklists/CLAIM_2024.md +128 -0
- package/skills/check-reporting/references/checklists/CLEAR.md +113 -0
- package/skills/check-reporting/references/checklists/CONSORT.md +86 -0
- package/skills/check-reporting/references/checklists/COSMIN_RoB.md +136 -0
- package/skills/check-reporting/references/checklists/GRRAS.md +61 -0
- package/skills/check-reporting/references/checklists/MI_CLEAR_LLM.md +167 -0
- package/skills/check-reporting/references/checklists/MOOSE.md +85 -0
- package/skills/check-reporting/references/checklists/NOS.md +88 -0
- package/skills/check-reporting/references/checklists/PRISMA_2020.md +135 -0
- package/skills/check-reporting/references/checklists/PRISMA_DTA.md +36 -0
- package/skills/check-reporting/references/checklists/PRISMA_P.md +56 -0
- package/skills/check-reporting/references/checklists/PROBAST.md +75 -0
- package/skills/check-reporting/references/checklists/PROBAST_AI.md +130 -0
- package/skills/check-reporting/references/checklists/QUADAS2.md +77 -0
- package/skills/check-reporting/references/checklists/QUADAS_C.md +131 -0
- package/skills/check-reporting/references/checklists/ROBINS_E.md +179 -0
- package/skills/check-reporting/references/checklists/ROBINS_I.md +87 -0
- package/skills/check-reporting/references/checklists/ROBIS.md +114 -0
- package/skills/check-reporting/references/checklists/ROB_ME.md +126 -0
- package/skills/check-reporting/references/checklists/RoB2.md +79 -0
- package/skills/check-reporting/references/checklists/RoB_NMA.md +96 -0
- package/skills/check-reporting/references/checklists/SPIRIT.md +112 -0
- package/skills/check-reporting/references/checklists/SQUIRE_2.md +68 -0
- package/skills/check-reporting/references/checklists/STARD.md +129 -0
- package/skills/check-reporting/references/checklists/STARD_AI.md +211 -0
- package/skills/check-reporting/references/checklists/STROBE.md +80 -0
- package/skills/check-reporting/references/checklists/SWiM.md +33 -0
- package/skills/check-reporting/references/checklists/TRIPOD.md +157 -0
- package/skills/check-reporting/references/checklists/TRIPOD_AI.md +140 -0
- package/skills/check-reporting/references/step4c_registration_timing.md +93 -0
- package/skills/check-reporting/references/step4d_prisma_figure_audit.md +137 -0
- package/skills/check-reporting/scripts/check_checklist_exists.py +183 -0
- package/skills/check-reporting/scripts/check_checklist_version.py +168 -0
- package/skills/check-reporting/scripts/check_framework_naming.py +206 -0
- package/skills/check-reporting/scripts/check_prisma_figure.py +209 -0
- package/skills/check-reporting/scripts/prisma_cascade_check.py +274 -0
- package/skills/check-reporting/skill.yml +41 -0
- package/skills/check-reporting/tests/fixtures/framework_bad.md +8 -0
- package/skills/check-reporting/tests/fixtures/framework_clean.md +7 -0
- package/skills/check-reporting/tests/test_checklist_fail_fast.sh +77 -0
- package/skills/check-reporting/tests/test_checklist_version.sh +72 -0
- package/skills/check-reporting/tests/test_framework_naming.sh +45 -0
- package/skills/check-reporting/tests/test_prisma_cascade.sh +104 -0
- package/skills/clean-data/SKILL.md +180 -0
- package/skills/clean-data/references/cleaning_patterns.md +299 -0
- package/skills/clean-data/references/profiling_template.py +304 -0
- package/skills/clean-data/scripts/check_structural_zero.py +174 -0
- package/skills/clean-data/skill.yml +35 -0
- package/skills/clean-data/tests/fixtures/smoking.csv +8 -0
- package/skills/clean-data/tests/test_structural_zero.sh +49 -0
- package/skills/cross-national/SKILL.md +264 -0
- package/skills/cross-national/skill.yml +37 -0
- package/skills/define-variables/SKILL.md +146 -0
- package/skills/define-variables/references/common_definitions.md +190 -0
- package/skills/define-variables/skill.yml +34 -0
- package/skills/define-variables/templates/variable_operationalization.md +64 -0
- package/skills/deidentify/SKILL.md +203 -0
- package/skills/deidentify/deidentify.py +1224 -0
- package/skills/deidentify/locales/_template.json +45 -0
- package/skills/deidentify/locales/au.json +43 -0
- package/skills/deidentify/locales/ca.json +44 -0
- package/skills/deidentify/locales/cn.json +47 -0
- package/skills/deidentify/locales/de.json +48 -0
- package/skills/deidentify/locales/fr.json +48 -0
- package/skills/deidentify/locales/in.json +48 -0
- package/skills/deidentify/locales/jp.json +48 -0
- package/skills/deidentify/locales/kr.json +48 -0
- package/skills/deidentify/locales/uk.json +45 -0
- package/skills/deidentify/locales/us.json +43 -0
- package/skills/deidentify/references/date_shift_guide.md +82 -0
- package/skills/deidentify/references/hipaa_18_identifiers.md +48 -0
- package/skills/deidentify/references/korean_phi_patterns.md +135 -0
- package/skills/deidentify/skill.yml +43 -0
- package/skills/deidentify/tests/README.md +26 -0
- package/skills/deidentify/tests/test_clean.csv +16 -0
- package/skills/deidentify/tests/test_edge_cases.csv +11 -0
- package/skills/deidentify/tests/test_phi_korean.csv +11 -0
- package/skills/design-ai-benchmarking/SKILL.md +214 -0
- package/skills/design-ai-benchmarking/references/benchmark_export_schema.json +69 -0
- package/skills/design-ai-benchmarking/references/elicitation_rubric_template.md +37 -0
- package/skills/design-ai-benchmarking/skill.yml +38 -0
- package/skills/design-study/SKILL.md +298 -0
- package/skills/design-study/skill.yml +33 -0
- package/skills/fill-icmje-coi/SKILL.md +216 -0
- package/skills/fill-icmje-coi/scripts/fill_icmje_coi.py +140 -0
- package/skills/fill-icmje-coi/skill.yml +35 -0
- package/skills/fill-icmje-coi/templates/icmje_coi_seed_synthetic.docx +0 -0
- package/skills/fill-protocol/SKILL.md +248 -0
- package/skills/fill-protocol/examples/example_irb_template.yaml +53 -0
- package/skills/fill-protocol/references/best_practices.md +121 -0
- package/skills/fill-protocol/scripts/doc_to_docx.py +111 -0
- package/skills/fill-protocol/scripts/fill_form.py +611 -0
- package/skills/fill-protocol/scripts/inspect_template.py +61 -0
- package/skills/fill-protocol/setup.sh +162 -0
- package/skills/fill-protocol/skill.yml +37 -0
- package/skills/find-cohort-gap/SKILL.md +309 -0
- package/skills/find-cohort-gap/references/cohort_profile_template.md +93 -0
- package/skills/find-cohort-gap/references/onepager_template.md +84 -0
- package/skills/find-cohort-gap/references/pattern_scoring_rubric.md +169 -0
- package/skills/find-cohort-gap/references/saturation_query_templates.md +143 -0
- package/skills/find-cohort-gap/skill.yml +35 -0
- package/skills/find-journal/POLICY.md +87 -0
- package/skills/find-journal/SKILL.md +340 -0
- package/skills/find-journal/references/journal_profiles/AJNR.md +29 -0
- package/skills/find-journal/references/journal_profiles/AJR.md +30 -0
- package/skills/find-journal/references/journal_profiles/Abdominal_Radiology.md +30 -0
- package/skills/find-journal/references/journal_profiles/Academic_Radiology.md +30 -0
- package/skills/find-journal/references/journal_profiles/Annals_of_Internal_Medicine.md +33 -0
- package/skills/find-journal/references/journal_profiles/Artificial_Intelligence_in_Medicine.md +28 -0
- package/skills/find-journal/references/journal_profiles/BMC_Medicine.md +31 -0
- package/skills/find-journal/references/journal_profiles/British_Journal_of_Radiology.md +39 -0
- package/skills/find-journal/references/journal_profiles/CVIR.md +30 -0
- package/skills/find-journal/references/journal_profiles/Chest.md +39 -0
- package/skills/find-journal/references/journal_profiles/Clinical_Radiology.md +30 -0
- package/skills/find-journal/references/journal_profiles/Clinical_and_Molecular_Hepatology.md +32 -0
- package/skills/find-journal/references/journal_profiles/Diabetes_Metabolism_Journal.md +36 -0
- package/skills/find-journal/references/journal_profiles/Diagnostic_and_Interventional_Radiology.md +32 -0
- package/skills/find-journal/references/journal_profiles/Endocrinology_and_Metabolism.md +37 -0
- package/skills/find-journal/references/journal_profiles/European_Journal_of_Preventive_Cardiology.md +39 -0
- package/skills/find-journal/references/journal_profiles/European_Radiology.md +29 -0
- package/skills/find-journal/references/journal_profiles/Hepatology_Communications.md +40 -0
- package/skills/find-journal/references/journal_profiles/Hepatology_International.md +37 -0
- package/skills/find-journal/references/journal_profiles/IEEE_JBHI.md +28 -0
- package/skills/find-journal/references/journal_profiles/IEEE_TMI.md +28 -0
- package/skills/find-journal/references/journal_profiles/INSI.md +29 -0
- package/skills/find-journal/references/journal_profiles/Investigative_Radiology.md +25 -0
- package/skills/find-journal/references/journal_profiles/JACC_Advances.md +41 -0
- package/skills/find-journal/references/journal_profiles/JACC_Asia.md +30 -0
- package/skills/find-journal/references/journal_profiles/JACR.md +28 -0
- package/skills/find-journal/references/journal_profiles/JAMA.md +40 -0
- package/skills/find-journal/references/journal_profiles/JAMA_Network_Open.md +30 -0
- package/skills/find-journal/references/journal_profiles/JCSM.md +39 -0
- package/skills/find-journal/references/journal_profiles/JKMS.md +32 -0
- package/skills/find-journal/references/journal_profiles/JMIR.md +29 -0
- package/skills/find-journal/references/journal_profiles/JMIR_Medical_Education.md +29 -0
- package/skills/find-journal/references/journal_profiles/JNIS.md +35 -0
- package/skills/find-journal/references/journal_profiles/JVIR.md +31 -0
- package/skills/find-journal/references/journal_profiles/Journal_of_Biomedical_Informatics.md +29 -0
- package/skills/find-journal/references/journal_profiles/Journal_of_Clinical_Endocrinology_and_Metabolism.md +40 -0
- package/skills/find-journal/references/journal_profiles/Journal_of_Magnetic_Resonance_Imaging.md +30 -0
- package/skills/find-journal/references/journal_profiles/Journal_of_Nuclear_Medicine.md +31 -0
- package/skills/find-journal/references/journal_profiles/Journal_of_Stroke.md +32 -0
- package/skills/find-journal/references/journal_profiles/KJR.md +38 -0
- package/skills/find-journal/references/journal_profiles/Korean_Circulation_Journal.md +38 -0
- package/skills/find-journal/references/journal_profiles/Korean_Journal_of_Internal_Medicine.md +36 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Diabetes_and_Endocrinology.md +40 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Gastroenterology_and_Hepatology.md +49 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Infectious_Diseases.md +38 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Neurology.md +39 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Oncology.md +40 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Psychiatry.md +38 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Public_Health.md +30 -0
- package/skills/find-journal/references/journal_profiles/Lancet_Respiratory_Medicine.md +39 -0
- package/skills/find-journal/references/journal_profiles/Liver_International.md +33 -0
- package/skills/find-journal/references/journal_profiles/Medical_Image_Analysis.md +28 -0
- package/skills/find-journal/references/journal_profiles/NEJM.md +33 -0
- package/skills/find-journal/references/journal_profiles/Nature_Machine_Intelligence.md +31 -0
- package/skills/find-journal/references/journal_profiles/Nature_Medicine.md +39 -0
- package/skills/find-journal/references/journal_profiles/Neuroradiology.md +31 -0
- package/skills/find-journal/references/journal_profiles/Nutrition_Metabolism_and_Cardiovascular_Diseases.md +39 -0
- package/skills/find-journal/references/journal_profiles/PLOS_Medicine.md +32 -0
- package/skills/find-journal/references/journal_profiles/RYAI.md +28 -0
- package/skills/find-journal/references/journal_profiles/Radiology.md +29 -0
- package/skills/find-journal/references/journal_profiles/Skeletal_Radiology.md +31 -0
- package/skills/find-journal/references/journal_profiles/Stroke.md +37 -0
- package/skills/find-journal/references/journal_profiles/The_BMJ.md +31 -0
- package/skills/find-journal/references/journal_profiles/The_Lancet.md +31 -0
- package/skills/find-journal/references/journal_profiles/The_Lancet_Digital_Health.md +29 -0
- package/skills/find-journal/references/journal_profiles/World_Journal_of_Hepatology.md +53 -0
- package/skills/find-journal/references/journal_profiles/npj_Digital_Medicine.md +29 -0
- package/skills/find-journal/skill.yml +34 -0
- package/skills/fulltext-retrieval/SKILL.md +174 -0
- package/skills/fulltext-retrieval/fetch_oa.py +433 -0
- package/skills/fulltext-retrieval/pdf_to_md.py +160 -0
- package/skills/fulltext-retrieval/skill.yml +41 -0
- package/skills/generate-codebook/SKILL.md +155 -0
- package/skills/generate-codebook/references/codebook_schema.md +76 -0
- package/skills/generate-codebook/scripts/generate_codebook.py +278 -0
- package/skills/generate-codebook/skill.yml +35 -0
- package/skills/generate-codebook/tests/test_generate_codebook.sh +76 -0
- package/skills/grant-builder/SKILL.md +251 -0
- package/skills/grant-builder/skill.yml +34 -0
- package/skills/humanize/SKILL.md +251 -0
- package/skills/humanize/references/ai_patterns.md +571 -0
- package/skills/humanize/skill.yml +33 -0
- package/skills/intake-project/SKILL.md +264 -0
- package/skills/intake-project/skill.yml +34 -0
- package/skills/lit-sync/SKILL.md +448 -0
- package/skills/lit-sync/references/locale/ko/note_templates.md +110 -0
- package/skills/lit-sync/skill.yml +52 -0
- package/skills/lit-sync/tests/test_poll_logic.sh +92 -0
- package/skills/ma-scout/SKILL.md +640 -0
- package/skills/ma-scout/references/project_readme_template.md +95 -0
- package/skills/ma-scout/references/project_readme_template_ko.md +82 -0
- package/skills/ma-scout/skill.yml +33 -0
- package/skills/make-figures/SKILL.md +957 -0
- package/skills/make-figures/references/critic_rubrics/data_plot.md +166 -0
- package/skills/make-figures/references/critic_rubrics/flow_diagram.md +169 -0
- package/skills/make-figures/references/design_principles.md +181 -0
- package/skills/make-figures/references/exemplar_diagrams/README.md +65 -0
- package/skills/make-figures/references/exemplar_diagrams/consort/README.md +15 -0
- package/skills/make-figures/references/exemplar_diagrams/consort/template_input.yaml +37 -0
- package/skills/make-figures/references/exemplar_diagrams/consort/template_output.pdf +0 -0
- package/skills/make-figures/references/exemplar_diagrams/consort/template_output.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/consort/template_output_600.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/other/other_02.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/other/other_02.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/other/other_02_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/README.md +15 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_01.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_01.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_01_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_03.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_03.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_03_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_04.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_04.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_04_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_05.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_05.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_05_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_06.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_06.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_06_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_07.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_07.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_07_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_08.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_08.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_08_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_09.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_09.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_09_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_10.meta.yaml +4 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_10.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/pipeline/pipeline_10_why.md +13 -0
- package/skills/make-figures/references/exemplar_diagrams/prisma/README.md +15 -0
- package/skills/make-figures/references/exemplar_diagrams/prisma/template_input.yaml +47 -0
- package/skills/make-figures/references/exemplar_diagrams/prisma/template_output.pdf +0 -0
- package/skills/make-figures/references/exemplar_diagrams/prisma/template_output.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/prisma/template_output_600.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/stard/README.md +15 -0
- package/skills/make-figures/references/exemplar_diagrams/stard/template_input.yaml +40 -0
- package/skills/make-figures/references/exemplar_diagrams/stard/template_output.pdf +0 -0
- package/skills/make-figures/references/exemplar_diagrams/stard/template_output.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/stard/template_output_600.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/strobe/template_input.yaml +43 -0
- package/skills/make-figures/references/exemplar_diagrams/strobe/template_input_pptx.yaml +43 -0
- package/skills/make-figures/references/exemplar_diagrams/strobe/template_output.pdf +0 -0
- package/skills/make-figures/references/exemplar_diagrams/strobe/template_output.png +0 -0
- package/skills/make-figures/references/exemplar_diagrams/strobe/template_output.pptx +0 -0
- package/skills/make-figures/references/exemplar_diagrams/strobe/template_output_600.png +0 -0
- package/skills/make-figures/references/figure_specs.md +291 -0
- package/skills/make-figures/references/flow_diagram_lessons.md +164 -0
- package/skills/make-figures/references/jacc_central_illustration_principles.md +91 -0
- package/skills/make-figures/references/medical_illustration_sources.md +98 -0
- package/skills/make-figures/references/pipeline_concepts_medical_ai.md +240 -0
- package/skills/make-figures/references/reporting_guideline_figure_map.md +104 -0
- package/skills/make-figures/references/visual_abstract_templates/european_radiology.pptx +0 -0
- package/skills/make-figures/references/visual_abstract_templates/jacc_central_illustration.pptx +0 -0
- package/skills/make-figures/references/visual_abstract_templates/medsci_default.pptx +0 -0
- package/skills/make-figures/references/visual_abstract_templates/template_guide.md +114 -0
- package/skills/make-figures/scripts/build_jacc_template.py +77 -0
- package/skills/make-figures/scripts/build_prisma2020_template.py +371 -0
- package/skills/make-figures/scripts/build_strobe_template.py +351 -0
- package/skills/make-figures/scripts/critic_figure.py +264 -0
- package/skills/make-figures/scripts/derive_figure_legend_counts.py +138 -0
- package/skills/make-figures/scripts/extract_exemplar_from_pdf.py +186 -0
- package/skills/make-figures/scripts/fetch_official_templates.sh +88 -0
- package/skills/make-figures/scripts/fill_prisma_template.py +142 -0
- package/skills/make-figures/scripts/generate_flow_diagram.R +133 -0
- package/skills/make-figures/scripts/generate_image.py +99 -0
- package/skills/make-figures/scripts/generate_visual_abstract.py +438 -0
- package/skills/make-figures/scripts/validate_pptx_mac_compat.py +233 -0
- package/skills/make-figures/skill.yml +52 -0
- package/skills/make-figures/templates/official/NOTES.md +62 -0
- package/skills/make-figures/templates/official/consort2010/CONSORT_2025_editable_checklist.docx +0 -0
- package/skills/make-figures/templates/official/consort2010/CONSORT_2025_flow_diagram.docx +0 -0
- package/skills/make-figures/templates/official/prisma2020/PRISMA_2020_flow_new_v1.pptx +0 -0
- package/skills/make-figures/templates/official/prisma2020/PRISMA_2020_flow_new_v2.pptx +0 -0
- package/skills/make-figures/templates/official/prisma2020/PRISMA_2020_flow_updated_v2.pptx +0 -0
- package/skills/make-figures/templates/official/spirit2013/SPIRIT_2025_editable_checklist.docx +0 -0
- package/skills/make-figures/templates/official/spirit2013/SPIRIT_2025_participant_timeline.docx +0 -0
- package/skills/make-figures/templates/official/stard2015/STARD_2015_checklist.docx +0 -0
- package/skills/make-figures/templates/official/stard2015/STARD_2015_flow_diagram.pdf +0 -0
- package/skills/make-figures/tests/fixtures/figure1_flow.yaml +8 -0
- package/skills/make-figures/tests/fixtures/manuscript_ok.md +9 -0
- package/skills/make-figures/tests/fixtures/manuscript_stale.md +4 -0
- package/skills/make-figures/tests/test_legend_reconcile.sh +36 -0
- package/skills/manage-project/SKILL.md +358 -0
- package/skills/manage-project/references/pre_submission_checklist.md +53 -0
- package/skills/manage-project/references/project_state_template.json +37 -0
- package/skills/manage-project/references/scaffold_templates.md +118 -0
- package/skills/manage-project/references/status_output_format.md +44 -0
- package/skills/manage-project/references/timeline_example.md +20 -0
- package/skills/manage-project/skill.yml +36 -0
- package/skills/manage-project/templates/SSOT.yaml.template +41 -0
- package/skills/manage-refs/LICENSE.zotero-mcp +21 -0
- package/skills/manage-refs/NOTICE.md +29 -0
- package/skills/manage-refs/SKILL.md +289 -0
- package/skills/manage-refs/citation_styles/README.md +40 -0
- package/skills/manage-refs/citation_styles/american-journal-of-roentgenology.csl +211 -0
- package/skills/manage-refs/citation_styles/cardiovascular-and-interventional-radiology.csl +19 -0
- package/skills/manage-refs/citation_styles/european-radiology.csl +19 -0
- package/skills/manage-refs/citation_styles/journal-of-cachexia-sarcopenia-and-muscle.csl +150 -0
- package/skills/manage-refs/citation_styles/journal-of-korean-medical-science-strict.csl +533 -0
- package/skills/manage-refs/citation_styles/journal-of-korean-medical-science.csl +16 -0
- package/skills/manage-refs/citation_styles/korean-journal-of-radiology.csl +155 -0
- package/skills/manage-refs/citation_styles/nature.csl +189 -0
- package/skills/manage-refs/citation_styles/nlm-citation-sequence.csl +535 -0
- package/skills/manage-refs/citation_styles/radiology.csl +228 -0
- package/skills/manage-refs/citation_styles/springer-basic-brackets.csl +187 -0
- package/skills/manage-refs/citation_styles/springer-vancouver-brackets.csl +276 -0
- package/skills/manage-refs/citation_styles/vancouver-superscript.csl +536 -0
- package/skills/manage-refs/citation_styles/vancouver.csl +535 -0
- package/skills/manage-refs/references/REFERENCE_STYLE_SPECS.md +59 -0
- package/skills/manage-refs/references/check_xref_symptoms.md +35 -0
- package/skills/manage-refs/scripts/_vendor_citation_writer.py +600 -0
- package/skills/manage-refs/scripts/check_citation_keys.py +112 -0
- package/skills/manage-refs/scripts/check_csl_render.py +102 -0
- package/skills/manage-refs/scripts/check_xref.py +633 -0
- package/skills/manage-refs/scripts/fill_journal_abbrev.py +104 -0
- package/skills/manage-refs/scripts/inject_zotero_cwyw.py +133 -0
- package/skills/manage-refs/scripts/md_marker_convert.py +193 -0
- package/skills/manage-refs/scripts/pre_submission_gate.sh +238 -0
- package/skills/manage-refs/scripts/render_pandoc.sh +88 -0
- package/skills/manage-refs/skill.yml +70 -0
- package/skills/manage-refs/tests/fixtures/pre_submission_gate/README.md +32 -0
- package/skills/manage-refs/tests/fixtures/pre_submission_gate/manuscript.md +10 -0
- package/skills/manage-refs/tests/fixtures/pre_submission_gate/refs.bib +34 -0
- package/skills/manage-refs/tests/fixtures/pre_submission_gate/run.sh +117 -0
- package/skills/manage-refs/tests/test_vN_docx_check.sh +145 -0
- package/skills/meta-analysis/SKILL.md +739 -0
- package/skills/meta-analysis/references/LICENSES.md +21 -0
- package/skills/meta-analysis/references/PROSPERO_template.md +221 -0
- package/skills/meta-analysis/references/ai_pre_screening_template.py +245 -0
- package/skills/meta-analysis/references/checklists/JBI_Case_Series.md +45 -0
- package/skills/meta-analysis/references/checklists/NOS.md +88 -0
- package/skills/meta-analysis/references/checklists/PRISMA_DTA.md +36 -0
- package/skills/meta-analysis/references/checklists/PROBAST.md +75 -0
- package/skills/meta-analysis/references/checklists/QUADAS2.md +77 -0
- package/skills/meta-analysis/references/checklists/ROBINS_I.md +87 -0
- package/skills/meta-analysis/references/checklists/RoB2.md +79 -0
- package/skills/meta-analysis/references/data_integrity_checklist.md +57 -0
- package/skills/meta-analysis/references/icmje_coi_guide.md +181 -0
- package/skills/meta-analysis/references/phase10_recovery.md +136 -0
- package/skills/meta-analysis/references/phase4_km_composite.md +58 -0
- package/skills/meta-analysis/references/phase6_statistical_synthesis.md +148 -0
- package/skills/meta-analysis/references/phase9_circulation.md +84 -0
- package/skills/meta-analysis/references/post_submission_release_ops.md +41 -0
- package/skills/meta-analysis/references/r_templates.md +132 -0
- package/skills/meta-analysis/references/review_orchestration.md +40 -0
- package/skills/meta-analysis/references/submission_package_drift.md +71 -0
- package/skills/meta-analysis/scripts/check_pool_consistency.py +201 -0
- package/skills/meta-analysis/scripts/cohort_overlap_check.py +242 -0
- package/skills/meta-analysis/scripts/dta_extraction_qc.py +137 -0
- package/skills/meta-analysis/scripts/screening_reconcile.py +160 -0
- package/skills/meta-analysis/skill.yml +47 -0
- package/skills/meta-analysis/templates/FINAL_POOL_LOCK.yaml.template +70 -0
- package/skills/meta-analysis/templates/extraction_form_v2.md +129 -0
- package/skills/meta-analysis/templates/supplementary_8file_checklist.md +94 -0
- package/skills/meta-analysis/tests/test_pool_consistency.sh +123 -0
- package/skills/orchestrate/SKILL.md +501 -0
- package/skills/orchestrate/references/dialogue_nodes.md +196 -0
- package/skills/orchestrate/references/report_template.md +109 -0
- package/skills/orchestrate/references/report_template_ko.md +88 -0
- package/skills/orchestrate/skill.yml +44 -0
- package/skills/peer-review/SKILL.md +381 -0
- package/skills/peer-review/references/aczel_2021_reviewer2_patterns.md +88 -0
- package/skills/peer-review/references/domain-probes/ai_overclaiming.md +47 -0
- package/skills/peer-review/references/domain-probes/narrative_review.md +44 -0
- package/skills/peer-review/references/domain-probes/observational_confounding.md +48 -0
- package/skills/peer-review/references/domain-probes/radiomics.md +38 -0
- package/skills/peer-review/references/domain-probes/sr_ma.md +87 -0
- package/skills/peer-review/references/domain-probes/survival_prognostic.md +68 -0
- package/skills/peer-review/references/exemplar_reviews/README.md +43 -0
- package/skills/peer-review/references/exemplar_reviews/ai_overclaiming.md +47 -0
- package/skills/peer-review/references/exemplar_reviews/calibration_missing.md +44 -0
- package/skills/peer-review/references/exemplar_reviews/data_leakage.md +48 -0
- package/skills/peer-review/references/exemplar_reviews/reference_standard_validity.md +45 -0
- package/skills/peer-review/references/narrative_review_audit.md +67 -0
- package/skills/peer-review/references/reviewer_calibration/README.md +34 -0
- package/skills/peer-review/references/reviewer_calibration/compliance_floor.md +52 -0
- package/skills/peer-review/references/reviewer_profiles/AJR.md +82 -0
- package/skills/peer-review/references/reviewer_profiles/EURE.md +64 -0
- package/skills/peer-review/references/reviewer_profiles/INSI.md +57 -0
- package/skills/peer-review/references/reviewer_profiles/KJR.md +100 -0
- package/skills/peer-review/references/reviewer_profiles/README.md +32 -0
- package/skills/peer-review/references/reviewer_profiles/RYAI.md +86 -0
- package/skills/peer-review/skill.yml +39 -0
- package/skills/present-paper/SKILL.md +675 -0
- package/skills/present-paper/references/critic_rubrics/slide.md +155 -0
- package/skills/present-paper/references/generate_pptx_templates.py +604 -0
- package/skills/present-paper/references/medical_presentation_templates.md +277 -0
- package/skills/present-paper/references/slide_design_principles.md +202 -0
- package/skills/present-paper/references/slide_visual_styles/nature_lancet.md +168 -0
- package/skills/present-paper/references/workflow-checklist.md +109 -0
- package/skills/present-paper/scripts/extract_pdf_figures.py +243 -0
- package/skills/present-paper/scripts/inject_pronunciation_notes.py +178 -0
- package/skills/present-paper/scripts/inject_speaker_notes.py +133 -0
- package/skills/present-paper/scripts/strip_notes_for_sharing.py +140 -0
- package/skills/present-paper/scripts/trim_caption.py +271 -0
- package/skills/present-paper/skill.yml +41 -0
- package/skills/present-paper/templates/build_pptx_nature_lancet.py +688 -0
- package/skills/publish-skill/SKILL.md +370 -0
- package/skills/publish-skill/references/license-compatibility-matrix.md +132 -0
- package/skills/publish-skill/references/pii-patterns.md +130 -0
- package/skills/publish-skill/scripts/audit_skill.sh +278 -0
- package/skills/publish-skill/skill.yml +35 -0
- package/skills/render-pdf-doc/SKILL.md +146 -0
- package/skills/render-pdf-doc/references/known_pitfalls.md +53 -0
- package/skills/render-pdf-doc/references/pandoc_korean_cheatsheet.md +77 -0
- package/skills/render-pdf-doc/scripts/check_deps.sh +42 -0
- package/skills/render-pdf-doc/scripts/infer_colwidths.py +164 -0
- package/skills/render-pdf-doc/scripts/render_pdf.sh +98 -0
- package/skills/render-pdf-doc/skill.yml +57 -0
- package/skills/render-pdf-doc/templates/anchor-doc.md +27 -0
- package/skills/render-pdf-doc/templates/anchor-doc_ko.md +25 -0
- package/skills/render-pdf-doc/templates/briefing-handout.md +33 -0
- package/skills/render-pdf-doc/templates/briefing-handout_ko.md +31 -0
- package/skills/render-pdf-doc/templates/proposal-cover.md +33 -0
- package/skills/render-pdf-doc/templates/proposal-cover_ko.md +31 -0
- package/skills/render-pdf-doc/templates/reference-table.md +22 -0
- package/skills/render-pdf-doc/templates/reference-table_ko.md +20 -0
- package/skills/replicate-study/SKILL.md +150 -0
- package/skills/replicate-study/references/harmonization_3country.csv +47 -0
- package/skills/replicate-study/references/harmonization_knhanes_nhanes.csv +68 -0
- package/skills/replicate-study/references/methodology_extraction_template.md +134 -0
- package/skills/replicate-study/skill.yml +37 -0
- package/skills/review-paper/SKILL.md +104 -0
- package/skills/review-paper/references/macro_skeleton.md +6 -0
- package/skills/review-paper/skill.yml +25 -0
- package/skills/revise/SKILL.md +515 -0
- package/skills/revise/references/r2r_voice.md +346 -0
- package/skills/revise/skill.yml +43 -0
- package/skills/search-lit/SKILL.md +443 -0
- package/skills/search-lit/references/parse_pubmed.py +326 -0
- package/skills/search-lit/references/pubmed_eutils.sh +111 -0
- package/skills/search-lit/skill.yml +46 -0
- package/skills/self-review/SKILL.md +1045 -0
- package/skills/self-review/references/domain-probes/ai_overclaiming.md +47 -0
- package/skills/self-review/references/domain-probes/narrative_review.md +44 -0
- package/skills/self-review/references/domain-probes/observational_confounding.md +48 -0
- package/skills/self-review/references/domain-probes/radiomics.md +38 -0
- package/skills/self-review/references/domain-probes/sr_ma.md +87 -0
- package/skills/self-review/references/domain-probes/survival_prognostic.md +68 -0
- package/skills/self-review/references/exemplar_findings/README.md +43 -0
- package/skills/self-review/references/exemplar_findings/cohort_arithmetic_mismatch.md +35 -0
- package/skills/self-review/references/exemplar_findings/estimand_drift_posthoc_primary.md +39 -0
- package/skills/self-review/references/exemplar_findings/scope_overreach_cross_sectional.md +35 -0
- package/skills/self-review/references/exemplar_findings/unadjusted_confounder.md +36 -0
- package/skills/self-review/references/panel_review_template.md +177 -0
- package/skills/self-review/scripts/check_artifact_coverage.py +301 -0
- package/skills/self-review/scripts/check_claim_artifact.py +248 -0
- package/skills/self-review/scripts/check_classical_style.py +185 -0
- package/skills/self-review/scripts/check_cohort_arithmetic.py +481 -0
- package/skills/self-review/scripts/check_confounding_completeness.py +287 -0
- package/skills/self-review/scripts/check_panel_diversity.py +336 -0
- package/skills/self-review/scripts/check_reference_adequacy.py +392 -0
- package/skills/self-review/scripts/check_reviewer_team_consistency.py +412 -0
- package/skills/self-review/scripts/check_scope_coherence.py +177 -0
- package/skills/self-review/skill.yml +47 -0
- package/skills/self-review/tests/fixtures/claim_manuscript.md +17 -0
- package/skills/self-review/tests/fixtures/claim_prereg.md +6 -0
- package/skills/self-review/tests/fixtures/cohort_bad.md +21 -0
- package/skills/self-review/tests/fixtures/cohort_clean.md +21 -0
- package/skills/self-review/tests/fixtures/cohort_partition.csv +5 -0
- package/skills/self-review/tests/fixtures/coverage_analysis/31_delong_nested_added_value.csv +3 -0
- package/skills/self-review/tests/fixtures/coverage_analysis/table1_demographics.csv +3 -0
- package/skills/self-review/tests/fixtures/coverage_clean.md +13 -0
- package/skills/self-review/tests/fixtures/coverage_manuscript.md +11 -0
- package/skills/self-review/tests/fixtures/panel_collapse.json +27 -0
- package/skills/self-review/tests/fixtures/panel_good.json +32 -0
- package/skills/self-review/tests/fixtures/panel_monoculture.json +32 -0
- package/skills/self-review/tests/fixtures/refadeq_letter.md +13 -0
- package/skills/self-review/tests/fixtures/refadeq_original_fixed.md +42 -0
- package/skills/self-review/tests/fixtures/refadeq_original_uncited.md +40 -0
- package/skills/self-review/tests/fixtures/scope_bad.md +9 -0
- package/skills/self-review/tests/fixtures/scope_clean.md +8 -0
- package/skills/self-review/tests/fixtures/scope_surrogate.md +8 -0
- package/skills/self-review/tests/fixtures/style_bad.md +13 -0
- package/skills/self-review/tests/fixtures/style_clean.md +11 -0
- package/skills/self-review/tests/fixtures/table1_by_exposure.csv +11 -0
- package/skills/self-review/tests/test_artifact_coverage.sh +44 -0
- package/skills/self-review/tests/test_claim_artifact.sh +50 -0
- package/skills/self-review/tests/test_classical_style.sh +44 -0
- package/skills/self-review/tests/test_cohort_arithmetic.sh +49 -0
- package/skills/self-review/tests/test_confounding_completeness.sh +66 -0
- package/skills/self-review/tests/test_panel_diversity.sh +55 -0
- package/skills/self-review/tests/test_panel_mode.sh +69 -0
- package/skills/self-review/tests/test_reference_adequacy.sh +68 -0
- package/skills/self-review/tests/test_reviewer_team_consistency.sh +138 -0
- package/skills/self-review/tests/test_scope_coherence.sh +46 -0
- package/skills/setup-medsci/SKILL.md +110 -0
- package/skills/setup-medsci/references/setup-checklist.md +51 -0
- package/skills/setup-medsci/skill.yml +30 -0
- package/skills/sync-submission/SKILL.md +382 -0
- package/skills/sync-submission/scripts/author_registry_example.yaml +36 -0
- package/skills/sync-submission/scripts/blind_sweep.py +203 -0
- package/skills/sync-submission/scripts/check_asset_anonymization.py +300 -0
- package/skills/sync-submission/scripts/check_cross_artifact_stale.py +211 -0
- package/skills/sync-submission/scripts/cover_letter_drift_check.py +451 -0
- package/skills/sync-submission/scripts/cross_document_n_check.py +486 -0
- package/skills/sync-submission/scripts/detect_copy_divergence.py +136 -0
- package/skills/sync-submission/scripts/preflight_gate.py +458 -0
- package/skills/sync-submission/scripts/scope_drift_check.py +362 -0
- package/skills/sync-submission/scripts/sync_submission.py +169 -0
- package/skills/sync-submission/skill.yml +43 -0
- package/skills/sync-submission/tests/fixtures/copy_ok.md +5 -0
- package/skills/sync-submission/tests/fixtures/copy_stale.md +5 -0
- package/skills/sync-submission/tests/fixtures/ssot.md +5 -0
- package/skills/sync-submission/tests/test_asset_anonymization.sh +99 -0
- package/skills/sync-submission/tests/test_copy_divergence.sh +44 -0
- package/skills/sync-submission/tests/test_cross_artifact_stale.sh +80 -0
- package/skills/sync-submission/tests/test_cross_document_n.sh +132 -0
- package/skills/sync-submission/tests/test_preflight_gate.sh +112 -0
- package/skills/sync-submission/tests/test_scope_drift.sh +122 -0
- package/skills/sync-submission/tests/test_vN_docx_assertion.sh +51 -0
- package/skills/verify-refs/SKILL.md +177 -0
- package/skills/verify-refs/references/manual_checkpoint_guide.md +100 -0
- package/skills/verify-refs/scripts/verify_cli.sh +62 -0
- package/skills/verify-refs/scripts/verify_refs.py +782 -0
- package/skills/verify-refs/skill.yml +44 -0
- package/skills/verify-refs/tests/fixtures/pagination_placeholder.bib +17 -0
- package/skills/verify-refs/tests/test_pagination_placeholder.sh +42 -0
- package/skills/version-dataset/SKILL.md +143 -0
- package/skills/version-dataset/references/manifest_schema.md +72 -0
- package/skills/version-dataset/scripts/version_dataset.py +242 -0
- package/skills/version-dataset/skill.yml +35 -0
- package/skills/version-dataset/tests/test_version_dataset.sh +52 -0
- package/skills/write-paper/SKILL.md +1148 -0
- package/skills/write-paper/references/exemplar_methods/README.md +38 -0
- package/skills/write-paper/references/exemplar_methods/ai_validation_tripod_claim.md +47 -0
- package/skills/write-paper/references/exemplar_methods/diagnostic_accuracy_stard.md +50 -0
- package/skills/write-paper/references/exemplar_methods/observational_cohort_strobe.md +43 -0
- package/skills/write-paper/references/journal_profiles/AJNR.md +185 -0
- package/skills/write-paper/references/journal_profiles/AJR.md +149 -0
- package/skills/write-paper/references/journal_profiles/Abdominal_Radiology.md +139 -0
- package/skills/write-paper/references/journal_profiles/Academic_Radiology.md +90 -0
- package/skills/write-paper/references/journal_profiles/Annals_of_Internal_Medicine.md +150 -0
- package/skills/write-paper/references/journal_profiles/Artificial_Intelligence_in_Medicine.md +82 -0
- package/skills/write-paper/references/journal_profiles/British_Journal_of_Radiology.md +161 -0
- package/skills/write-paper/references/journal_profiles/CVIR.md +157 -0
- package/skills/write-paper/references/journal_profiles/Chest.md +270 -0
- package/skills/write-paper/references/journal_profiles/Clinical_Radiology.md +160 -0
- package/skills/write-paper/references/journal_profiles/Clinical_and_Molecular_Hepatology.md +147 -0
- package/skills/write-paper/references/journal_profiles/Diabetes_Metabolism_Journal.md +163 -0
- package/skills/write-paper/references/journal_profiles/Diagnostic_and_Interventional_Radiology.md +216 -0
- package/skills/write-paper/references/journal_profiles/Endocrinology_and_Metabolism.md +167 -0
- package/skills/write-paper/references/journal_profiles/European_Journal_of_Preventive_Cardiology.md +192 -0
- package/skills/write-paper/references/journal_profiles/European_Radiology.md +159 -0
- package/skills/write-paper/references/journal_profiles/Hepatology_Communications.md +110 -0
- package/skills/write-paper/references/journal_profiles/Hepatology_International.md +106 -0
- package/skills/write-paper/references/journal_profiles/IEEE_TMI.md +180 -0
- package/skills/write-paper/references/journal_profiles/INSI.md +163 -0
- package/skills/write-paper/references/journal_profiles/Investigative_Radiology.md +86 -0
- package/skills/write-paper/references/journal_profiles/JACC_Advances.md +197 -0
- package/skills/write-paper/references/journal_profiles/JACC_Asia.md +168 -0
- package/skills/write-paper/references/journal_profiles/JACR.md +87 -0
- package/skills/write-paper/references/journal_profiles/JAMA.md +188 -0
- package/skills/write-paper/references/journal_profiles/JAMA_Network_Open.md +170 -0
- package/skills/write-paper/references/journal_profiles/JCSM.md +266 -0
- package/skills/write-paper/references/journal_profiles/JKMS.md +201 -0
- package/skills/write-paper/references/journal_profiles/JMIR.md +88 -0
- package/skills/write-paper/references/journal_profiles/JMIR_Medical_Education.md +86 -0
- package/skills/write-paper/references/journal_profiles/JNIS.md +227 -0
- package/skills/write-paper/references/journal_profiles/JVIR.md +158 -0
- package/skills/write-paper/references/journal_profiles/Journal_of_Clinical_Endocrinology_and_Metabolism.md +191 -0
- package/skills/write-paper/references/journal_profiles/Journal_of_Stroke.md +176 -0
- package/skills/write-paper/references/journal_profiles/KJR.md +185 -0
- package/skills/write-paper/references/journal_profiles/Korean_Circulation_Journal.md +184 -0
- package/skills/write-paper/references/journal_profiles/Korean_Journal_of_Internal_Medicine.md +178 -0
- package/skills/write-paper/references/journal_profiles/Lancet_Gastroenterology_and_Hepatology.md +127 -0
- package/skills/write-paper/references/journal_profiles/Liver_International.md +165 -0
- package/skills/write-paper/references/journal_profiles/Medical_Image_Analysis.md +147 -0
- package/skills/write-paper/references/journal_profiles/NEJM.md +147 -0
- package/skills/write-paper/references/journal_profiles/Nature_Medicine.md +181 -0
- package/skills/write-paper/references/journal_profiles/Neuroradiology.md +151 -0
- package/skills/write-paper/references/journal_profiles/Nutrition_Metabolism_and_Cardiovascular_Diseases.md +184 -0
- package/skills/write-paper/references/journal_profiles/PLOS_Medicine.md +166 -0
- package/skills/write-paper/references/journal_profiles/RYAI.md +124 -0
- package/skills/write-paper/references/journal_profiles/Radiology.md +173 -0
- package/skills/write-paper/references/journal_profiles/Skeletal_Radiology.md +135 -0
- package/skills/write-paper/references/journal_profiles/Stroke.md +210 -0
- package/skills/write-paper/references/journal_profiles/The_BMJ.md +121 -0
- package/skills/write-paper/references/journal_profiles/The_Lancet.md +112 -0
- package/skills/write-paper/references/journal_profiles/The_Lancet_Digital_Health.md +104 -0
- package/skills/write-paper/references/journal_profiles/World_Journal_of_Hepatology.md +106 -0
- package/skills/write-paper/references/journal_profiles/npj_Digital_Medicine.md +93 -0
- package/skills/write-paper/references/paper_types/ai_validation.md +270 -0
- package/skills/write-paper/references/paper_types/animal_study.md +194 -0
- package/skills/write-paper/references/paper_types/case_report.md +237 -0
- package/skills/write-paper/references/paper_types/cross_national.md +328 -0
- package/skills/write-paper/references/paper_types/letter.md +127 -0
- package/skills/write-paper/references/paper_types/meta_analysis.md +181 -0
- package/skills/write-paper/references/paper_types/nhis_cohort.md +297 -0
- package/skills/write-paper/references/paper_types/original_article.md +221 -0
- package/skills/write-paper/references/paper_types/technical_note.md +131 -0
- package/skills/write-paper/references/section_guides/discussion.md +155 -0
- package/skills/write-paper/references/section_guides/introduction.md +108 -0
- package/skills/write-paper/references/section_guides/methods.md +144 -0
- package/skills/write-paper/references/section_guides/results.md +113 -0
- package/skills/write-paper/references/section_guides/step7_1_classical_qc.md +67 -0
- package/skills/write-paper/references/section_guides/step7_4a_audit_recovery.md +74 -0
- package/skills/write-paper/references/section_guides/title_abstract.md +123 -0
- package/skills/write-paper/references/section_templates/methods_statistical.md +147 -0
- package/skills/write-paper/scripts/check_placeholders.py +182 -0
- package/skills/write-paper/skill.yml +48 -0
- package/skills/write-paper/tests/test_placeholders.sh +107 -0
- package/skills/write-protocol/SKILL.md +243 -0
- package/skills/write-protocol/references/ethics_checklist.md +150 -0
- package/skills/write-protocol/references/protocol_template.md +304 -0
- package/skills/write-protocol/skill.yml +34 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# JAMA Network Open
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** JAMA Netw Open
|
|
5
|
+
- **Publisher:** American Medical Association (AMA)
|
|
6
|
+
- **ISSN:** 2574-3805
|
|
7
|
+
- **Homepage:** https://jamanetwork.com/journals/jamanetworkopen
|
|
8
|
+
- **Author guidelines:** https://jamanetwork.com/journals/jamanetworkopen/pages/instructions-for-authors
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
JAMA Network Open is a fully open access, multidisciplinary journal publishing original research across all areas of medicine, including clinical care, innovation in health care, and global health. It publishes studies that advance medical knowledge, improve clinical practice, or inform health policy, accepting a broader range of study designs and sample sizes than JAMA.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
clinical research, observational studies, randomized trials, health outcomes, health services research, global health, public health, epidemiology, medical AI, diagnostic accuracy, quality improvement, patient safety, disparities, digital health, cohort study
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Investigation
|
|
18
|
+
- Research Letter
|
|
19
|
+
- Invited Commentary
|
|
20
|
+
- Systematic Review and Meta-Analysis
|
|
21
|
+
- Diagnostic/Prognostic Study
|
|
22
|
+
- US Preventive Services Task Force
|
|
23
|
+
|
|
24
|
+
## Classification
|
|
25
|
+
- **Tier:** Q1
|
|
26
|
+
- **Open Access:** Full OA (APC ~$3,500)
|
|
27
|
+
- **Field:** General medicine (multidisciplinary)
|
|
28
|
+
|
|
29
|
+
## Special Notes
|
|
30
|
+
JAMA Network Open is the most accessible high-impact general medical journal for original research. It accepts studies across all specialties including AI/radiology with clinical endpoints, diagnostic accuracy studies, and meta-analyses. Shares JAMA's structured abstract (7-heading) and Key Points box requirements. APC waiver available for LMIC authors. Acceptance rate ~15-20%. AI policy: language editing only, Methods + cover letter disclosure required per JAMA Network policy.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Journal of Cachexia, Sarcopenia and Muscle
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J Cachexia Sarcopenia Muscle (JCSM)
|
|
5
|
+
- **Publisher:** Wiley
|
|
6
|
+
- **ISSN:** [TODO: verify at JCSM journal page]
|
|
7
|
+
- **Homepage:** https://onlinelibrary.wiley.com/journal/13989440
|
|
8
|
+
- **Author guidelines:** https://onlinelibrary.wiley.com/page/journal/13989440/homepage/forauthors.html
|
|
9
|
+
- **Submission portal:** https://authors.wiley.com/journal/JCSM/
|
|
10
|
+
|
|
11
|
+
## Scope
|
|
12
|
+
The Journal of Cachexia, Sarcopenia and Muscle is the dedicated international journal for cachexia, sarcopenia, body composition, and skeletal-muscle and adipose-tissue physiology/pathophysiology across the lifespan and across chronic diseases (cancer, heart failure, lung disease, cirrhosis, kidney failure, rheumatoid arthritis, sepsis, AIDS). The journal serves researchers and clinicians studying muscle wasting, lipolysis, sarcopenic obesity, ageing-related body composition changes, and prognostic/diagnostic biomarkers for these conditions.
|
|
13
|
+
|
|
14
|
+
## Scope Keywords
|
|
15
|
+
cachexia, sarcopenia, sarcopenic obesity, body composition, skeletal muscle, muscle wasting, adipose tissue, lipolysis, ageing, frailty, chronic disease, cancer cachexia, heart failure cachexia, COPD muscle wasting, cirrhosis sarcopenia, kidney failure cachexia, prognostic markers, body composition imaging, bioelectrical impedance, DXA, CT body composition, muscle biomarkers
|
|
16
|
+
|
|
17
|
+
## Article Types Accepted
|
|
18
|
+
- Original Article (4,500 words, abstract 400 structured data-rich, refs 40, ≤8 figures/tables with max 6 sub-sections per figure)
|
|
19
|
+
- Review (6,000 words, abstract 400 unstructured data-rich, refs 120)
|
|
20
|
+
- Editorial (invited only; 1,500 words; Facts & Numbers series allows abstract up to 400 words)
|
|
21
|
+
- Research/Scientific Letter (1,200 words, 1 figure/table, 10 refs)
|
|
22
|
+
- Short Report (1,500 words, ≤2 figures/tables, 10 refs)
|
|
23
|
+
- Meeting Report (1,500 words, 20 refs)
|
|
24
|
+
- Reply / Letter to the Editor (1,200 words)
|
|
25
|
+
|
|
26
|
+
## Classification
|
|
27
|
+
- **Tier:** Q1 (specialty journal — dedicated to cachexia/sarcopenia/body composition)
|
|
28
|
+
- **Open Access:** Gold OA, APC required on acceptance (waivers/discounts may apply)
|
|
29
|
+
- **Field:** Cachexia / Sarcopenia / Body Composition / Skeletal Muscle / Adipose Tissue
|
|
30
|
+
|
|
31
|
+
## Special Notes
|
|
32
|
+
JCSM is the dedicated international journal for cachexia, sarcopenia, and body composition research, published by Wiley under Gold Open Access (APC required on acceptance). **Single-blind peer review.** Continuous publication model (articles publish to online issue when ready; no issue pagination delay). Title cap ≤17 words / 120 characters. **Abstract must be data-rich (≤400 words, structured: Background/Methods/Results/Conclusions) with actual numbers, effect sizes, hazard ratios, 95% CIs, and p-values — "descriptive results abstracts are not acceptable."** Original Article body ≤4,500 words; 40 references in main + unlimited supplement (S1, S2, ...). **Only ONE corresponding author per submission**; multiple co-first or equal-contribution requests must be declared in cover letter. **For survival/prognostic studies, JCSM enforces strict reporting**: 1-year mortality rate with 95% CI (plus 5-year and/or 3-month as appropriate) in both abstract AND methods/results; Kaplan-Meier plots with "patients at risk" annotation at baseline + follow-up intervals; novel prognostic markers expected from cohorts with ≥60–100 events, novel prognostic scores ≥150–200 events. Validation in second cohort strongly recommended. Reference style flexible (since August 2024) but must be consistent and complete (author, year, journal/book, article title, volume, pages, DOI optional). Preprints permitted (declare server + accession/DOI in cover letter). AI policy: [TODO: verify at journal AI policy page] — Wiley publisher-wide policy generally requires disclosure of AI tools and bars AI as author.
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Verification
|
|
38
|
+
- **Source:** https://onlinelibrary.wiley.com/page/journal/13989440/homepage/forauthors.html
|
|
39
|
+
- **Date:** 2026-05-21
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Journal of Korean Medical Science
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J Korean Med Sci
|
|
5
|
+
- **Publisher:** Korean Academy of Medical Sciences (KAMS)
|
|
6
|
+
- **ISSN:** 1011-8934 (print) / 1598-6357 (electronic)
|
|
7
|
+
- **Homepage:** https://jkms.org
|
|
8
|
+
- **Author guidelines:** https://jkms.org (Author Information section)
|
|
9
|
+
- **Submission portal:** https://submit.jkms.org
|
|
10
|
+
|
|
11
|
+
## Scope
|
|
12
|
+
JKMS publishes original research, reviews, case reports, and editorials across all medical specialties — clinical, basic-science, public-health, and epidemiology. The journal is the leading generalist English-language medical journal published by the Korean Academy of Medical Sciences with broad receptivity to Korean and East Asian population studies, single-institution observational research, and cross-disciplinary work with clear clinical implications.
|
|
13
|
+
|
|
14
|
+
## Scope Keywords
|
|
15
|
+
general medicine, Korean population, East Asian medicine, clinical epidemiology, public health, observational cohort, retrospective cohort, single-institution study, IRB-approved retrospective study, cross-disciplinary medicine, MD-MD-research
|
|
16
|
+
|
|
17
|
+
## Article Types Accepted
|
|
18
|
+
- Original Article (3,000 words, 6 figures)
|
|
19
|
+
- Review Article (invited, ≤6 figures)
|
|
20
|
+
- Brief Communication (1,500 words, 3 figures)
|
|
21
|
+
- Case Report (1,500 words, 4 figures)
|
|
22
|
+
- Case Conference for CME (2,500 words, 6 figures)
|
|
23
|
+
- Editorial / Opinion / Guideline (600–1,500 words)
|
|
24
|
+
- Correspondence (600 words, 1 figure)
|
|
25
|
+
|
|
26
|
+
## Classification
|
|
27
|
+
- **Tier:** Q1 (generalist medical journal)
|
|
28
|
+
- **Open Access:** Full OA, indexed in PubMed/MEDLINE, SCIE, Scopus
|
|
29
|
+
- **Field:** General Medicine
|
|
30
|
+
|
|
31
|
+
## Special Notes
|
|
32
|
+
JKMS is the flagship English-language generalist medical journal published by the Korean Academy of Medical Sciences, weekly online-only. References use Vancouver format with EndNote `jkms.ens` provided. Strict 3,000-word limit for original articles (Methods + Results + Discussion + Conclusion); abstract structured to 350 words (Background-Methods-Results-Conclusion). Submission requires title-page docx, main-body docx, tables/figures separate uploads, cover letter (addressed to EIC), per-author ICMJE COI, CRediT contributor declarations, and Data Availability Statement. APC charged on acceptance. AI policy follows ICMJE: disclose AI use in cover letter; AI cannot be listed as author. Typical review timeline ~8 weeks. Particularly receptive to Korean cohort studies with broad medical relevance and to single-institution observational work with clear clinical implications.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Journal of Medical Internet Research
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J Med Internet Res
|
|
5
|
+
- **Publisher:** JMIR Publications
|
|
6
|
+
- **ISSN:** 1438-8871 (online only)
|
|
7
|
+
- **Homepage:** https://www.jmir.org/
|
|
8
|
+
- **Author guidelines:** https://www.jmir.org/author-instructions
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
Flagship journal of JMIR Publications covering digital health, health informatics, and emerging technologies applied to healthcare delivery. ML papers accepted only with direct clinical impact and independent validation. Pure clinical informatics without patient/consumer empowerment angle is routed to sister journals.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
digital health, mHealth, telemedicine, health informatics, eHealth, wearable devices, patient engagement, clinical decision support, health apps, internet intervention, remote monitoring, online health communities, digital therapeutics, artificial intelligence in health, consumer health informatics, virtual care
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Paper
|
|
18
|
+
- Digital Health Review
|
|
19
|
+
- Viewpoint/Perspective
|
|
20
|
+
- Research Letter
|
|
21
|
+
- Policy Paper
|
|
22
|
+
|
|
23
|
+
## Classification
|
|
24
|
+
- **Tier:** Q1
|
|
25
|
+
- **Open Access:** Full OA (Gold)
|
|
26
|
+
- **Field:** Digital health / Health informatics
|
|
27
|
+
|
|
28
|
+
## Special Notes
|
|
29
|
+
Ranked #1 in Medical Informatics by Google Scholar; highly selective with cascading peer review to JMIR sister journals. Fast-track option available (4-week turnaround). No bare URLs in body text — all must be cited as references. AI policy: follows ICMJE — disclose AI use in Methods.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# JMIR Medical Education
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** JMIR Med Educ
|
|
5
|
+
- **Publisher:** JMIR Publications
|
|
6
|
+
- **ISSN:** 2369-3762 (online only)
|
|
7
|
+
- **Homepage:** https://mededu.jmir.org/
|
|
8
|
+
- **Author guidelines:** https://mededu.jmir.org/author-instructions
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
Covers digital technology in medical and health professions education, including e-learning, simulation, AI-assisted teaching, virtual reality training, and online assessment. Bridges health informatics and education research with emphasis on technology-mediated learning innovations.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
medical education technology, e-learning, simulation-based education, virtual reality training, artificial intelligence in education, online assessment, gamification, digital literacy, learning analytics, mobile learning, telemedicine education, virtual patients, augmented reality, large language models in education, competency-based digital education
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Paper
|
|
18
|
+
- Review
|
|
19
|
+
- Viewpoint
|
|
20
|
+
- Policy Paper
|
|
21
|
+
- Students' Corner
|
|
22
|
+
|
|
23
|
+
## Classification
|
|
24
|
+
- **Tier:** Q1
|
|
25
|
+
- **Open Access:** Full OA (CC BY 4.0)
|
|
26
|
+
- **Field:** Medical education technology
|
|
27
|
+
|
|
28
|
+
## Special Notes
|
|
29
|
+
High-impact (IF ~12.6) JMIR sister journal focused on technology-enhanced medical education. Cascading peer review from JMIR flagship; single-blind with named reviewers published alongside accepted articles. Fast-track option (20 working days). AI policy: generative AI use must be disclosed per JMIR AI policy.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Journal of NeuroInterventional Surgery
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J NeuroIntervent Surg (JNIS)
|
|
5
|
+
- **Publisher:** BMJ Publishing Group / Society of NeuroInterventional Surgery (SNIS)
|
|
6
|
+
- **ISSN:** 1759-8478 (print) / 1759-8486 (online)
|
|
7
|
+
- **Homepage:** https://jnis.bmj.com
|
|
8
|
+
- **Author guidelines:** https://jnis.bmj.com/pages/authors/
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
JNIS publishes original research, reviews, and case material on endovascular and surgical neurointervention — acute ischemic stroke thrombectomy, intracranial aneurysm coiling and flow diversion, AVM and dAVF embolization, carotid and intracranial stenting, spine interventions, and emerging neurointerventional devices and techniques. The journal is the official journal of the Society of NeuroInterventional Surgery (SNIS) and partners with several international neurointerventional societies.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
mechanical thrombectomy, intracranial aneurysm, flow diverter, coil embolization, arteriovenous malformation, dural arteriovenous fistula, carotid stenting, acute ischemic stroke intervention, endovascular treatment, neurointerventional device, stroke imaging, clot analysis, angiography, intracranial atherosclerosis
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Research
|
|
18
|
+
- Review
|
|
19
|
+
- Case Series
|
|
20
|
+
- Brief Report
|
|
21
|
+
- Short Report
|
|
22
|
+
- Case Report (brief format)
|
|
23
|
+
- Technical Note / New Device
|
|
24
|
+
- Socioeconomics
|
|
25
|
+
- Editorial / Commentary
|
|
26
|
+
- Letter to the Editor / e-Letter
|
|
27
|
+
- Video Report
|
|
28
|
+
|
|
29
|
+
## Classification
|
|
30
|
+
- **Tier:** Q1
|
|
31
|
+
- **Open Access:** Hybrid (optional Gold OA with APC; standard subscription route free to authors)
|
|
32
|
+
- **Field:** Neurointervention / endovascular neurosurgery / interventional neuroradiology
|
|
33
|
+
|
|
34
|
+
## Special Notes
|
|
35
|
+
Official journal of SNIS. Peer review is double-anonymised — author identities removed from the manuscript file. ORCID iD is mandatory for the submitting author. Original Research requires a structured 250-word abstract and a "Key messages" summary box with three bullets (What is already known / What this study adds / How this study might affect research, practice or policy). Follows BMJ Tier 3 data-sharing policy: a Data Availability Statement is mandatory for all research articles. Reporting guideline adherence is required (STROBE/CONSORT/PRISMA/STARD/ARRIVE as applicable) and the completed checklist must be uploaded. Acceptance rate approximately 18% with a median first decision around 24 days (BMJ metrics, verify at submission). AI policy follows BMJ/ICMJE: generative AI cannot be listed as an author; any substantive use must be disclosed in Methods and/or Acknowledgments; AI-generated or -manipulated images are not permitted.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Journal of Vascular and Interventional Radiology
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J Vasc Interv Radiol
|
|
5
|
+
- **Publisher:** Elsevier (SIR — Society of Interventional Radiology)
|
|
6
|
+
- **ISSN:** 1051-0443 / 1535-7732
|
|
7
|
+
- **Homepage:** https://www.jvir.org/
|
|
8
|
+
- **Author guidelines:** https://www.jvir.org/content/authorinfo
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
JVIR publishes original research, reviews, meta-analyses, and technical reports on vascular and interventional radiology. Coverage spans all IR procedures including embolization, ablation, vascular access, drainage, thrombolysis, and emerging minimally invasive techniques. The journal also covers quality improvement, practice standards, and clinical outcomes research in IR.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
interventional radiology, vascular interventions, embolization, tumor ablation, percutaneous biopsy, drainage, thrombolysis, IVC filter, venous access, TIPS, TACE, Y-90 radioembolization, IR outcomes, complication classification, quality improvement, standards of practice, image-guided therapy
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Clinical Investigation
|
|
18
|
+
- Clinical Practice
|
|
19
|
+
- Technical Report
|
|
20
|
+
- Case Report
|
|
21
|
+
- Review Article
|
|
22
|
+
- Systematic Review / Meta-Analysis
|
|
23
|
+
- Letter to the Editor
|
|
24
|
+
|
|
25
|
+
## Classification
|
|
26
|
+
- **Tier:** Q2
|
|
27
|
+
- **Open Access:** Hybrid (Elsevier OA option)
|
|
28
|
+
- **Field:** Radiology / Interventional radiology
|
|
29
|
+
|
|
30
|
+
## Special Notes
|
|
31
|
+
JVIR is the official journal of the Society of Interventional Radiology (SIR). SIR complication classification is mandatory for procedure studies. The journal publishes SIR standards of practice documents and quality improvement studies. JVIR has a North American and international readership. For European-focused IR studies or CBCT-guided intervention meta-analyses, consider CVIR as an alternative or companion target.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Journal of Biomedical Informatics
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J Biomed Inform, JBI
|
|
5
|
+
- **Publisher:** Elsevier
|
|
6
|
+
- **ISSN:** 1532-0464 / 1532-0480
|
|
7
|
+
- **Homepage:** https://www.sciencedirect.com/journal/journal-of-biomedical-informatics
|
|
8
|
+
- **Author guidelines:** https://www.elsevier.com/journals/journal-of-biomedical-informatics/1532-0464/guide-for-authors
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
Journal of Biomedical Informatics publishes research on computational and informatics methods applied to biomedical data. Coverage includes clinical informatics, health information systems, electronic health records, clinical NLP, knowledge representation, decision support systems, and data science applied to health data. It bridges computer science and clinical medicine through information technology.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
biomedical informatics, clinical informatics, electronic health records, clinical decision support, natural language processing, health data science, knowledge representation, ontology, phenotyping, clinical NLP, EHR, prediction models, machine learning clinical data, patient outcomes, data integration
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Research
|
|
18
|
+
- Review Article
|
|
19
|
+
- Methodological Review
|
|
20
|
+
- Short Communication
|
|
21
|
+
- Special Communication
|
|
22
|
+
|
|
23
|
+
## Classification
|
|
24
|
+
- **Tier:** Q1
|
|
25
|
+
- **Open Access:** Hybrid
|
|
26
|
+
- **Field:** Medical informatics
|
|
27
|
+
|
|
28
|
+
## Special Notes
|
|
29
|
+
JBI is distinguished from image-focused AI journals by its emphasis on structured clinical data (EHR, claims, lab results) rather than imaging data. It values methodological rigor and clinical applicability. Studies on large language models for clinical NLP, clinical prediction models, and health information exchange are well-suited. The journal requires clear description of data provenance and clinical context.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# The Journal of Clinical Endocrinology & Metabolism (JCEM)
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J Clin Endocrinol Metab
|
|
5
|
+
- **Publisher:** Oxford University Press (on behalf of the Endocrine Society)
|
|
6
|
+
- **ISSN:** 0021-972X (print) / 1945-7197 (online)
|
|
7
|
+
- **Homepage:** https://academic.oup.com/jcem
|
|
8
|
+
- **Author guidelines:** https://academic.oup.com/jcem/pages/Author_Guidelines
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
JCEM positions itself as "the world's leading peer-reviewed journal for endocrine clinical research and clinical practice." Article types span original research, reviews, case reports, commentaries, and consensus statements covering endocrinology, metabolism, diabetes, thyroid, bone, reproductive endocrinology, and adrenal/pituitary disease.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
clinical endocrinology, metabolism, diabetes, thyroid, bone disease, reproductive endocrinology, adrenal disease, pituitary disease, metabolic syndrome, insulin resistance, cardio-metabolic, obesity, lipid metabolism, cardiovascular-kidney-metabolic, CKM staging
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Clinical Research Article (Original)
|
|
18
|
+
- Approach to the Patient
|
|
19
|
+
- Mini-review
|
|
20
|
+
- Meta-analysis
|
|
21
|
+
- Editorial
|
|
22
|
+
- Commentary
|
|
23
|
+
- Letter to the Editor
|
|
24
|
+
- Report and Recommendation (society/consensus)
|
|
25
|
+
|
|
26
|
+
## Classification
|
|
27
|
+
- **Tier:** Q1 (Endocrine Society flagship)
|
|
28
|
+
- **Open Access:** Hybrid — page charge model (USD 99–119 per PDF page member/non-member; color figure surcharge USD 235–735); open access option separate via OUP open-access portal
|
|
29
|
+
- **Field:** Clinical endocrinology and metabolism
|
|
30
|
+
|
|
31
|
+
## Special Notes
|
|
32
|
+
Editor-in-Chief Paul M. Stewart, MD. Original Articles do not have a stated upper word limit (Approach to the Patient 2,000–5,000 words; Mini-reviews 2,000–5,000 words). Required **250-word structured abstract describing purpose, methods, results, and main conclusions in complete sentences without direct text references**. References use **AMA citation style with consecutive numerical ordering** and the guideline states "List all authors for the initial submission" (no first-N-then-et-al truncation at submission stage). AI policy (verbatim): "The use of artificial intelligence (AI) tools must be disclosed during the submission process and also described in the Methods or Acknowledgments sections of the text." Reviewers are explicitly prohibited from uploading any part of a manuscript into LLM tools during review. Submission portal: https://www.editorialmanager.com/jcem/. Choose JCEM when the metabolic-syndrome / insulin-resistance / cardio-metabolic mechanism is the primary scientific contribution and cardiovascular outcomes serve a supporting role (rather than the inverse).
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Verification
|
|
38
|
+
- **Source:** https://academic.oup.com/jcem/pages/Author_Guidelines
|
|
39
|
+
- **Date (harvested from private profile):** 2026-05-20
|
|
40
|
+
- **Date (promoted to public):** 2026-05-21
|
package/skills/find-journal/references/journal_profiles/Journal_of_Magnetic_Resonance_Imaging.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Journal of Magnetic Resonance Imaging
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** JMRI, J Magn Reson Imaging
|
|
5
|
+
- **Publisher:** Wiley (International Society for Magnetic Resonance in Medicine)
|
|
6
|
+
- **ISSN:** 1053-1807 / 1522-2586
|
|
7
|
+
- **Homepage:** https://onlinelibrary.wiley.com/journal/15222586
|
|
8
|
+
- **Author guidelines:** https://onlinelibrary.wiley.com/page/journal/15222586/homepage/forauthors.html
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
JMRI publishes original research on all aspects of magnetic resonance imaging in medicine, including technical development, clinical applications, and translational research. It covers MRI across all body systems and disease categories, with particular strength in musculoskeletal, neuroimaging, abdominal, and cardiac MRI.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
magnetic resonance imaging, MRI, MR technique, diffusion-weighted imaging, perfusion imaging, MR spectroscopy, contrast agents, gadolinium, liver MRI, cardiac MRI, musculoskeletal MRI, neuroimaging, quantitative MRI, radiomics, deep learning MRI
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Research
|
|
18
|
+
- Technical Note
|
|
19
|
+
- Review Article
|
|
20
|
+
- Case Report (as Brief Report)
|
|
21
|
+
- Letter to the Editor
|
|
22
|
+
- Pictorial Essay
|
|
23
|
+
|
|
24
|
+
## Classification
|
|
25
|
+
- **Tier:** Q1
|
|
26
|
+
- **Open Access:** Hybrid
|
|
27
|
+
- **Field:** Radiology / MRI
|
|
28
|
+
|
|
29
|
+
## Special Notes
|
|
30
|
+
JMRI is the official journal of ISMRM and is the premier MRI-focused journal. It strongly favors studies with MRI-specific technical innovation or clinical validation. AI studies focused on MRI data (segmentation, detection, quantification) are welcomed. The journal values reproducibility and encourages sharing of code and data.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Journal of Nuclear Medicine
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** JNM, J Nucl Med
|
|
5
|
+
- **Publisher:** Society of Nuclear Medicine and Molecular Imaging (SNMMI)
|
|
6
|
+
- **ISSN:** 0161-5505 / 2159-662X
|
|
7
|
+
- **Homepage:** https://jnm.snmjournals.org/
|
|
8
|
+
- **Author guidelines:** https://jnm.snmjournals.org/page/author-instructions
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
JNM publishes original research in nuclear medicine, molecular imaging, and theranostics. Coverage includes PET, SPECT, radionuclide therapy, radiopharmaceuticals, and hybrid imaging (PET/CT, PET/MRI). The journal emphasizes clinical and translational studies involving radiotracer development, dosimetry, and molecular-targeted diagnostics and therapies.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
nuclear medicine, PET, SPECT, PET/CT, PET/MRI, radionuclide therapy, theranostics, radiopharmaceuticals, FDG, PSMA, molecular imaging, dosimetry, radiotracer, oncology imaging, neuroendocrine tumors
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Research (Clinical and Basic Science)
|
|
18
|
+
- Brief Communication
|
|
19
|
+
- Review Article
|
|
20
|
+
- State of the Art
|
|
21
|
+
- Case Report (Interesting Image)
|
|
22
|
+
- Letters to the Editor
|
|
23
|
+
- Continuing Education
|
|
24
|
+
|
|
25
|
+
## Classification
|
|
26
|
+
- **Tier:** Q1
|
|
27
|
+
- **Open Access:** Hybrid (author choice)
|
|
28
|
+
- **Field:** Nuclear medicine / Molecular imaging
|
|
29
|
+
|
|
30
|
+
## Special Notes
|
|
31
|
+
JNM is the flagship journal of nuclear medicine. It has strong interest in theranostics (PSMA, Lu-177, etc.) and novel radiotracer development. AI applications in nuclear medicine (automated quantification, lesion detection on PET) are increasingly published. The journal has a companion publication, Journal of Nuclear Medicine Technology.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Journal of Stroke
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** J Stroke
|
|
5
|
+
- **Publisher:** Korean Stroke Society
|
|
6
|
+
- **ISSN:** 2287-6391 (print) / 2287-6405 (online)
|
|
7
|
+
- **Homepage:** http://j-stroke.org
|
|
8
|
+
- **Author guidelines:** https://j-stroke.org/authors/authors.php
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
Journal of Stroke publishes original research, reviews, guidelines, and special reports on cerebrovascular disease, including epidemiology, risk factors, pathophysiology, diagnosis, acute treatment, secondary prevention, neurorehabilitation, and stroke systems of care. The journal prioritizes clinically translatable work and welcomes international submissions, with a strong tradition of regional stroke research from Asia.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
ischemic stroke, hemorrhagic stroke, intracerebral hemorrhage, subarachnoid hemorrhage, transient ischemic attack, acute stroke treatment, thrombolysis, mechanical thrombectomy, stroke prevention, cerebrovascular imaging, cerebral small vessel disease, stroke epidemiology, stroke outcome, neurorehabilitation, stroke guideline
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Special Review
|
|
18
|
+
- Review
|
|
19
|
+
- Original Article
|
|
20
|
+
- Guideline
|
|
21
|
+
- Special Report
|
|
22
|
+
- Editorial
|
|
23
|
+
- Letter to the Editor
|
|
24
|
+
- Response to Letter
|
|
25
|
+
|
|
26
|
+
## Classification
|
|
27
|
+
- **Tier:** Q1
|
|
28
|
+
- **Open Access:** Full OA (CC BY-NC 4.0, no APC)
|
|
29
|
+
- **Field:** Stroke / cerebrovascular disease
|
|
30
|
+
|
|
31
|
+
## Special Notes
|
|
32
|
+
Official journal of the Korean Stroke Society, published three times per year. Full open access with no article processing charge — a rare combination for a Q1 stroke journal. Editorial Office is hosted at Asan Medical Center, Ulsan University College of Medicine. Structured abstract of 250 words required for Original Articles; references follow Vancouver numbered style. Choose Journal of Stroke over Stroke (AHA) when the target audience is regional (Asia-Pacific) or when no-APC OA is a priority. AI policy: not specified in the author guidelines (last revised 2024-01-31); default to ICMJE — disclose any AI-assisted writing in Methods or Acknowledgments.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Korean Journal of Radiology
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** Korean J Radiol
|
|
5
|
+
- **Publisher:** Korean Society of Radiology
|
|
6
|
+
- **ISSN:** 1229-6929 (Print) / 2005-8330 (Electronic)
|
|
7
|
+
- **Homepage:** https://www.kjronline.org/
|
|
8
|
+
- **Author guidelines:** https://www.kjronline.org/index.php?body=Instruction
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
KJR publishes original research, reviews, and special articles across all subspecialties of diagnostic and interventional radiology. The journal explicitly excludes radiation oncology, dentistry, dental radiology, dental surgery, and translational/basic nuclear medicine studies. It has particular strength in AI/radiomics, Korean and East Asian population studies, and diseases prevalent in East Asia such as hepatocellular carcinoma, gastric cancer, and thyroid cancer.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
diagnostic radiology, AI in radiology, radiomics, deep learning, Korean radiology, hepatocellular carcinoma, thyroid imaging, gastric cancer imaging, CT, MRI, ultrasound, interventional radiology, liver imaging, breast imaging, chest imaging, structured reporting, FDA/medical-device evaluation
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Article
|
|
18
|
+
- Brief Research Report
|
|
19
|
+
- Review
|
|
20
|
+
- Pictorial Essay
|
|
21
|
+
- Focus
|
|
22
|
+
- Recommendation and Guideline
|
|
23
|
+
- Editorial
|
|
24
|
+
- Uncover This Tech Term
|
|
25
|
+
- Emerging Rad Dx
|
|
26
|
+
- Letter to the Editor
|
|
27
|
+
|
|
28
|
+
## Classification
|
|
29
|
+
- **Tier:** Q1
|
|
30
|
+
- **Open Access:** Full OA (CC BY-NC 4.0, DOAJ indexed)
|
|
31
|
+
- **Field:** Radiology (general)
|
|
32
|
+
|
|
33
|
+
## Special Notes
|
|
34
|
+
KJR is the leading English-language radiology journal in Asia, fully open access (USD 100 APC for accepted manuscripts; invited articles, Uncover This Tech Term, Emerging Rad Dx, and Letters are exempt). Indexed in PubMed/MEDLINE, SCIE, and Scopus. Particularly receptive to AI/radiomics studies and Korean population data. Faster turnaround than Western journals (Minor Revision within 30 days; Major Revision within 60 days). References: Vancouver style with first six authors listed, then "et al." (≥7 authors). AI policy follows the journal's "Ethical and Responsible Use of Generative AI" statement (KJR 2026; https://doi.org/10.3348/kjr.2026.0166): AI cannot be author or primary scholarly source; AI use beyond routine language assistance must be disclosed in the relevant section or Acknowledgments; AI as study subject must be described in Materials and Methods; reviewers/editors must preserve confidentiality and disclose AI use beyond routine language assistance.
|
|
35
|
+
|
|
36
|
+
## Verification
|
|
37
|
+
- **Source:** KJR-Instructions-202603.pdf (March 2026 official author instructions)
|
|
38
|
+
- **Date:** 2026-05-21
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Korean Circulation Journal (KCJ)
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** Korean Circ J
|
|
5
|
+
- **Publisher:** The Korean Society of Cardiology / The Korean Cardiac Research Foundation
|
|
6
|
+
- **ISSN:** 1738-5520 (print) / 1738-5555 (online)
|
|
7
|
+
- **Homepage:** https://e-kcj.org/
|
|
8
|
+
- **Author guidelines:** https://e-kcj.org/index.php?body=instructions
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
KCJ is the official journal of the Korean Society of Cardiology, covering all aspects of cardiovascular medicine including original research of preclinical and clinical findings, state-of-the-art reviews, perspectives for outbreaking issues, editorials, images in cardiovascular medicine, and letters to the editor.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
cardiology, cardiovascular disease, Korean cohort, clinical cardiology, coronary artery disease, atherosclerosis, heart failure, arrhythmia, hypertension, preventive cardiology, cardiac imaging, Asian cardiology, KSC official journal
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Research
|
|
18
|
+
- State of the Art Review
|
|
19
|
+
- Perspective
|
|
20
|
+
- Image in Cardiovascular Medicine
|
|
21
|
+
- Letter to the Editor
|
|
22
|
+
- Research Letter
|
|
23
|
+
|
|
24
|
+
## Classification
|
|
25
|
+
- **Tier:** Q3 (Korean society flagship)
|
|
26
|
+
- **Open Access:** Open Access, peer-reviewed, monthly
|
|
27
|
+
- **Field:** Cardiology — Korean Society of Cardiology flagship
|
|
28
|
+
|
|
29
|
+
## Special Notes
|
|
30
|
+
Editor-in-Chief In-Ho Chae, MD, PhD. Original Research capped at **5,000 words**, 8 figures/tables, with a **250-word structured abstract using Background and Objectives / Methods / Results / Conclusions**. State of the Art Reviews ≤10,000 words. Perspectives ≤2,000 words, 4 figures/tables; Research Letter ≤800 words, 1 figure/table; Letter to the Editor ≤500 words. References use **Vancouver style with numbered references in citation order**; "List all authors if 6 or fewer; otherwise, list the first 3 and add et al." Submission portal: https://kcj.edmgr.com. **AI policy is not displayed on the Instructions for Authors page** as of the audit date — refer directly to KCJ's editorial office for AI disclosure expectations. APC not specified on the guidelines page; verify at the journal's open-access policy page if Gold OA is needed. Natural home for Korean cardiovascular cohort papers that need a guaranteed publication path and KSC community visibility — best used as a safety-net target in a cascade strategy or as primary when Korean clinical-practice relevance is the dominant framing.
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Verification
|
|
36
|
+
- **Source:** https://e-kcj.org/index.php?body=instructions
|
|
37
|
+
- **Date (harvested from private profile):** 2026-05-20
|
|
38
|
+
- **Date (promoted to public):** 2026-05-21
|
package/skills/find-journal/references/journal_profiles/Korean_Journal_of_Internal_Medicine.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Korean Journal of Internal Medicine
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** KJIM
|
|
5
|
+
- **Publisher:** Korean Association of Internal Medicine
|
|
6
|
+
- **ISSN:** 1226-3303 / 2005-6648
|
|
7
|
+
- **Homepage:** https://www.kjim.org/
|
|
8
|
+
- **Author guidelines:** https://www.kjim.org/authors/authors.php
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
KJIM publishes original research, reviews, and clinical case reports across all subspecialties of internal medicine — endocrinology, gastroenterology, hematology-oncology, infectious diseases, nephrology, pulmonology, rheumatology, cardiology, geriatrics — with emphasis on Korean and East Asian clinical research.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
internal medicine, Korean cohort, East Asian medicine, endocrinology, gastroenterology, hematology, oncology, infectious disease, nephrology, pulmonology, rheumatology, cardiology, geriatrics, health screening, NHIS, clinical research, observational cohort
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Article
|
|
18
|
+
- Review
|
|
19
|
+
- Editorial
|
|
20
|
+
- Images of Interest
|
|
21
|
+
- Correspondence
|
|
22
|
+
|
|
23
|
+
## Classification
|
|
24
|
+
- **Tier:** Q2 (general internal medicine; verify current JCR rank)
|
|
25
|
+
- **Open Access:** Full OA (CC BY-NC); APC $1,000 for Original Articles (2024-10-01)
|
|
26
|
+
- **Field:** Internal medicine (general)
|
|
27
|
+
|
|
28
|
+
## Special Notes
|
|
29
|
+
Korean Association of Internal Medicine flagship; bimonthly publication; PubMed/PMC indexed; structured abstract requires Background/Aims, Methods, Results, Conclusions; KJIM-specific "Key Message" section is mandatory in Original Articles. Initial decision typically within 4 weeks. AI policy: mandatory AI disclosure in Acknowledgments with model name + version + source + application method; AI cannot be listed as author.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Verification
|
|
35
|
+
- **Source:** https://www.kjim.org/authors/authors.php
|
|
36
|
+
- **Date:** 2026-05-21
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Lancet Diabetes & Endocrinology
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** Lancet Diabetes Endocrinol
|
|
5
|
+
- **Publisher:** Elsevier (The Lancet Group)
|
|
6
|
+
- **ISSN:** 2213-8587 / 2213-8595
|
|
7
|
+
- **Homepage:** https://www.thelancet.com/journals/landia/home
|
|
8
|
+
- **Author guidelines:** https://www.thelancet.com/landia/information-for-authors
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
Lancet Diabetes & Endocrinology publishes original research, reviews, and clinical studies in diabetes, endocrinology, and metabolism. Coverage includes type 1 and type 2 diabetes, obesity, thyroid disorders, adrenal disorders, pituitary disease, bone and mineral metabolism, reproductive endocrinology, and metabolic syndrome. The journal prioritizes large clinical trials, epidemiological studies, and translational research with global health implications.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
diabetes mellitus, type 2 diabetes, type 1 diabetes, obesity, thyroid disease, endocrinology, metabolic syndrome, insulin resistance, GLP-1 receptor agonist, HbA1c, diabetic complications, adrenal insufficiency, Cushing syndrome, osteoporosis, pituitary adenoma, PCOS, gestational diabetes
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Original Research (Articles)
|
|
18
|
+
- Review
|
|
19
|
+
- Series
|
|
20
|
+
- Seminar
|
|
21
|
+
- Comment
|
|
22
|
+
- Correspondence
|
|
23
|
+
- Clinical Picture
|
|
24
|
+
- Viewpoint
|
|
25
|
+
|
|
26
|
+
## Classification
|
|
27
|
+
- **Tier:** Q1
|
|
28
|
+
- **Impact Factor:** ~42
|
|
29
|
+
- **Open Access:** Hybrid
|
|
30
|
+
- **Field:** Endocrinology / Diabetes
|
|
31
|
+
|
|
32
|
+
## Special Notes
|
|
33
|
+
Lancet Diabetes & Endocrinology is the premier endocrinology/diabetes specialty journal within the Lancet family. Extremely competitive (acceptance rate <10%). Publishes landmark diabetes trials (e.g., SGLT2 inhibitor, GLP-1 RA outcomes). Imaging studies accepted only when part of major clinical trials (e.g., body composition imaging, pancreatic imaging in diabetes). Follows Lancet Group editorial standards: strict adherence to ICMJE, EQUATOR checklists mandatory, and preference for large multicenter international RCTs or prospective cohorts.
|
|
34
|
+
|
|
35
|
+
## AI Writing Disclosure Policy
|
|
36
|
+
- **Requirement level:** Required
|
|
37
|
+
- **Permitted scope:** Restrictive — Lancet Group policy permits AI for language editing only; AI cannot contribute to scientific content generation; AI cannot be listed as author
|
|
38
|
+
- **Disclosure location:** Acknowledgments section
|
|
39
|
+
- **AI-generated images:** Not permitted for scientific content
|
|
40
|
+
- **Policy URL:** https://www.thelancet.com/landia/information-for-authors
|
package/skills/find-journal/references/journal_profiles/Lancet_Gastroenterology_and_Hepatology.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Lancet Gastroenterology & Hepatology
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
- **Abbreviation:** Lancet Gastroenterol Hepatol
|
|
5
|
+
- **Publisher:** Elsevier (The Lancet Group)
|
|
6
|
+
- **ISSN:** 2468-1253
|
|
7
|
+
- **Homepage:** https://www.thelancet.com/journals/langas/home
|
|
8
|
+
- **Author guidelines:** https://www.thelancet.com/langas/information-for-authors
|
|
9
|
+
|
|
10
|
+
## Scope
|
|
11
|
+
The Lancet Gastroenterology & Hepatology publishes original research, reviews, comments, and clinical studies across the full spectrum of gastroenterology and hepatology. The journal favors large clinical trials, multicentre or population-scale epidemiology, evidence-synthesis (Cochrane-style and individual-patient-data meta-analyses), and translational studies with global health implications. Within hepatology it has been a primary venue for MASLD/NAFLD natural-history evidence (e.g., Hagström 2024 systematic review of natural-history rates), nomenclature debate following the 2023 multisociety Delphi statement, hepatitis B/C elimination programmes, and cirrhosis/portal-hypertension management trials.
|
|
12
|
+
|
|
13
|
+
## Scope Keywords
|
|
14
|
+
gastroenterology, hepatology, MASLD, NAFLD, MASH, MetALD, ALD, alcohol-associated liver disease, viral hepatitis, hepatitis B, hepatitis C, HCC, hepatocellular carcinoma, cirrhosis, portal hypertension, IBD, Crohn's disease, ulcerative colitis, irritable bowel syndrome, gastrointestinal cancer, liver transplantation, FIB-4, natural history, comparator-refinement methodology, large-cohort epidemiology, Cochrane meta-analysis
|
|
15
|
+
|
|
16
|
+
## Article Types Accepted
|
|
17
|
+
- Articles (Original Research; large RCTs, observational cohort, IPD meta-analysis)
|
|
18
|
+
- Review
|
|
19
|
+
- Series (commissioned thematic series)
|
|
20
|
+
- Seminar
|
|
21
|
+
- Comment (invited editorial)
|
|
22
|
+
- Correspondence
|
|
23
|
+
- Clinical Picture
|
|
24
|
+
- Viewpoint
|
|
25
|
+
- Personal View
|
|
26
|
+
|
|
27
|
+
## Classification
|
|
28
|
+
- **Tier:** Q1 gastroenterology and hepatology (top-tier specialty journal in Lancet group)
|
|
29
|
+
- **Open Access:** Hybrid (OA optional; APC ~US$5,500 for Gold OA)
|
|
30
|
+
- **Field:** gastroenterology and hepatology — clinical, epidemiological, translational
|
|
31
|
+
|
|
32
|
+
## Special Notes
|
|
33
|
+
**Submission guidelines are a near-verbatim shared template across the Lancet Group specialty journals (Lancet Diabetes & Endocrinology, Lancet GH, Lancet Respiratory Medicine, etc.) — same article structure, abstract, statement-of-novelty wording, AI policy, and supplementary requirements.** Beyond what the guidelines disclose, the practically relevant non-guideline factors for this venue are documented below.
|
|
34
|
+
|
|
35
|
+
### Editorial culture (non-guideline)
|
|
36
|
+
- **Pre-submission inquiry strongly advised.** ~60–70 % desk-reject rate for original research; pre-submission inquiry (1-page abstract + cover letter to editor@lancet.com) is the standard route to test scope fit before full submission. Decisions on inquiries typically arrive within 5–10 working days.
|
|
37
|
+
- **Strong preference for "what changes practice or guideline" framing** in cover letter and Discussion. Methodology-only papers (e.g., comparator refinement as method) need an explicit "how this will change MASLD natural-history evidence appraisal worldwide" paragraph.
|
|
38
|
+
- **Research in Context box mandatory at acceptance** (separate from abstract): three sub-headings (Evidence before this study / Added value of this study / Implications of all the available evidence). Drafting it pre-submission helps internal triage even though it is not officially required at initial submission.
|
|
39
|
+
- **Statement of novelty / data-sharing statement mandatory** in cover letter (not in main paper). Lancet Group requires deposition pathway specified at submission, not at revision.
|
|
40
|
+
|
|
41
|
+
### MASLD-natural-history precedent
|
|
42
|
+
- The journal has been the de-facto reference venue for MASLD natural-history evidence since 2024 (Hagström L, et al. Clinical and prognostic outcomes after hepatocellular cancer screening, Lancet Gastroenterol Hepatol; and the post-2023 Delphi nomenclature commentaries). A Korean health-screening cohort applying the 2023 nomenclature with comparator-refinement methodology is a direct continuation of that line of evidence.
|
|
43
|
+
- Reviewer pool overlaps substantially with Hepatology (AASLD), Journal of Hepatology (EASL), and Hepatology International (APASL). Suggested reviewers from these venues are typical.
|
|
44
|
+
|
|
45
|
+
### Korean cohort context
|
|
46
|
+
- East-Asian cohort epidemiology is regularly published, but the journal has a documented preference for *international or multi-cohort* validation (e.g., paired Korean + UK Biobank + NHANES analyses). Single-centre Korean cohorts are accepted when the methodological contribution (e.g., comparator refinement as a generalizable method) is strong enough to justify international relevance — the cover letter should pre-empt the "single-centre / Asian-only" reviewer concern.
|
|
47
|
+
|
|
48
|
+
## Acceptance Rate (estimated)
|
|
49
|
+
~5–8 % overall (Lancet specialty journals' published acceptance bands; ~60–70 % desk-rejected before peer review, of the remainder ~25–35 % accepted).
|