psyclaw 0.28.1 → 0.28.2

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 (128) hide show
  1. package/README.md +5 -5
  2. package/agents/recommended/catalog.json +1 -1
  3. package/dist/src/adapters/pi/extension.js +43 -9
  4. package/dist/src/adapters/pi/extension.js.map +1 -1
  5. package/dist/src/ars/mode-editor.d.ts +20 -0
  6. package/dist/src/ars/mode-editor.js +57 -0
  7. package/dist/src/ars/mode-editor.js.map +1 -0
  8. package/dist/src/ars/profile.d.ts +4 -1
  9. package/dist/src/ars/profile.js +23 -6
  10. package/dist/src/ars/profile.js.map +1 -1
  11. package/package.json +10 -3
  12. package/vendor/academic-paper-skills/LICENSE +21 -0
  13. package/vendor/academic-paper-skills/NOTICE.md +7 -0
  14. package/vendor/academic-paper-skills/PSYCLAW_SOURCE.json +14 -0
  15. package/vendor/academic-paper-skills/academic-paper-composer/SKILL.md +840 -0
  16. package/vendor/academic-paper-skills/academic-paper-composer/references/section_guides.md +675 -0
  17. package/vendor/academic-paper-skills/academic-paper-composer/references/writing_standards.md +629 -0
  18. package/vendor/academic-paper-skills/academic-paper-composer/scripts/chapter_quality_check.py +470 -0
  19. package/vendor/academic-paper-skills/academic-paper-composer/scripts/final_evaluation.py +550 -0
  20. package/vendor/academic-paper-skills/academic-paper-strategist/SKILL.md +670 -0
  21. package/vendor/academic-paper-skills/academic-paper-strategist/references/quality_standards.md +336 -0
  22. package/vendor/academic-paper-skills/academic-paper-strategist/references/search_strategy.md +459 -0
  23. package/vendor/academic-paper-skills/academic-paper-strategist/scripts/evaluate_samples.py +300 -0
  24. package/vendor/academic-paper-skills/academic-paper-strategist/scripts/gap_analysis.py +399 -0
  25. package/vendor/ars/pi/wrapper.js +9 -0
  26. package/vendor/nature-skills/LICENSE +201 -0
  27. package/vendor/nature-skills/NOTICE.md +7 -0
  28. package/vendor/nature-skills/PSYCLAW_SOURCE.json +19 -0
  29. package/vendor/nature-skills/skills/nature-figure/README.md +107 -0
  30. package/vendor/nature-skills/skills/nature-figure/README_EN.md +107 -0
  31. package/vendor/nature-skills/skills/nature-figure/SKILL.md +154 -0
  32. package/vendor/nature-skills/skills/nature-figure/agents/openai.yaml +4 -0
  33. package/vendor/nature-skills/skills/nature-figure/evals/evals.json +325 -0
  34. package/vendor/nature-skills/skills/nature-figure/manifest.yaml +103 -0
  35. package/vendor/nature-skills/skills/nature-figure/references/ai-graphical-abstract-workflow.md +129 -0
  36. package/vendor/nature-skills/skills/nature-figure/references/api.md +576 -0
  37. package/vendor/nature-skills/skills/nature-figure/references/asset-adaptation.md +72 -0
  38. package/vendor/nature-skills/skills/nature-figure/references/backend-selection.md +118 -0
  39. package/vendor/nature-skills/skills/nature-figure/references/chart-types.md +348 -0
  40. package/vendor/nature-skills/skills/nature-figure/references/common-patterns.md +371 -0
  41. package/vendor/nature-skills/skills/nature-figure/references/demos.md +58 -0
  42. package/vendor/nature-skills/skills/nature-figure/references/design-theory.md +467 -0
  43. package/vendor/nature-skills/skills/nature-figure/references/figure-contract.md +122 -0
  44. package/vendor/nature-skills/skills/nature-figure/references/figure-legend-conventions.md +90 -0
  45. package/vendor/nature-skills/skills/nature-figure/references/multipanel-evidence-architecture.md +268 -0
  46. package/vendor/nature-skills/skills/nature-figure/references/nature-2026-observations.md +124 -0
  47. package/vendor/nature-skills/skills/nature-figure/references/nature-article-requirements.md +149 -0
  48. package/vendor/nature-skills/skills/nature-figure/references/openrouter-image-generation.md +141 -0
  49. package/vendor/nature-skills/skills/nature-figure/references/qa-contract.md +344 -0
  50. package/vendor/nature-skills/skills/nature-figure/references/r-template-index.md +66 -0
  51. package/vendor/nature-skills/skills/nature-figure/references/r-workflow.md +234 -0
  52. package/vendor/nature-skills/skills/nature-figure/references/template-catalog.md +33 -0
  53. package/vendor/nature-skills/skills/nature-figure/references/tutorials.md +260 -0
  54. package/vendor/nature-skills/skills/nature-figure/requirements.txt +1 -0
  55. package/vendor/nature-skills/skills/nature-figure/scripts/audit_figure_collisions.py +742 -0
  56. package/vendor/nature-skills/skills/nature-figure/scripts/audit_panel_alignment.py +933 -0
  57. package/vendor/nature-skills/skills/nature-figure/scripts/audit_pdf_text.py +152 -0
  58. package/vendor/nature-skills/skills/nature-figure/scripts/figure_safety.py +50 -0
  59. package/vendor/nature-skills/skills/nature-figure/scripts/generate_openrouter_schematic.py +260 -0
  60. package/vendor/nature-skills/skills/nature-figure/scripts/nature_figure_backend.py +93 -0
  61. package/vendor/nature-skills/skills/nature-figure/scripts/panel_alignment.R +188 -0
  62. package/vendor/nature-skills/skills/nature-figure/scripts/plot_templates.py +604 -0
  63. package/vendor/nature-skills/skills/nature-figure/scripts/validate_figure.py +835 -0
  64. package/vendor/nature-skills/skills/nature-figure/static/core/contract.md +55 -0
  65. package/vendor/nature-skills/skills/nature-figure/static/core/stance.md +41 -0
  66. package/vendor/nature-skills/skills/nature-figure/static/fragments/backend/python.md +56 -0
  67. package/vendor/nature-skills/skills/nature-figure/static/fragments/backend/r.md +63 -0
  68. package/vendor/nature-skills/skills/nature-figure/tests/test_figure_safety.py +209 -0
  69. package/vendor/nature-skills/skills/nature-polishing/README.md +58 -0
  70. package/vendor/nature-skills/skills/nature-polishing/README_EN.md +58 -0
  71. package/vendor/nature-skills/skills/nature-polishing/SKILL.md +111 -0
  72. package/vendor/nature-skills/skills/nature-polishing/agents/openai.yaml +4 -0
  73. package/vendor/nature-skills/skills/nature-polishing/manifest.yaml +101 -0
  74. package/vendor/nature-skills/skills/nature-polishing/references/latex-layout.md +211 -0
  75. package/vendor/nature-skills/skills/nature-polishing/references/nat-comms-2025-diction.md +73 -0
  76. package/vendor/nature-skills/skills/nature-polishing/references/phrasebank-playbook.md +175 -0
  77. package/vendor/nature-skills/skills/nature-polishing/references/published-article-patterns.md +126 -0
  78. package/vendor/nature-skills/skills/nature-polishing/references/section-moves.md +252 -0
  79. package/vendor/nature-skills/skills/nature-polishing/references/style-guardrails.md +94 -0
  80. package/vendor/nature-skills/skills/nature-polishing/references/writing-strategy.md +160 -0
  81. package/vendor/nature-skills/skills/nature-polishing/static/core/failure-modes.md +29 -0
  82. package/vendor/nature-skills/skills/nature-polishing/static/core/output-format.md +21 -0
  83. package/vendor/nature-skills/skills/nature-polishing/static/core/stance.md +26 -0
  84. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/generic.md +17 -0
  85. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/nat-comms.md +38 -0
  86. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/nat-mach-intell.md +102 -0
  87. package/vendor/nature-skills/skills/nature-polishing/static/fragments/journal/nature.md +19 -0
  88. package/vendor/nature-skills/skills/nature-polishing/static/fragments/language/en.md +19 -0
  89. package/vendor/nature-skills/skills/nature-polishing/static/fragments/language/zh-to-en.md +19 -0
  90. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/algorithmic.md +18 -0
  91. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/hypothesis.md +17 -0
  92. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/methods.md +35 -0
  93. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/research.md +29 -0
  94. package/vendor/nature-skills/skills/nature-polishing/static/fragments/paper_type/review.md +17 -0
  95. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/abstract.md +26 -0
  96. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/conclusion.md +15 -0
  97. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/discussion.md +48 -0
  98. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/intro.md +33 -0
  99. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/methods.md +26 -0
  100. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/results.md +61 -0
  101. package/vendor/nature-skills/skills/nature-polishing/static/fragments/section/title.md +17 -0
  102. package/vendor/nature-skills/skills/nature-ref-verifier/README.md +44 -0
  103. package/vendor/nature-skills/skills/nature-ref-verifier/README_EN.md +44 -0
  104. package/vendor/nature-skills/skills/nature-ref-verifier/SKILL.md +196 -0
  105. package/vendor/nature-skills/skills/nature-ref-verifier/agents/openai.yaml +4 -0
  106. package/vendor/nature-skills/skills/nature-ref-verifier/manifest.yaml +19 -0
  107. package/vendor/nature-skills/skills/nature-ref-verifier/references/common-patterns.md +96 -0
  108. package/vendor/nature-skills/skills/nature-shared/README.md +43 -0
  109. package/vendor/nature-skills/skills/nature-shared/README_EN.md +43 -0
  110. package/vendor/nature-skills/skills/nature-shared/SKILL.md +33 -0
  111. package/vendor/nature-skills/skills/nature-shared/agents/openai.yaml +6 -0
  112. package/vendor/nature-skills/skills/nature-shared/core/consistency-sweep.md +122 -0
  113. package/vendor/nature-skills/skills/nature-shared/core/discussion-argument-language.md +192 -0
  114. package/vendor/nature-skills/skills/nature-shared/core/ethics.md +88 -0
  115. package/vendor/nature-skills/skills/nature-shared/core/main-text-discipline.md +179 -0
  116. package/vendor/nature-skills/skills/nature-shared/core/nature-abstract.md +171 -0
  117. package/vendor/nature-skills/skills/nature-shared/core/nature-introduction.md +164 -0
  118. package/vendor/nature-skills/skills/nature-shared/core/nature-results-discussion.md +215 -0
  119. package/vendor/nature-skills/skills/nature-shared/core/paper-type-taxonomy.md +41 -0
  120. package/vendor/nature-skills/skills/nature-shared/core/reader-workflow.md +21 -0
  121. package/vendor/nature-skills/skills/nature-shared/core/research-compliance.md +192 -0
  122. package/vendor/nature-skills/skills/nature-shared/core/terminology-ledger.md +58 -0
  123. package/vendor/nature-skills/skills/nature-shared/journal-formats/nat-comms.md +139 -0
  124. package/vendor/nature-skills/skills/nature-shared/journal-formats/nature-machine-intelligence.md +431 -0
  125. package/vendor/nature-skills/skills/nature-shared/journal-formats/nature.md +313 -0
  126. package/vendor/nature-skills/skills/nature-shared/manifest.yaml +52 -0
  127. package/vendor/nature-skills/skills/nature-shared/scripts/check_consistency.py +273 -0
  128. package/vendor/nature-skills/skills/nature-shared/tests/test_check_consistency.py +63 -0
