psyclaw 0.28.1 → 0.28.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/README.md +5 -5
  2. package/agents/recommended/catalog.json +1 -1
  3. package/dist/src/adapters/pi/extension.js +79 -25
  4. package/dist/src/adapters/pi/extension.js.map +1 -1
  5. package/dist/src/ars/keybindings.d.ts +13 -0
  6. package/dist/src/ars/keybindings.js +50 -0
  7. package/dist/src/ars/keybindings.js.map +1 -0
  8. package/dist/src/ars/mode-editor.d.ts +25 -0
  9. package/dist/src/ars/mode-editor.js +78 -0
  10. package/dist/src/ars/mode-editor.js.map +1 -0
  11. package/dist/src/ars/profile.d.ts +4 -1
  12. package/dist/src/ars/profile.js +23 -6
  13. package/dist/src/ars/profile.js.map +1 -1
  14. package/dist/src/chat.js +3 -0
  15. package/dist/src/chat.js.map +1 -1
  16. package/dist/src/panel/server.js +1 -1
  17. package/dist/src/panel/server.js.map +1 -1
  18. package/package.json +10 -3
  19. package/vendor/academic-paper-skills/LICENSE +21 -0
  20. package/vendor/academic-paper-skills/NOTICE.md +7 -0
  21. package/vendor/academic-paper-skills/PSYCLAW_SOURCE.json +14 -0
  22. package/vendor/academic-paper-skills/academic-paper-composer/SKILL.md +840 -0
  23. package/vendor/academic-paper-skills/academic-paper-composer/references/section_guides.md +675 -0
  24. package/vendor/academic-paper-skills/academic-paper-composer/references/writing_standards.md +629 -0
  25. package/vendor/academic-paper-skills/academic-paper-composer/scripts/chapter_quality_check.py +470 -0
  26. package/vendor/academic-paper-skills/academic-paper-composer/scripts/final_evaluation.py +550 -0
  27. package/vendor/academic-paper-skills/academic-paper-strategist/SKILL.md +670 -0
  28. package/vendor/academic-paper-skills/academic-paper-strategist/references/quality_standards.md +336 -0
  29. package/vendor/academic-paper-skills/academic-paper-strategist/references/search_strategy.md +459 -0
  30. package/vendor/academic-paper-skills/academic-paper-strategist/scripts/evaluate_samples.py +300 -0
  31. package/vendor/academic-paper-skills/academic-paper-strategist/scripts/gap_analysis.py +399 -0
  32. package/vendor/ars/pi/wrapper.js +9 -0
  33. package/vendor/nature-skills/LICENSE +201 -0
  34. package/vendor/nature-skills/NOTICE.md +7 -0
  35. package/vendor/nature-skills/PSYCLAW_SOURCE.json +19 -0
  36. package/vendor/nature-skills/skills/nature-figure/README.md +107 -0
  37. package/vendor/nature-skills/skills/nature-figure/README_EN.md +107 -0
  38. package/vendor/nature-skills/skills/nature-figure/SKILL.md +154 -0
  39. package/vendor/nature-skills/skills/nature-figure/agents/openai.yaml +4 -0
  40. package/vendor/nature-skills/skills/nature-figure/evals/evals.json +325 -0
  41. package/vendor/nature-skills/skills/nature-figure/manifest.yaml +103 -0
  42. package/vendor/nature-skills/skills/nature-figure/references/ai-graphical-abstract-workflow.md +129 -0
  43. package/vendor/nature-skills/skills/nature-figure/references/api.md +576 -0
  44. package/vendor/nature-skills/skills/nature-figure/references/asset-adaptation.md +72 -0
  45. package/vendor/nature-skills/skills/nature-figure/references/backend-selection.md +118 -0
  46. package/vendor/nature-skills/skills/nature-figure/references/chart-types.md +348 -0
  47. package/vendor/nature-skills/skills/nature-figure/references/common-patterns.md +371 -0
  48. package/vendor/nature-skills/skills/nature-figure/references/demos.md +58 -0
  49. package/vendor/nature-skills/skills/nature-figure/references/design-theory.md +467 -0
  50. package/vendor/nature-skills/skills/nature-figure/references/figure-contract.md +122 -0
  51. package/vendor/nature-skills/skills/nature-figure/references/figure-legend-conventions.md +90 -0
  52. package/vendor/nature-skills/skills/nature-figure/references/multipanel-evidence-architecture.md +268 -0
  53. package/vendor/nature-skills/skills/nature-figure/references/nature-2026-observations.md +124 -0
  54. package/vendor/nature-skills/skills/nature-figure/references/nature-article-requirements.md +149 -0
  55. package/vendor/nature-skills/skills/nature-figure/references/openrouter-image-generation.md +141 -0
  56. package/vendor/nature-skills/skills/nature-figure/references/qa-contract.md +344 -0
  57. package/vendor/nature-skills/skills/nature-figure/references/r-template-index.md +66 -0
  58. package/vendor/nature-skills/skills/nature-figure/references/r-workflow.md +234 -0
  59. package/vendor/nature-skills/skills/nature-figure/references/template-catalog.md +33 -0
  60. package/vendor/nature-skills/skills/nature-figure/references/tutorials.md +260 -0
  61. package/vendor/nature-skills/skills/nature-figure/requirements.txt +1 -0
  62. package/vendor/nature-skills/skills/nature-figure/scripts/audit_figure_collisions.py +742 -0
  63. package/vendor/nature-skills/skills/nature-figure/scripts/audit_panel_alignment.py +933 -0
  64. package/vendor/nature-skills/skills/nature-figure/scripts/audit_pdf_text.py +152 -0
  65. package/vendor/nature-skills/skills/nature-figure/scripts/figure_safety.py +50 -0
  66. package/vendor/nature-skills/skills/nature-figure/scripts/generate_openrouter_schematic.py +260 -0
  67. package/vendor/nature-skills/skills/nature-figure/scripts/nature_figure_backend.py +93 -0
  68. package/vendor/nature-skills/skills/nature-figure/scripts/panel_alignment.R +188 -0
  69. package/vendor/nature-skills/skills/nature-figure/scripts/plot_templates.py +604 -0
  70. package/vendor/nature-skills/skills/nature-figure/scripts/validate_figure.py +835 -0
  71. package/vendor/nature-skills/skills/nature-figure/static/core/contract.md +55 -0
  72. package/vendor/nature-skills/skills/nature-figure/static/core/stance.md +41 -0
  73. package/vendor/nature-skills/skills/nature-figure/static/fragments/backend/python.md +56 -0
  74. package/vendor/nature-skills/skills/nature-figure/static/fragments/backend/r.md +63 -0
  75. package/vendor/nature-skills/skills/nature-figure/tests/test_figure_safety.py +209 -0
  76. package/vendor/nature-skills/skills/nature-polishing/README.md +58 -0
  77. package/vendor/nature-skills/skills/nature-polishing/README_EN.md +58 -0
  78. package/vendor/nature-skills/skills/nature-polishing/SKILL.md +111 -0
  79. package/vendor/nature-skills/skills/nature-polishing/agents/openai.yaml +4 -0
  80. package/vendor/nature-skills/skills/nature-polishing/manifest.yaml +101 -0
  81. package/vendor/nature-skills/skills/nature-polishing/references/latex-layout.md +211 -0
  82. package/vendor/nature-skills/skills/nature-polishing/references/nat-comms-2025-diction.md +73 -0
  83. package/vendor/nature-skills/skills/nature-polishing/references/phrasebank-playbook.md +175 -0
  84. package/vendor/nature-skills/skills/nature-polishing/references/published-article-patterns.md +126 -0
  85. package/vendor/nature-skills/skills/nature-polishing/references/section-moves.md +252 -0
  86. package/vendor/nature-skills/skills/nature-polishing/references/style-guardrails.md +94 -0
  87. package/vendor/nature-skills/skills/nature-polishing/references/writing-strategy.md +160 -0
  88. package/vendor/nature-skills/skills/nature-polishing/static/core/failure-modes.md +29 -0
  89. package/vendor/nature-skills/skills/nature-polishing/static/core/output-format.md +21 -0
  90. package/vendor/nature-skills/skills/nature-polishing/static/core/stance.md +26 -0
  91. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/generic.md +17 -0
  92. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/nat-comms.md +38 -0
  93. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/nat-mach-intell.md +102 -0
  94. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/nature.md +19 -0
  95. package/vendor/nature-skills/skills/nature-polishing/static/fragments/language/en.md +19 -0
  96. package/vendor/nature-skills/skills/nature-polishing/static/fragments/language/zh-to-en.md +19 -0
  97. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/algorithmic.md +18 -0
  98. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/hypothesis.md +17 -0
  99. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/methods.md +35 -0
  100. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/research.md +29 -0
  101. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/review.md +17 -0
  102. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/abstract.md +26 -0
  103. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/conclusion.md +15 -0
  104. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/discussion.md +48 -0
  105. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/intro.md +33 -0
  106. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/methods.md +26 -0
  107. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/results.md +61 -0
  108. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/title.md +17 -0
  109. package/vendor/nature-skills/skills/nature-ref-verifier/README.md +44 -0
  110. package/vendor/nature-skills/skills/nature-ref-verifier/README_EN.md +44 -0
  111. package/vendor/nature-skills/skills/nature-ref-verifier/SKILL.md +196 -0
  112. package/vendor/nature-skills/skills/nature-ref-verifier/agents/openai.yaml +4 -0
  113. package/vendor/nature-skills/skills/nature-ref-verifier/manifest.yaml +19 -0
  114. package/vendor/nature-skills/skills/nature-ref-verifier/references/common-patterns.md +96 -0
  115. package/vendor/nature-skills/skills/nature-shared/README.md +43 -0
  116. package/vendor/nature-skills/skills/nature-shared/README_EN.md +43 -0
  117. package/vendor/nature-skills/skills/nature-shared/SKILL.md +33 -0
  118. package/vendor/nature-skills/skills/nature-shared/agents/openai.yaml +6 -0
  119. package/vendor/nature-skills/skills/nature-shared/core/consistency-sweep.md +122 -0
  120. package/vendor/nature-skills/skills/nature-shared/core/discussion-argument-language.md +192 -0
  121. package/vendor/nature-skills/skills/nature-shared/core/ethics.md +88 -0
  122. package/vendor/nature-skills/skills/nature-shared/core/main-text-discipline.md +179 -0
  123. package/vendor/nature-skills/skills/nature-shared/core/nature-abstract.md +171 -0
  124. package/vendor/nature-skills/skills/nature-shared/core/nature-introduction.md +164 -0
  125. package/vendor/nature-skills/skills/nature-shared/core/nature-results-discussion.md +215 -0
  126. package/vendor/nature-skills/skills/nature-shared/core/paper-type-taxonomy.md +41 -0
  127. package/vendor/nature-skills/skills/nature-shared/core/reader-workflow.md +21 -0
  128. package/vendor/nature-skills/skills/nature-shared/core/research-compliance.md +192 -0
  129. package/vendor/nature-skills/skills/nature-shared/core/terminology-ledger.md +58 -0
  130. package/vendor/nature-skills/skills/nature-shared/journal-formats/nat-comms.md +139 -0
  131. package/vendor/nature-skills/skills/nature-shared/journal-formats/nature-machine-intelligence.md +431 -0
  132. package/vendor/nature-skills/skills/nature-shared/journal-formats/nature.md +313 -0
  133. package/vendor/nature-skills/skills/nature-shared/manifest.yaml +52 -0
  134. package/vendor/nature-skills/skills/nature-shared/scripts/check_consistency.py +273 -0
  135. package/vendor/nature-skills/skills/nature-shared/tests/test_check_consistency.py +63 -0