@@ -0,0 +1,175 @@
1
+ # Phrasebank Playbook
2
+
3
+ ## Contents
4
+
5
+ - [Evidence strength](#evidence-strength)
6
+ - [Evidence collocations](#evidence-collocations)
7
+ - [Transition families](#transition-families)
8
+ - [Paragraph linking without sounding repetitive](#paragraph-linking-without-sounding-repetitive)
9
+ - [Gap language](#gap-language)
10
+ - [Comparison with prior work](#comparison-with-prior-work)
11
+ - [Limitation language](#limitation-language)
12
+ - [Implication language](#implication-language)
13
+ - [Future-work language](#future-work-language)
14
+
15
+
16
+ Use this file after the main argument and section role are already clear. It is a phrasebank layer derived from `Academic Phrasebank`, not a substitute for deciding what the paragraph is trying to do.
17
+
18
+ ## Evidence strength
19
+
20
+ Choose verbs that match the evidence.
21
+
22
+ ### Strong
23
+
24
+ - `show`
25
+ - `demonstrate`
26
+ - `establish`
27
+ - `reveal`
28
+ - `identify`
29
+
30
+ Use only when the design and data justify a strong claim.
31
+
32
+ ### Moderate
33
+
34
+ - `suggest`
35
+ - `indicate`
36
+ - `support the view that`
37
+ - `are consistent with`
38
+ - `point to`
39
+
40
+ Use when the interpretation is plausible but not definitive.
41
+
42
+ ### Speculative
43
+
44
+ - `may reflect`
45
+ - `could arise from`
46
+ - `appears to`
47
+ - `seems likely`
48
+ - `might be explained by`
49
+
50
+ Use when moving beyond direct observation.
51
+
52
+ ## Evidence collocations
53
+
54
+ Adjectives for evidence:
55
+
56
+ - weak: `limited`, `scant`, `insufficient`
57
+ - developing: `growing`, `emerging`, `accumulating`
58
+ - strong: `robust`, `reliable`, `convincing`, `considerable`
59
+
60
+ Useful patterns:
61
+
62
+ - `The evidence presented here suggests that ...`
63
+ - `The available evidence supports the view that ...`
64
+ - `Current evidence raises important questions about ...`
65
+ - `The data point to a need for ...`
66
+
67
+ ## Transition families
68
+
69
+ ### Contrast
70
+
71
+ - `however`
72
+ - `by contrast`
73
+ - `nevertheless`
74
+ - `despite this`
75
+ - `whereas`
76
+
77
+ ### Addition
78
+
79
+ - `furthermore`
80
+ - `in addition`
81
+ - `moreover`
82
+ - `also`
83
+
84
+ ### Consequence
85
+
86
+ - `therefore`
87
+ - `thus`
88
+ - `consequently`
89
+ - `as a result`
90
+ - `thereby`
91
+
92
+ ### Qualification
93
+
94
+ - `notably`
95
+ - `importantly`
96
+ - `approximately`
97
+ - `in part`
98
+ - `at least in this cohort`
99
+
100
+ Prefer the smallest connective that does the job. Do not decorate every sentence with a transition word.
101
+
102
+ ## Paragraph linking without sounding repetitive
103
+
104
+ Prefer these patterns over repeated `This suggests`:
105
+
106
+ - restate the noun: `Such heterogeneity ...`
107
+ - definite noun phrase: `The resulting gradient ...`
108
+ - participial summary: `Taken together, ...`
109
+ - zero-connective progression when the logic is already obvious
110
+
111
+ Limit demonstrative-led openings. One per paragraph is usually enough.
112
+
113
+ ## Gap language
114
+
115
+ Use gap statements that are precise rather than dramatic:
116
+
117
+ - `remains poorly understood`
118
+ - `has not been examined in ...`
119
+ - `has received limited attention`
120
+ - `few studies have addressed ...`
121
+ - `evidence remains sparse for ...`
122
+
123
+ Avoid:
124
+
125
+ - `no one has ever studied`
126
+ - `completely unknown`
127
+ - `ignored by all previous work`
128
+
129
+ ## Comparison with prior work
130
+
131
+ To align with earlier work:
132
+
133
+ - `These results are consistent with ...`
134
+ - `This finding accords with ...`
135
+ - `Our observations broadly support ...`
136
+
137
+ To mark divergence fairly:
138
+
139
+ - `In contrast to earlier reports, ...`
140
+ - `This finding differs from ...`
141
+ - `One possible reason for this discrepancy is ...`
142
+
143
+ ## Limitation language
144
+
145
+ Useful patterns:
146
+
147
+ - `These findings should be interpreted with caution because ...`
148
+ - `A limitation of this study is that ...`
149
+ - `The generalisability of these results is limited by ...`
150
+ - `We cannot exclude the possibility that ...`
151
+ - `Another source of uncertainty is ...`
152
+
153
+ Pair limitation language with the actual source of uncertainty, not with vague modesty.
154
+
155
+ ## Implication language
156
+
157
+ Useful patterns:
158
+
159
+ - `An implication of this is that ...`
160
+ - `These findings may help to explain ...`
161
+ - `These data support further investigation of ...`
162
+ - `This work has implications for ...`
163
+
164
+ Implications should stay within the evidence boundary.
165
+
166
+ ## Future-work language
167
+
168
+ Useful patterns:
169
+
170
+ - `Further work is needed to determine whether ...`
171
+ - `Future studies should examine ...`
172
+ - `A useful next step would be to ...`
173
+ - `Larger studies are required to validate ...`
174
+
175
+ Future work should emerge from an actual limitation, uncertainty, or opportunity.
@@ -0,0 +1,126 @@
1
+ # Published Article Patterns
2
+
3
+ ## Contents
4
+
5
+ - [Abstract pattern](#abstract-pattern)
6
+ - [Introduction pattern](#introduction-pattern)
7
+ - [Results pattern](#results-pattern)
8
+ - [Discussion pattern](#discussion-pattern)
9
+ - [Conclusion pattern](#conclusion-pattern)
10
+ - [Title pattern](#title-pattern)
11
+ - [Sentence-level pattern](#sentence-level-pattern)
12
+ - [Overclaim checks from article patterns](#overclaim-checks-from-article-patterns)
13
+
14
+
15
+ Use this file when polishing should improve scientific argument, not just English.
16
+ The patterns below are distilled from curated Nature and Nature Communications
17
+ research articles across materials, energy systems, construction decarbonization
18
+ and machine learning. Do not copy their wording. Use the patterns to diagnose
19
+ and reshape the user's manuscript.
20
+
21
+ ## Abstract pattern
22
+
23
+ Strong abstracts usually move in six steps:
24
+
25
+ 1. name the field-scale problem or opportunity
26
+ 2. show why existing approaches are incomplete
27
+ 3. state the specific intervention or method
28
+ 4. give the decisive result with scale, comparison or constraint
29
+ 5. explain why the result changes what is possible
30
+ 6. close with scope, application or boundary
31
+
32
+ Polishing rule: if an abstract starts with the method, add the problem and gap
33
+ first. If it ends with enthusiasm, replace it with a bounded implication.
34
+
35
+ ## Introduction pattern
36
+
37
+ High-performing introductions often use `scale -> bottleneck -> prior attempts ->
38
+ missing capability -> present study`.
39
+
40
+ - `Scale`: quantify why the problem matters, preferably with field-level stakes.
41
+ - `Bottleneck`: name the physical, computational, clinical or practical barrier.
42
+ - `Prior attempts`: acknowledge existing strategies fairly.
43
+ - `Missing capability`: explain what those strategies still cannot do.
44
+ - `Present study`: state what the paper does, not what it hopes to do.
45
+
46
+ Polishing rule: keep the gap narrow enough that the study can actually fill it.
47
+ Avoid novelty claims that depend on weakening prior work.
48
+
49
+ ## Results pattern
50
+
51
+ Results sections usually work best as an evidence ladder:
52
+
53
+ 1. overview of the system, workflow or design space
54
+ 2. validation that the platform works under controlled conditions
55
+ 3. primary performance result
56
+ 4. comparison with baselines or current practice
57
+ 5. mechanism, interpretation or diagnostic analysis
58
+ 6. scale-up, generalization or real-world application
59
+
60
+ Each Results paragraph should begin with the question or test, then report the
61
+ observation, then give the quantitative or comparative support. Interpretation
62
+ should be brief unless the paragraph is explicitly bridging into Discussion.
63
+
64
+ ## Discussion pattern
65
+
66
+ Effective Discussion writing starts from the central advance and then widens:
67
+
68
+ - what the study demonstrates
69
+ - why the evidence is credible
70
+ - how it changes an existing workflow, design rule or conceptual boundary
71
+ - what constraints remain
72
+ - what future work is enabled, without promising untested outcomes
73
+
74
+ Do not turn the Discussion into a second Results section. Use it to state what
75
+ the results mean and where that meaning stops.
76
+
77
+ ## Conclusion pattern
78
+
79
+ Nature-style conclusions are compact. They usually combine:
80
+
81
+ 1. the contribution in one sentence
82
+ 2. the mechanism, performance or feasibility evidence that supports it
83
+ 3. the scale or application implied by the work
84
+ 4. one boundary condition, if the claim could otherwise overreach
85
+
86
+ Polishing rule: remove new data from conclusions. Preserve confidence, but add
87
+ scope control.
88
+
89
+ ## Title pattern
90
+
91
+ Strong titles are concrete and searchable. They often combine:
92
+
93
+ - object or system
94
+ - action or capability
95
+ - application, scale or consequence
96
+
97
+ Prefer titles that reveal the central scientific move. Avoid titles that sound
98
+ like grant aims, slogans or broad fields.
99
+
100
+ ## Sentence-level pattern
101
+
102
+ Published prose often looks simple because each sentence does one job:
103
+
104
+ - background sentence: field stake or known fact
105
+ - gap sentence: unresolved limitation
106
+ - method sentence: what was done
107
+ - result sentence: observed effect plus condition
108
+ - comparison sentence: baseline or previous state
109
+ - implication sentence: meaning with scope
110
+ - limitation sentence: boundary or dependency
111
+
112
+ When polishing, label each sentence by job. If two jobs compete in one sentence,
113
+ split it or subordinate one job.
114
+
115
+ ## Overclaim checks from article patterns
116
+
117
+ Flag and soften claims when:
118
+
119
+ - a laboratory or simulation result is written as an immediate field-wide solution
120
+ - a single material, model or system is described as universally applicable
121
+ - correlation is rewritten as mechanism
122
+ - a comparison lacks a fair baseline
123
+ - a future application is stated as an achieved outcome
124
+
125
+ Good Nature-leaning prose can be ambitious, but the ambition must be attached to
126
+ evidence, scale and boundary.
@@ -0,0 +1,252 @@
1
+ # Section Moves
2
+
3
+ ## Contents
4
+
5
+ - [Introduction](#introduction)
6
+ - [Literature Review](#literature-review)
7
+ - [Methods](#methods)
8
+ - [Results](#results)
9
+ - [Discussion](#discussion)
10
+ - [Conclusion](#conclusion)
11
+ - [Abstract](#abstract)
12
+ - [Title](#title)
13
+
14
+
15
+ Use this file only after the main section logic has been decided in `SKILL.md`. This file is for phrase-level and move-level support derived from `Academic Phrasebank`, not for deciding the paper's overall writing strategy.
16
+
17
+ ## Introduction
18
+
19
+ Questions this section must answer:
20
+
21
+ 1. Why does the topic matter?
22
+ 2. What is already known?
23
+ 3. What is still missing or contested?
24
+ 4. What does the present study ask or do?
25
+
26
+ Preferred move order:
27
+
28
+ 1. establish importance
29
+ 2. summarize what is known
30
+ 3. identify a gap, limitation, or controversy
31
+ 4. state the study aim
32
+ 5. indicate value or approach
33
+
34
+ Useful phrase families:
35
+
36
+ - `Recent years have seen increasing interest in ...`
37
+ - `X is a central issue in ...`
38
+ - `Previous studies have shown that ...`
39
+ - `However, the mechanisms underlying ... remain poorly understood.`
40
+ - `Few studies have examined ...`
41
+ - `Here, we investigate whether ...`
42
+ - `This work provides ...`
43
+
44
+ Avoid:
45
+
46
+ - long historical throat-clearing
47
+ - detailed results
48
+ - inflated novelty claims before the gap is defined
49
+
50
+ ## Literature Review
51
+
52
+ Questions this section must answer:
53
+
54
+ 1. What lines of work define the field?
55
+ 2. What has been established?
56
+ 3. Where do findings diverge or remain incomplete?
57
+ 4. Which gap matters for the present paper?
58
+
59
+ Preferred move order:
60
+
61
+ 1. describe the scope of existing work
62
+ 2. identify dominant approaches
63
+ 3. state what has been established
64
+ 4. note disagreements or contradictions
65
+ 5. isolate the missing piece
66
+
67
+ Useful phrase families:
68
+
69
+ - `A substantial body of work has focused on ...`
70
+ - `Most studies have relied on ...`
71
+ - `Previous work has established that ...`
72
+ - `Findings have been mixed regarding ...`
73
+ - `By contrast, little attention has been paid to ...`
74
+ - `No study has yet examined ...`
75
+
76
+ Avoid:
77
+
78
+ - citation-by-citation summary
79
+ - treating all prior work as uniformly weak
80
+
81
+ ## Methods
82
+
83
+ Question this section must answer:
84
+
85
+ - Could another group reproduce the work from this description, or from this description plus a clearly cited protocol?
86
+
87
+ Preferred move order:
88
+
89
+ 1. design or cohort
90
+ 2. materials or data source
91
+ 3. procedure
92
+ 4. outcome measures
93
+ 5. analysis and statistics
94
+ 6. ethics when relevant
95
+
96
+ Useful phrase families:
97
+
98
+ - `A cross-sectional study was undertaken to ...`
99
+ - `Samples were collected from ...`
100
+ - `X was quantified using ...`
101
+ - `We used ... to assess ...`
102
+ - `Differences were analysed using ...`
103
+ - `All analyses were performed in ...`
104
+
105
+ Avoid:
106
+
107
+ - `under standard conditions`
108
+ - `using routine methods`
109
+ - `data were analysed statistically`
110
+
111
+ ## Results
112
+
113
+ Question this section must answer:
114
+
115
+ - What was observed, under which condition, and with what evidence?
116
+
117
+ Preferred move order:
118
+
119
+ 1. orient the reader to the figure, table, or experiment
120
+ 2. state the main observation
121
+ 3. add quantitative detail
122
+ 4. note expected or unexpected patterns
123
+ 5. compare with prior work only if it clarifies the result
124
+
125
+ Useful phrase families:
126
+
127
+ - `Figure 1 shows ...`
128
+ - `As shown in Table 1, ...`
129
+ - `The most notable finding was that ...`
130
+ - `Contrary to expectations, ...`
131
+ - `No significant difference was observed in ...`
132
+ - `These results are consistent with ...`
133
+ - `In contrast to earlier reports, ...`
134
+
135
+ Avoid:
136
+
137
+ - discussion-length mechanism explanations
138
+ - repeating every visual detail from the figure
139
+
140
+ ## Discussion
141
+
142
+ Questions this section must answer:
143
+
144
+ 1. What do the main findings mean?
145
+ 2. How do they relate to earlier work?
146
+ 3. Which explanations are plausible?
147
+ 4. What limitations constrain interpretation?
148
+ 5. What follows from the findings, and what does not?
149
+
150
+ Preferred move order:
151
+
152
+ 1. restate the main finding
153
+ 2. explain plausible reasons
154
+ 3. compare with earlier work
155
+ 4. note limitations
156
+ 5. state implications
157
+ 6. point to future work if needed
158
+
159
+ Useful phrase families:
160
+
161
+ - `Taken together, these findings suggest that ...`
162
+ - `A possible explanation is that ...`
163
+ - `This discrepancy may reflect ...`
164
+ - `These results should be interpreted with caution because ...`
165
+ - `An implication of this is that ...`
166
+ - `Further work is needed to determine whether ...`
167
+
168
+ Avoid:
169
+
170
+ - repeating the Results section in new words
171
+ - claiming mechanism when only association was shown
172
+
173
+ ## Conclusion
174
+
175
+ Questions this section must answer:
176
+
177
+ 1. What was the central contribution?
178
+ 2. Which finding matters most?
179
+ 3. What implication follows, with what boundary?
180
+
181
+ Preferred move order:
182
+
183
+ 1. return to the aim
184
+ 2. summarize the decisive finding
185
+ 3. state contribution or significance
186
+ 4. give a boundary or forward look
187
+
188
+ Useful phrase families:
189
+
190
+ - `This study set out to ...`
191
+ - `The present findings indicate that ...`
192
+ - `These results extend our understanding of ...`
193
+ - `Notwithstanding these limitations, ...`
194
+ - `Further studies are required to ...`
195
+
196
+ Avoid:
197
+
198
+ - introducing new experiments
199
+ - ending on vague praise of the work
200
+
201
+ ## Abstract
202
+
203
+ Questions this section must answer:
204
+
205
+ 1. What problem or gap is being addressed?
206
+ 2. What was done?
207
+ 3. What was found?
208
+ 4. Why should the reader care?
209
+
210
+ Preferred move order:
211
+
212
+ 1. broad context
213
+ 2. concrete gap
214
+ 3. approach
215
+ 4. key result with numbers if available
216
+ 5. implication
217
+
218
+ Useful phrase families:
219
+
220
+ - `X remains challenging because ...`
221
+ - `Here, we ...`
222
+ - `Using ... , we found that ...`
223
+ - `We show that ...`
224
+ - `These findings suggest ...`
225
+
226
+ Keep the abstract selective. If a detail does not affect editorial triage, it probably does not belong.
227
+
228
+ ## Title
229
+
230
+ Question this section must answer:
231
+
232
+ - Which few words make the paper searchable, accurate, and interesting without overclaiming?
233
+
234
+ Target properties:
235
+
236
+ - searchable
237
+ - specific
238
+ - restrained
239
+ - defensible
240
+
241
+ Useful patterns:
242
+
243
+ - `[Core entity] in/through/by [mechanism or context]`
244
+ - `[Process] shapes [outcome] in [system]`
245
+ - `[Signature/pattern/framework] of [phenomenon]`
246
+
247
+ Avoid:
248
+
249
+ - `A study of ...`
250
+ - vague hooks
251
+ - unverified `first`
252
+ - stacked jargon
@@ -0,0 +1,94 @@
1
+ # Style Guardrails
2
+
3
+ Use this file for mechanical and stylistic checks after the main rewrite. This file should refine prose and correctness, not override the main writing strategy in `SKILL.md`.
4
+
5
+ ## Academic style
6
+
7
+ - prefer cautious, precise prose over conversational confidence
8
+ - avoid contractions
9
+ - avoid rhetorical questions in polished manuscript prose
10
+ - define abbreviations on first use
11
+ - use British spelling by default if the target is Nature-style prose
12
+ - keep figure legends concise; if aiming for Nature style, `<= 300` words is a good upper bound
13
+ - if aiming for Nature style, keep titles at `<= 75` characters including spaces
14
+
15
+ ## Articles
16
+
17
+ Common checks:
18
+
19
+ - first mention of a singular count noun: `a` or `an`
20
+ - later mention of the same item: `the`
21
+ - generic plural: usually no article
22
+ - unique entity: often `the`
23
+ - abstract nouns used generally: often no article
24
+
25
+ Typical repair:
26
+
27
+ - bad: `The hypoxia induces ...`
28
+ - better: `Hypoxia induces ...`
29
+
30
+ ## Numbers and units
31
+
32
+ - use numerals for measurements
33
+ - leave a space between the value and the unit: `25 cm`, `3.2 s`
34
+ - keep statistical symbols and mathematical notation consistent
35
+ - use en dashes for ranges where appropriate
36
+
37
+ Do not rewrite numbers into words unless the surrounding house style demands it.
38
+
39
+ ## Academic register
40
+
41
+ - avoid spoken fillers and weak evaluative language
42
+ - use `we` only when it suits the discipline and document type
43
+ - keep nominalisation useful, not excessive
44
+ - keep the prose impersonal where appropriate, but do not force lifelessness
45
+
46
+ ## Sentence and paragraph checks
47
+
48
+ - each sentence should express one main proposition
49
+ - dependent clauses must stay attached to a main clause
50
+ - do not join two independent clauses with only a comma
51
+ - each paragraph needs a controlling idea and supporting material
52
+ - avoid common structure errors such as sentence fragments introduced by `although` or `whereas`
53
+
54
+ ## Overclaim checklist
55
+
56
+ Flag and soften:
57
+
58
+ - `prove`
59
+ - `conclusively`
60
+ - `unprecedented`
61
+ - `best`
62
+ - `superior`
63
+ - `first`
64
+
65
+ Safer replacements:
66
+
67
+ - `show`
68
+ - `suggest`
69
+ - `to our knowledge`
70
+ - `among the strongest`
71
+ - `in this cohort`
72
+
73
+ ## Integrity rules
74
+
75
+ - do not invent references
76
+ - do not alter quantitative values unless correcting an obvious typo requested by the user
77
+ - do not upgrade association to causation
78
+ - do not imply broader generalisability than the study supports
79
+
80
+ ## AI boundary
81
+
82
+ Use AI for language control, not for scientific fabrication.
83
+
84
+ Allowed:
85
+
86
+ - grammar and clarity
87
+ - restructuring and hedging
88
+ - translation with terminology checking
89
+
90
+ Not allowed:
91
+
92
+ - fabricated citations or datasets
93
+ - invented mechanisms presented as fact
94
+ - unsupported claims of novelty