@@ -0,0 +1,192 @@
1
+ # Nature Portfolio research-compliance routing
2
+
3
+ Use this conditional reference when a manuscript involves regulated research,
4
+ specialist reporting forms, sensitive images, structures, samples or materials.
5
+ It is a readiness screen, not legal, clinical or ethics-board advice.
6
+
7
+ ## Contents
8
+
9
+ 1. Applicability gate
10
+ 2. Reporting summaries
11
+ 3. Human-participant research
12
+ 4. Animal research
13
+ 5. Clinical research
14
+ 6. Image integrity
15
+ 7. Structures, chemistry and materials
16
+ 8. Taxonomy and provenance-sensitive samples
17
+ 9. Audit output
18
+ 10. Official sources
19
+
20
+ ## 1. Applicability gate
21
+
22
+ Classify every item as `required`, `not applicable`, or
23
+ `AUTHOR_INPUT_NEEDED`. Never infer an approval, consent, registration, permit,
24
+ protocol, accession, validation report or exemption.
25
+
26
+ Open only the relevant blocks below. Do not burden a computational or
27
+ theoretical manuscript with unrelated biomedical requirements.
28
+
29
+ ## 2. Reporting summaries
30
+
31
+ Require the relevant current Nature Portfolio form when the study is:
32
+
33
+ - life sciences
34
+ - behavioural or social sciences
35
+ - ecology, evolution or environmental science
36
+ - a physical-science Article in a specifically covered area, including solar
37
+ cells or claims of lasing
38
+
39
+ The form is supplied to editors and reviewers and published with accepted
40
+ manuscripts. Advanced form features require Adobe Reader. Treat the form as a
41
+ substantive cross-check against Methods, statistics and figure legends, not as
42
+ a checkbox exercise.
43
+
44
+ ## 3. Human-participant research
45
+
46
+ Check that the submitted manuscript states:
47
+
48
+ - compliance with the Declaration of Helsinki where applicable
49
+ - the approving ethics committee's name and reference number
50
+ - details of any formally granted exemption and the committee granting it
51
+ - that informed consent was obtained from all participants
52
+ - consent for publication of identifiable information or images when relevant
53
+ - how population categories such as race, ethnicity, sex and gender were
54
+ defined, justified and handled analytically when they are used
55
+ - safeguards for vulnerable groups, privacy and sensitive data
56
+
57
+ Route controlled-access data wording to `nature-data`.
58
+
59
+ ## 4. Animal research
60
+
61
+ For experiments involving live vertebrates or higher invertebrates, check:
62
+
63
+ - the corresponding author's confirmation of compliance with relevant rules
64
+ - the institutional or licensing committee and relevant approval details
65
+ - sex and other animal characteristics that may affect results
66
+ - housing and husbandry details where they may influence results
67
+ - reporting against ARRIVE 2.0 where applicable
68
+ - accepted anaesthesia and euthanasia practice
69
+
70
+ Flag methods that appear inconsistent with accepted welfare norms rather than
71
+ trying to repair the wording.
72
+
73
+ ## 5. Clinical research
74
+
75
+ ### Registration
76
+
77
+ - register every qualifying prospective clinical trial in an acceptable WHO
78
+ primary registry or ClinicalTrials.gov before enrolment of the first
79
+ participant
80
+ - state the trial number clearly in both the abstract and Methods
81
+ - treat primary results from an unregistered qualifying trial as a blocking
82
+ issue
83
+
84
+ ### Submission files
85
+
86
+ Clinical trial reports should include:
87
+
88
+ - the latest English protocol, signed and dated
89
+ - all amendments plus a summary and rationale for changes
90
+ - the latest English statistical analysis plan when separate
91
+ - machine-readable versions of original documents not written in English
92
+ - visible design, analysis and outcome-reporting content even when sensitive
93
+ material is redacted
94
+
95
+ Confirm that the primary analysis matches the prespecified protocol and SAP.
96
+ Explain deviations in Methods. Label unplanned post-hoc or exploratory analyses
97
+ in the abstract and manuscript.
98
+
99
+ ### Study-type reporting
100
+
101
+ Use the current guideline that matches the design, including:
102
+
103
+ - CONSORT 2025 and relevant extensions for randomized trials
104
+ - CONSORT-AI for clinical trials involving AI interventions
105
+ - STROBE for observational studies
106
+ - PRISMA for systematic reviews and meta-analyses
107
+ - STARD or REMARK for diagnostic/prognostic biomarker studies
108
+ - TRIPOD or TRIPOD-AI for prediction models
109
+ - TARGET for observational target-trial emulation
110
+ - CARE or the applicable N-of-1 CONSORT extension for case reports/series
111
+ - BRISQ Tier 1 characteristics for human biospecimens when relevant
112
+
113
+ Do not provide clinical-statistical advice beyond manuscript reporting checks
114
+ without the protocol and SAP.
115
+
116
+ ## 6. Image integrity
117
+
118
+ At review and revision, verify that:
119
+
120
+ - submitted images are minimally processed and faithfully represent originals
121
+ - unprocessed data and metadata are retained and can be supplied on request
122
+ - acquisition tools, software, settings and processing are described in Methods
123
+ - images gathered at different times or locations are not combined without
124
+ disclosure and clear boundaries
125
+ - cloning, healing or tools that obscure manipulation are not used
126
+ - brightness and contrast changes are global, applied equally to controls and
127
+ do not remove data
128
+ - pseudocolour, nonlinear/gamma changes and channel-specific adjustments are
129
+ disclosed
130
+
131
+ For gels and blots, record lane rearrangement, loading controls, crop boundaries,
132
+ parallel processing and duplication checks. Accepted life-science papers require
133
+ unprocessed original gel and western-blot images for Supplementary Information.
134
+
135
+ ## 7. Structures, chemistry and materials
136
+
137
+ ### Small-molecule crystallography
138
+
139
+ Require at submission when applicable:
140
+
141
+ - a standard `.cif` file
142
+ - a structural figure with probability ellipsoids for Supplementary Information
143
+ - structure factors for every structure
144
+ - IUCr CheckCIF validation output as a PDF
145
+ - explanations for all A- or B-level alerts
146
+
147
+ ### Other structures and materials
148
+
149
+ - obtain official wwPDB validation reports for macromolecular structures when
150
+ required for peer review
151
+ - deposit electron-microscopy density maps and coordinate data in the required
152
+ repositories
153
+ - identify individual organic and inorganic compounds in order of first
154
+ appearance with logical bold numerals; do not number standard buffers,
155
+ reagents or solvents
156
+ - for new compounds central to the conclusions, provide structure, synthesis
157
+ and characterization in enough detail for reproduction
158
+ - use RRIDs or other persistent identifiers for key biological resources where
159
+ available
160
+ - report cell-line source, authentication and distribution restrictions
161
+
162
+ ## 8. Taxonomy and provenance-sensitive samples
163
+
164
+ - new or revised formal animal taxonomy may require registration and LSIDs from
165
+ ZooBank
166
+ - geological, archaeological and palaeontological samples need transparent
167
+ provenance, permits and compliance with local laws
168
+ - palaeontological and type specimens should be deposited in a recognized
169
+ museum or collection with accession codes where applicable
170
+ - flag protected-site materials without documented permission
171
+
172
+ ## 9. Audit output
173
+
174
+ Return a compact table:
175
+
176
+ | Requirement | Applies? | Evidence in manuscript/files | Status | Required action |
177
+ |---|---|---|---|---|
178
+
179
+ Use `blocked` for missing registration, approval, consent, essential protocol,
180
+ mandatory repository deposit, validation report or unavailable original data.
181
+ Use `AUTHOR_INPUT_NEEDED` when applicability or administrative facts are not
182
+ known.
183
+
184
+ ## 10. Official sources
185
+
186
+ Verified 2026-08-08:
187
+
188
+ - Research ethics: <https://www.nature.com/nature-portfolio/editorial-policies/ethics-and-biosecurity>
189
+ - Clinical research: <https://www.nature.com/nature-portfolio/editorial-policies/clinical-research>
190
+ - Reporting and availability: <https://www.nature.com/nature-portfolio/editorial-policies/reporting-standards>
191
+ - Image integrity: <https://www.nature.com/nature-portfolio/editorial-policies/image-integrity>
192
+ - Nature initial submission: <https://www.nature.com/nature/for-authors/initial-submission>
@@ -0,0 +1,58 @@
1
+ # Terminology Ledger
2
+
3
+ A manuscript must use one name for one thing. The same method, model, dataset,
4
+ gene, metric, or concept must not drift across shifting names, spellings, or
5
+ capitalisation. Reviewers read inconsistent terminology as careless work, and a
6
+ term that changes between sections forces the reader to re-learn it.
7
+
8
+ Build the ledger **before** drafting or polishing prose, and treat it as the
9
+ single source of truth for the rest of the job. Consistency against a standard
10
+ is impossible if the standard was never written down.
11
+
12
+ ## 1. Build the ledger on first contact
13
+
14
+ When you first receive a manuscript, draft, or set of notes, extract every
15
+ recurring domain term into a ledger before editing any prose:
16
+
17
+ - methods, models, systems, algorithms, modules, frameworks
18
+ - datasets, benchmarks, cohorts, materials, reagents
19
+ - genes, proteins, species, cell lines (respect established field nomenclature)
20
+ - metrics, units, statistical symbols, mathematical notation
21
+ - abbreviations and acronyms, each with its full form
22
+ - key concepts the paper defines or repeatedly relies on
23
+
24
+ For each term, record its canonical form, its first-use expansion (for
25
+ abbreviations), and any variants already present in the source.
26
+
27
+ ## 2. Present the ledger to the user
28
+
29
+ Show a compact table before or alongside the first output:
30
+
31
+ | Canonical term | First-use definition | Variants seen in source | Decision |
32
+ |---|---|---|---|
33
+ | scRNA-seq | single-cell RNA sequencing (scRNA-seq) | "single cell RNA-seq", "scRNAseq" | spell out once, then use "scRNA-seq" |
34
+
35
+ Flag every collision explicitly: the same concept under different names, or one
36
+ name reused for two different concepts. Ask the user to confirm the canonical
37
+ choice only when the decision is genuinely ambiguous or domain-sensitive.
38
+ Otherwise adopt the form the source uses most often and state that choice.
39
+
40
+ ## 3. Lock and enforce
41
+
42
+ Once set, the ledger is fixed for the whole job:
43
+
44
+ - Use only canonical forms in every output. Do not introduce synonyms to vary
45
+ the prose. Terminology consistency outranks lexical variety in scientific
46
+ writing.
47
+ - Define each abbreviation once, at first use, then use the short form.
48
+ - Keep units, symbols, and notation identical across every section.
49
+ - When drafting or polishing a later section, reference the ledger built from
50
+ the earlier sections instead of re-deciding term by term.
51
+ - If the user later renames a term, change every occurrence in the manuscript,
52
+ not just the current passage, and update the ledger.
53
+
54
+ ## 4. Do not invent terms
55
+
56
+ Do not coin new names for the author's methods, modules, or concepts. If a term
57
+ is missing, undefined, or used inconsistently in ways you cannot resolve from
58
+ the source, ask the user or flag it. Never fill the gap with a guessed name.
@@ -0,0 +1,139 @@
1
+ # Nature Communications — formatting facts
2
+
3
+ Authoritative facts about Nature Communications formatting requirements. Used by both `nature-polishing` and `nature-writing` when `journal=nat-comms`. This file holds the **facts**; each skill's `static/fragments/journal/nat-comms.md` adds the **action layer**.
4
+
5
+ > Always verify against the journal's current guidelines before final submission. Limits change. The numbers below are accurate as of early 2026.
6
+
7
+ ## Article types and limits
8
+
9
+ | Article type | Body words | Abstract | References | Display items | Methods placement |
10
+ |---|---|---|---|---|---|
11
+ | **Article** | ~5,000 (incl. Methods) | 150 words | ~60 | up to 10 (figures + tables combined) | within main text |
12
+ | **Brief Communication** | ~2,000 (incl. Methods) | 100 words | ~20 | up to 4 | within main text |
13
+ | **Review** | ~6,000 | 200 words | ~100 | flexible | N/A |
14
+ | **Perspective** | ~4,000 | 150 words | ~50 | flexible | N/A |
15
+ | **Correspondence** | ~500 | none | ~10 | 1 | within main text |
16
+
17
+ ### Critical word-count quirk (Articles)
18
+
19
+ The ~5,000-word limit **includes Methods**. This is the single biggest practical difference from *Nature* (where Methods sits after references with its own ~3,000-word allowance).
20
+
21
+ Budget upfront, e.g.:
22
+ - ~3,500 words for Introduction + Results + Discussion
23
+ - ~1,500 words for Methods
24
+
25
+ A paper with 4,800 words of Intro/Results/Discussion plus 1,500 words of Methods is **30% over the limit**.
26
+
27
+ ## Abstract
28
+
29
+ - 150 words maximum
30
+ - Unstructured single paragraph
31
+ - No citations
32
+ - Spell out abbreviations at first use
33
+ - Keywords are assigned by editorial staff, not submitted
34
+ - Include quantitative results where possible (`94% conversion with 99% selectivity`, not `significant improvement`)
35
+ - Lead with the finding, not the background — editors triage on the abstract
36
+
37
+ ## Figures and display items
38
+
39
+ - **Up to 10 display items** in the main article (figures + tables combined)
40
+ - **No Extended Data tier** (unlike *Nature*). Items beyond 10 go into Supplementary Information (downloadable, but still peer-reviewed)
41
+
42
+ ### Resolution and format
43
+
44
+ | Parameter | Requirement |
45
+ |---|---|
46
+ | Line art resolution | 1,200 dpi minimum |
47
+ | Halftone / photo resolution | 300 dpi minimum |
48
+ | Combination (line + halftone) | 600 dpi minimum |
49
+ | File formats | TIFF, EPS, PDF, or JPEG |
50
+ | Color mode | RGB (online-only journal) |
51
+ | Single-column width | 89 mm |
52
+ | Double-column width | 183 mm |
53
+ | In-figure font | Arial / Helvetica / sans-serif, 5–7 pt |
54
+ | Panel labels | Lowercase bold letters (`a`, `b`, `c`, …) |
55
+
56
+ Online-only publication means: color is free, no CMYK requirement, design for screen reading (sufficient contrast, colorblind-friendly palettes, clear labels).
57
+
58
+ ### Multi-panel figures
59
+
60
+ Common and accepted. A single figure with panels `a`–`l` is normal. No formal panel cap, but readability is enforced informally — if panel labels need magnification, the figure has too many panels.
61
+
62
+ ## References
63
+
64
+ - **Style**: standard Nature reference style
65
+ - **In-text**: superscript numbers, sequential by first appearance. Multiple: `^1,2`. Ranges: `^3–7`.
66
+ - **Cap**: ~60 for Articles (more generous than *Nature*'s ~30)
67
+ - **Format example**:
68
+ ```
69
+ 1. Smith, A. B., Johnson, C. D. & Williams, E. F. Title of article. Nat. Commun. 16, 1234 (2025).
70
+ ```
71
+ - Author names: `Last, Initials` (no periods on initials)
72
+ - `&` before the last author
73
+ - Journal names abbreviated per ISO 4
74
+ - Volume in **bold**
75
+ - **Article number** (e.g., `1234`), not page range — Nature Communications is online-only
76
+ - Year in parentheses
77
+ - DOIs encouraged
78
+ - Reference list appears **before** the Methods section in the published article, even though Methods is part of the main text in the manuscript
79
+
80
+ ## Supplementary Information
81
+
82
+ - Single PDF or multiple files; peer-reviewed
83
+ - Organize with a table of contents if it exceeds 10 pages
84
+ - Labels: `Supplementary Fig. 1`, `Supplementary Table 1`, `Supplementary Note 1`, `Supplementary Methods`
85
+ - Large tables → separate Excel files
86
+
87
+ ## Mandatory statements
88
+
89
+ - **Data Availability statement** — required. Must specify repositories, accession numbers, DOIs. Enforced at production stage; **invalid or pre-publication accession numbers block publication**.
90
+ - **Code Availability statement** — required if custom code was used. Must include repository URL and DOI (e.g., via Zenodo).
91
+ - **Author contributions** — in the manuscript after the main text
92
+ - **Competing interests** — in the manuscript
93
+ - **Reporting Summary** — Nature Portfolio Reporting Summary required (Life Sciences Reporting Summary for life sciences). Sent to reviewers; not a checkbox exercise.
94
+
95
+ ## Cover page elements
96
+
97
+ - **Title**: concise, informative, no abbreviations; recommended ≤ 15 words
98
+ - Author names with superscript affiliation numbers
99
+ - Affiliations with full institutional addresses
100
+ - Corresponding author(s) with email
101
+ - ORCID iDs required for corresponding author, encouraged for all
102
+
103
+ ## Cover letter (separate upload)
104
+
105
+ Editors use the cover letter for triage. Do not waste it on generic statements like "broad interest." State explicitly:
106
+
107
+ 1. What the finding is (one sentence)
108
+ 2. What makes it new (one sentence)
109
+ 3. Why it matters across multiple scientific disciplines (one sentence)
110
+
111
+ ## Open access and licensing
112
+
113
+ - Fully open access — APC applies (verify current rate; substantial)
114
+ - Default license: **CC BY 4.0**
115
+ - Some funders (e.g., UKRI) require CC BY; others allow CC BY-NC — check funder requirements
116
+
117
+ ## Transparent peer review
118
+
119
+ - **Default since November 2022**: reviewer reports and author responses published alongside accepted articles
120
+ - Authors may opt out during submission — opt-out must be deliberate
121
+ - Consider opt-out if reviewer exchanges contain content not suitable for public record
122
+
123
+ ## Manuscript formats
124
+
125
+ - Initial submission: single PDF preferred (Word- or LaTeX-generated), figures embedded
126
+ - Revision: Springer Nature Word template **or** LaTeX `sn-jnl` class with `nature` option
127
+ - BibTeX: `sn-nature.bst`
128
+ - Both formats equally acceptable; no editorial preference
129
+
130
+ ## Common desk-rejection / production-hold patterns
131
+
132
+ 1. **Methods word count not budgeted** — most common formatting error, especially for authors transferring from *Nature*
133
+ 2. **Reporting Summary completed as checkbox** — vague `N/A` responses, no explanation for outlier exclusions, missing blinding info, weak power calculations → generates specific revision requests
134
+ 3. **Data availability statement with unresolved accession numbers** — production verifies all accessions before publication; invalid IDs block release
135
+ 4. **Generic cover letter** — fails to establish cross-disciplinary significance; signals authors haven't considered scope fit
136
+
137
+ ## Transfer from Nature
138
+
139
+ Manuscripts rejected from *Nature* can transfer with reviews intact. Editors may decide on existing reviews or send for additional review. **Formatting differences (Methods placement, word limit including Methods, no Extended Data tier) are handled at revision, not at transfer**.