wtf-p 0.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.
Files changed (92) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +338 -0
  3. package/bin/install.js +358 -0
  4. package/bin/uninstall.js +485 -0
  5. package/commands/wtfp/analyze-bib.md +326 -0
  6. package/commands/wtfp/check-refs.md +205 -0
  7. package/commands/wtfp/create-outline.md +275 -0
  8. package/commands/wtfp/discuss-section.md +71 -0
  9. package/commands/wtfp/export-latex.md +216 -0
  10. package/commands/wtfp/help.md +342 -0
  11. package/commands/wtfp/insert-section.md +130 -0
  12. package/commands/wtfp/list-assumptions.md +109 -0
  13. package/commands/wtfp/map-project.md +197 -0
  14. package/commands/wtfp/new-paper.md +443 -0
  15. package/commands/wtfp/pause-writing.md +145 -0
  16. package/commands/wtfp/plan-revision.md +180 -0
  17. package/commands/wtfp/plan-section.md +247 -0
  18. package/commands/wtfp/polish-prose.md +177 -0
  19. package/commands/wtfp/progress.md +325 -0
  20. package/commands/wtfp/remove-section.md +147 -0
  21. package/commands/wtfp/research-gap.md +235 -0
  22. package/commands/wtfp/resume-writing.md +142 -0
  23. package/commands/wtfp/review-section.md +409 -0
  24. package/commands/wtfp/submit-milestone.md +211 -0
  25. package/commands/wtfp/write-section.md +273 -0
  26. package/package.json +40 -0
  27. package/write-the-f-paper/references/checkpoints.md +213 -0
  28. package/write-the-f-paper/references/continuation-format.md +223 -0
  29. package/write-the-f-paper/references/git-integration.md +241 -0
  30. package/write-the-f-paper/references/imrad-structure.md +212 -0
  31. package/write-the-f-paper/references/length-estimation.md +148 -0
  32. package/write-the-f-paper/references/plan-format.md +361 -0
  33. package/write-the-f-paper/references/principles.md +158 -0
  34. package/write-the-f-paper/references/questioning.md +132 -0
  35. package/write-the-f-paper/references/research-pitfalls.md +208 -0
  36. package/write-the-f-paper/templates/config.json +30 -0
  37. package/write-the-f-paper/templates/context.md +179 -0
  38. package/write-the-f-paper/templates/continue-here.md +142 -0
  39. package/write-the-f-paper/templates/data-inventory.md +142 -0
  40. package/write-the-f-paper/templates/discovery.md +146 -0
  41. package/write-the-f-paper/templates/issues.md +59 -0
  42. package/write-the-f-paper/templates/manuscript.md +253 -0
  43. package/write-the-f-paper/templates/narrative-arc.md +227 -0
  44. package/write-the-f-paper/templates/outline.md +274 -0
  45. package/write-the-f-paper/templates/phase-prompt.md +348 -0
  46. package/write-the-f-paper/templates/prior-drafts.md +204 -0
  47. package/write-the-f-paper/templates/project-context/argument-structure.md +267 -0
  48. package/write-the-f-paper/templates/project-context/bibliography.md +152 -0
  49. package/write-the-f-paper/templates/project-context/gaps.md +122 -0
  50. package/write-the-f-paper/templates/project-context/imrad.md +140 -0
  51. package/write-the-f-paper/templates/project-context/peer-review.md +152 -0
  52. package/write-the-f-paper/templates/project-context/style-guide.md +198 -0
  53. package/write-the-f-paper/templates/project-context/tools.md +170 -0
  54. package/write-the-f-paper/templates/project.md +185 -0
  55. package/write-the-f-paper/templates/research.md +384 -0
  56. package/write-the-f-paper/templates/review-comments.md +253 -0
  57. package/write-the-f-paper/templates/revision-issues.md +169 -0
  58. package/write-the-f-paper/templates/roadmap.md +187 -0
  59. package/write-the-f-paper/templates/section-archive.md +178 -0
  60. package/write-the-f-paper/templates/section-context.md +114 -0
  61. package/write-the-f-paper/templates/section.md +128 -0
  62. package/write-the-f-paper/templates/state.md +244 -0
  63. package/write-the-f-paper/templates/summary.md +277 -0
  64. package/write-the-f-paper/venues/acm-cs.yaml +102 -0
  65. package/write-the-f-paper/venues/arxiv-ml.yaml +103 -0
  66. package/write-the-f-paper/venues/ieee-cs.yaml +100 -0
  67. package/write-the-f-paper/venues/nature.yaml +81 -0
  68. package/write-the-f-paper/venues/thesis-chapter.yaml +101 -0
  69. package/write-the-f-paper/workflows/create-outline.md +462 -0
  70. package/write-the-f-paper/workflows/create-outline.wcn.md +194 -0
  71. package/write-the-f-paper/workflows/discuss-section.md +249 -0
  72. package/write-the-f-paper/workflows/discuss-section.wcn.md +63 -0
  73. package/write-the-f-paper/workflows/execute-section.md +704 -0
  74. package/write-the-f-paper/workflows/execute-section.wcn.md +219 -0
  75. package/write-the-f-paper/workflows/list-assumptions.md +183 -0
  76. package/write-the-f-paper/workflows/list-assumptions.wcn.md +42 -0
  77. package/write-the-f-paper/workflows/lit-review-phase.md +281 -0
  78. package/write-the-f-paper/workflows/lit-review-phase.wcn.md +92 -0
  79. package/write-the-f-paper/workflows/map-project.md +359 -0
  80. package/write-the-f-paper/workflows/map-project.wcn.md +73 -0
  81. package/write-the-f-paper/workflows/plan-section.md +409 -0
  82. package/write-the-f-paper/workflows/plan-section.wcn.md +236 -0
  83. package/write-the-f-paper/workflows/research-gap.md +469 -0
  84. package/write-the-f-paper/workflows/research-gap.wcn.md +119 -0
  85. package/write-the-f-paper/workflows/resume-paper.md +274 -0
  86. package/write-the-f-paper/workflows/resume-paper.wcn.md +93 -0
  87. package/write-the-f-paper/workflows/review-section.md +329 -0
  88. package/write-the-f-paper/workflows/review-section.wcn.md +91 -0
  89. package/write-the-f-paper/workflows/submit-draft.md +368 -0
  90. package/write-the-f-paper/workflows/submit-draft.wcn.md +69 -0
  91. package/write-the-f-paper/workflows/transition.md +375 -0
  92. package/write-the-f-paper/workflows/transition.wcn.md +113 -0
@@ -0,0 +1,384 @@
1
+ # Research Template
2
+
3
+ Template for `.planning/sections/XX-name/{section}-RESEARCH.md` - comprehensive literature research before planning.
4
+
5
+ **Purpose:** Document what Claude needs to know to write a section well - not just "which approach" but "what does the field say."
6
+
7
+ ---
8
+
9
+ ## File Template
10
+
11
+ ```markdown
12
+ # Section [X]: [Name] - Research
13
+
14
+ **Researched:** [date]
15
+ **Domain:** [primary topic/field]
16
+ **Confidence:** [HIGH/MEDIUM/LOW]
17
+
18
+ <research_summary>
19
+ ## Summary
20
+
21
+ [2-3 paragraph executive summary]
22
+ - What was researched
23
+ - What the literature says
24
+ - Key recommendations for writing
25
+
26
+ **Primary recommendation:** [one-liner actionable guidance]
27
+ </research_summary>
28
+
29
+ <key_literature>
30
+ ## Key Literature
31
+
32
+ The foundational works for this section:
33
+
34
+ ### Core Citations (Must Cite)
35
+ | Citation | Relevance | Where to Use |
36
+ |----------|-----------|--------------|
37
+ | Author (Year) | [Why foundational] | [Section placement] |
38
+ | Author (Year) | [Why foundational] | [Section placement] |
39
+
40
+ ### Supporting Literature
41
+ | Citation | Relevance | When to Use |
42
+ |----------|-----------|-------------|
43
+ | Author (Year) | [What it contributes] | [Use case] |
44
+ | Author (Year) | [What it contributes] | [Use case] |
45
+
46
+ ### Contrasting Views
47
+ | Citation | Position | Our Response |
48
+ |----------|----------|--------------|
49
+ | Author (Year) | [Their argument] | [How we address it] |
50
+ </key_literature>
51
+
52
+ <field_conventions>
53
+ ## Field Conventions
54
+
55
+ ### Standard Approaches
56
+ [How papers in this field typically handle this section]
57
+
58
+ **Structure:**
59
+ - [Expected elements]
60
+ - [Typical flow]
61
+ - [What reviewers expect]
62
+
63
+ **Terminology:**
64
+ - [Standard terms to use]
65
+ - [Terms to avoid or define]
66
+
67
+ **Evidence Standards:**
68
+ - [What counts as sufficient evidence]
69
+ - [Expected rigor level]
70
+ </field_conventions>
71
+
72
+ <common_arguments>
73
+ ## Common Arguments
74
+
75
+ ### Argument Pattern 1: [Name]
76
+ **Structure:** [How this argument typically flows]
77
+ **Example:** [Citation that exemplifies this]
78
+ **Our use:** [How we can employ this]
79
+
80
+ ### Argument Pattern 2: [Name]
81
+ **Structure:** [How this argument typically flows]
82
+ **Example:** [Citation that exemplifies this]
83
+ **Our use:** [How we can employ this]
84
+ </common_arguments>
85
+
86
+ <pitfalls_to_avoid>
87
+ ## Pitfalls to Avoid
88
+
89
+ ### Pitfall 1: [Name]
90
+ **What goes wrong:** [Description]
91
+ **Why it happens:** [Root cause]
92
+ **How to avoid:** [Prevention strategy]
93
+ **Example:** [Citation or description of bad example]
94
+
95
+ ### Pitfall 2: [Name]
96
+ **What goes wrong:** [Description]
97
+ **Why it happens:** [Root cause]
98
+ **How to avoid:** [Prevention strategy]
99
+ **Example:** [Citation or description]
100
+
101
+ ### Pitfall 3: [Name]
102
+ **What goes wrong:** [Description]
103
+ **Why it happens:** [Root cause]
104
+ **How to avoid:** [Prevention strategy]
105
+ **Example:** [Citation or description]
106
+ </pitfalls_to_avoid>
107
+
108
+ <quotes_to_use>
109
+ ## Key Quotes
110
+
111
+ Verified quotes from sources:
112
+
113
+ ### [Topic 1]
114
+ > "[Exact quote]"
115
+ > — Author (Year, p. X)
116
+
117
+ **Use for:** [Where/how to use this quote]
118
+
119
+ ### [Topic 2]
120
+ > "[Exact quote]"
121
+ > — Author (Year, p. X)
122
+
123
+ **Use for:** [Where/how to use this quote]
124
+ </quotes_to_use>
125
+
126
+ <recent_developments>
127
+ ## Recent Developments (2023-2025)
128
+
129
+ What's changed recently:
130
+
131
+ | Old Consensus | Current Understanding | Key Citation |
132
+ |---------------|----------------------|--------------|
133
+ | [Old view] | [New view] | Author (Year) |
134
+
135
+ **New findings to incorporate:**
136
+ - [Finding]: [Implication for our paper]
137
+ - [Finding]: [Implication for our paper]
138
+
139
+ **Outdated views to avoid:**
140
+ - [View]: [Why outdated, what replaced it]
141
+ </recent_developments>
142
+
143
+ <open_questions>
144
+ ## Open Questions
145
+
146
+ Things that couldn't be fully resolved:
147
+
148
+ 1. **[Question]**
149
+ - What we know: [Partial info]
150
+ - What's unclear: [The gap]
151
+ - Recommendation: [How to handle during writing]
152
+
153
+ 2. **[Question]**
154
+ - What we know: [Partial info]
155
+ - What's unclear: [The gap]
156
+ - Recommendation: [How to handle]
157
+ </open_questions>
158
+
159
+ <sources>
160
+ ## Sources
161
+
162
+ ### Primary (HIGH confidence)
163
+ - [Citation] - [What was learned]
164
+ - [Citation] - [What was learned]
165
+
166
+ ### Secondary (MEDIUM confidence)
167
+ - [Citation verified with primary] - [Finding + verification]
168
+
169
+ ### Tertiary (LOW confidence - needs validation)
170
+ - [WebSearch only] - [Finding, marked for validation during writing]
171
+ </sources>
172
+
173
+ <metadata>
174
+ ## Metadata
175
+
176
+ **Research scope:**
177
+ - Core topic: [What]
178
+ - Literature: [Papers explored]
179
+ - Conventions: [Field norms researched]
180
+ - Pitfalls: [Areas checked]
181
+
182
+ **Confidence breakdown:**
183
+ - Key literature: [HIGH/MEDIUM/LOW] - [reason]
184
+ - Field conventions: [HIGH/MEDIUM/LOW] - [reason]
185
+ - Recent developments: [HIGH/MEDIUM/LOW] - [reason]
186
+
187
+ **Research date:** [date]
188
+ **Valid until:** [estimate - 30 days for stable field, 7 days for fast-moving]
189
+ </metadata>
190
+
191
+ ---
192
+
193
+ *Section: XX-name*
194
+ *Research completed: [date]*
195
+ *Ready for planning: [yes/no]*
196
+ ```
197
+
198
+ ---
199
+
200
+ ## Good Example
201
+
202
+ ```markdown
203
+ # Section 2: Literature Review - Research
204
+
205
+ **Researched:** 2025-01-20
206
+ **Domain:** AI-assisted academic writing
207
+ **Confidence:** HIGH
208
+
209
+ <research_summary>
210
+ ## Summary
211
+
212
+ Researched the literature on AI-assisted writing tools in academic contexts. The field has grown rapidly since 2023, with three main threads: (1) tool efficacy studies, (2) ethical concerns about authorship, and (3) pedagogical integration.
213
+
214
+ Key finding: Most literature focuses on undergraduate writing; PhD/researcher use is understudied. This positions our contribution clearly.
215
+
216
+ **Primary recommendation:** Structure lit review around the three threads, acknowledge ethical concerns explicitly, position our work as addressing the researcher gap.
217
+ </research_summary>
218
+
219
+ <key_literature>
220
+ ## Key Literature
221
+
222
+ ### Core Citations (Must Cite)
223
+ | Citation | Relevance | Where to Use |
224
+ |----------|-----------|--------------|
225
+ | Smith et al. (2023) | Foundational survey of AI writing tools | Opening context |
226
+ | Jones & Chen (2024) | Ethics framework for AI authorship | Ethics paragraph |
227
+ | Brown (2023) | Gap in researcher-focused tools | Gap statement |
228
+
229
+ ### Supporting Literature
230
+ | Citation | Relevance | When to Use |
231
+ |----------|-----------|-------------|
232
+ | Williams (2024) | Pedagogical integration strategies | If discussing teaching |
233
+ | Davis et al. (2023) | Productivity impacts in industry | Broader context |
234
+
235
+ ### Contrasting Views
236
+ | Citation | Position | Our Response |
237
+ |----------|----------|--------------|
238
+ | Taylor (2024) | AI writing is plagiarism | Distinguish co-authorship from replacement |
239
+ </key_literature>
240
+
241
+ <field_conventions>
242
+ ## Field Conventions
243
+
244
+ ### Standard Approaches
245
+
246
+ **Structure:**
247
+ - Thematic organization (not chronological)
248
+ - Explicit positioning statement at end
249
+ - Critical synthesis, not just summary
250
+
251
+ **Terminology:**
252
+ - "AI-assisted" not "AI-generated"
253
+ - "Co-authorship" for collaborative use
254
+ - Avoid "cheating" framing - use "ethical considerations"
255
+
256
+ **Evidence Standards:**
257
+ - Empirical studies preferred over opinion pieces
258
+ - Recent work (2022+) for rapidly evolving field
259
+ - Acknowledge limitations of self-report studies
260
+ </field_conventions>
261
+
262
+ <common_arguments>
263
+ ## Common Arguments
264
+
265
+ ### Argument Pattern 1: Gap-Contribution
266
+ **Structure:** Literature shows X, but not Y. We address Y.
267
+ **Example:** Brown (2023) uses this effectively
268
+ **Our use:** Position our framework after reviewing existing tools
269
+
270
+ ### Argument Pattern 2: Synthesis-Tension
271
+ **Structure:** Thread A says X, Thread B says Y. We reconcile with Z.
272
+ **Example:** Jones & Chen (2024) synthesize ethics debates
273
+ **Our use:** Bridge productivity and ethics concerns
274
+ </common_arguments>
275
+
276
+ <pitfalls_to_avoid>
277
+ ## Pitfalls to Avoid
278
+
279
+ ### Pitfall 1: Uncritical Tech Enthusiasm
280
+ **What goes wrong:** Paper reads as AI promotion
281
+ **Why it happens:** Focus on capabilities without limitations
282
+ **How to avoid:** Explicitly acknowledge concerns, cite critics
283
+ **Example:** Early 2023 papers often read as promotional
284
+
285
+ ### Pitfall 2: Ethics Afterthought
286
+ **What goes wrong:** Ethics section feels tacked on
287
+ **Why it happens:** Not integrated into main argument
288
+ **How to avoid:** Weave ethical considerations throughout
289
+ **Example:** Taylor (2024) critique of shallow ethics coverage
290
+
291
+ ### Pitfall 3: Stale Literature
292
+ **What goes wrong:** Cites outdated tools/studies
293
+ **Why it happens:** Field moves fast, papers age quickly
294
+ **How to avoid:** Check publication dates, prefer 2023+
295
+ **Example:** GPT-3 studies largely superseded
296
+ </pitfalls_to_avoid>
297
+
298
+ <quotes_to_use>
299
+ ## Key Quotes
300
+
301
+ ### On the research gap
302
+ > "While substantial attention has been paid to AI writing tools in educational contexts, their role in supporting professional researchers remains largely unexplored."
303
+ > — Brown (2023, p. 12)
304
+
305
+ **Use for:** Gap statement in literature review
306
+
307
+ ### On ethical framing
308
+ > "The question is not whether AI should assist writing, but how to integrate it responsibly while preserving scholarly integrity."
309
+ > — Jones & Chen (2024, p. 45)
310
+
311
+ **Use for:** Ethics discussion, positioning statement
312
+ </quotes_to_use>
313
+
314
+ <sources>
315
+ ## Sources
316
+
317
+ ### Primary (HIGH confidence)
318
+ - Smith et al. (2023) - Comprehensive survey, 200+ tools reviewed
319
+ - Jones & Chen (2024) - Ethics framework, widely cited
320
+ - Brown (2023) - Gap identification, recent and relevant
321
+
322
+ ### Secondary (MEDIUM confidence)
323
+ - Williams (2024) - Preprint, verified with subsequent publication
324
+
325
+ ### Tertiary (LOW confidence - needs validation)
326
+ - Conference proceedings from 2024 - Check if published in final form
327
+ </sources>
328
+
329
+ <metadata>
330
+ ## Metadata
331
+
332
+ **Research scope:**
333
+ - Core topic: AI-assisted academic writing
334
+ - Literature: 25+ papers reviewed
335
+ - Conventions: HCI and education publication norms
336
+ - Pitfalls: Common reviewer complaints identified
337
+
338
+ **Confidence breakdown:**
339
+ - Key literature: HIGH - verified with Google Scholar
340
+ - Field conventions: HIGH - from published guidelines
341
+ - Recent developments: MEDIUM - field moving fast
342
+
343
+ **Research date:** 2025-01-20
344
+ **Valid until:** 2025-02-20 (30 days - field evolving)
345
+ </metadata>
346
+
347
+ ---
348
+
349
+ *Section: 02-literature*
350
+ *Research completed: 2025-01-20*
351
+ *Ready for planning: yes*
352
+ ```
353
+
354
+ ---
355
+
356
+ ## Guidelines
357
+
358
+ **When to create:**
359
+ - Before planning sections that require literature engagement
360
+ - When field knowledge is needed beyond what user provides
361
+ - When "what does the literature say" matters
362
+
363
+ **Structure:**
364
+ - Use XML tags for section markers (matches WTF-P templates)
365
+ - Seven core sections: summary, key_literature, field_conventions, common_arguments, pitfalls_to_avoid, quotes_to_use, sources
366
+ - All sections required (drives comprehensive research)
367
+
368
+ **Content quality:**
369
+ - Key literature: Include citation details, not just names
370
+ - Field conventions: Be prescriptive about expectations
371
+ - Pitfalls: Include examples of what to avoid
372
+ - Quotes: Provide exact quotes with page numbers
373
+ - Sources: Mark confidence levels honestly
374
+
375
+ **Integration with planning:**
376
+ - RESEARCH.md loaded as @context reference in PLAN.md
377
+ - Key literature informs citation choices
378
+ - Pitfalls inform what to avoid in writing
379
+ - Quotes can be used directly in draft
380
+
381
+ **After creation:**
382
+ - File lives in section directory: `.planning/sections/XX-name/{section}-RESEARCH.md`
383
+ - Referenced during planning workflow
384
+ - plan-section loads it automatically when present
@@ -0,0 +1,253 @@
1
+ # Review Comments Template
2
+
3
+ Template for `.planning/revisions/round-[N]/reviewer-comments.md` — importing reviewer feedback.
4
+
5
+ **Purpose:** Capture and organize reviewer comments for systematic response.
6
+
7
+ ---
8
+
9
+ ## File Template
10
+
11
+ ```markdown
12
+ # Reviewer Comments: Round [N]
13
+
14
+ **Received:** [date]
15
+ **Decision:** [Accept / Minor Revision / Major Revision / Reject with Resubmit / Reject]
16
+ **Response deadline:** [date]
17
+
18
+ ## Editor Summary
19
+
20
+ > [Editor's summary or cover letter text, if provided]
21
+
22
+ **Editor's key points:**
23
+ - [Point 1]
24
+ - [Point 2]
25
+
26
+ ---
27
+
28
+ ## Reviewer 1
29
+
30
+ **Expertise:** [If stated: "Expert in X" / "Familiar with Y"]
31
+ **Recommendation:** [If stated: Accept / Minor / Major / Reject]
32
+ **Overall tone:** [Positive / Mixed / Critical / Constructive]
33
+
34
+ ### Summary Comments
35
+
36
+ > [Reviewer's overall assessment, quoted verbatim]
37
+
38
+ ### Detailed Comments
39
+
40
+ #### R1.1: [Brief summary]
41
+
42
+ **Type:** [Required / Suggested / Question / Minor]
43
+ **Section:** [Which section this concerns]
44
+
45
+ > "[Exact quote from reviewer]"
46
+
47
+ **Our understanding:** [What they're asking for]
48
+ **Severity:** [Critical / Major / Minor]
49
+
50
+ ---
51
+
52
+ #### R1.2: [Brief summary]
53
+
54
+ **Type:** [Required / Suggested / Question / Minor]
55
+ **Section:** [Which section]
56
+
57
+ > "[Exact quote from reviewer]"
58
+
59
+ **Our understanding:** [What they're asking for]
60
+ **Severity:** [Critical / Major / Minor]
61
+
62
+ ---
63
+
64
+ [Continue for all comments...]
65
+
66
+ ---
67
+
68
+ ## Reviewer 2
69
+
70
+ **Expertise:** [If stated]
71
+ **Recommendation:** [If stated]
72
+ **Overall tone:** [Assessment]
73
+
74
+ ### Summary Comments
75
+
76
+ > [Reviewer's overall assessment]
77
+
78
+ ### Detailed Comments
79
+
80
+ #### R2.1: [Brief summary]
81
+
82
+ **Type:** [Required / Suggested / Question / Minor]
83
+ **Section:** [Which section]
84
+
85
+ > "[Exact quote]"
86
+
87
+ **Our understanding:** [What they're asking for]
88
+ **Severity:** [Critical / Major / Minor]
89
+
90
+ ---
91
+
92
+ [Continue for all comments...]
93
+
94
+ ---
95
+
96
+ ## Reviewer 3 (if applicable)
97
+
98
+ [Same structure...]
99
+
100
+ ---
101
+
102
+ ## Comment Summary
103
+
104
+ ### By Priority
105
+
106
+ **Critical (must address):**
107
+ - R1.2: [Summary]
108
+ - R2.1: [Summary]
109
+
110
+ **Major (should address):**
111
+ - R1.1: [Summary]
112
+ - R2.3: [Summary]
113
+
114
+ **Minor (nice to address):**
115
+ - R1.4: [Summary]
116
+ - R2.5: [Summary]
117
+
118
+ ### By Section
119
+
120
+ | Section | Comments | Critical | Major | Minor |
121
+ |---------|----------|----------|-------|-------|
122
+ | Introduction | R1.1, R2.2 | 0 | 1 | 1 |
123
+ | Methods | R1.2, R2.1, R3.1 | 1 | 1 | 1 |
124
+ | Results | R2.3 | 0 | 1 | 0 |
125
+ | Discussion | R1.3, R2.4 | 0 | 1 | 1 |
126
+
127
+ ### Cross-Reviewer Themes
128
+
129
+ **Multiple reviewers mentioned:**
130
+ - [Theme 1]: R1.1, R2.2 — [Common concern]
131
+ - [Theme 2]: R1.3, R2.4, R3.2 — [Common concern]
132
+
133
+ ---
134
+
135
+ *Reviews imported: [date]*
136
+ *Ready for: /wtfp:plan-revision*
137
+ ```
138
+
139
+ <guidelines>
140
+
141
+ **Importing reviews:**
142
+ 1. Copy exact text from review system
143
+ 2. Quote verbatim (don't paraphrase)
144
+ 3. Add your understanding beneath
145
+ 4. Classify by type and severity
146
+
147
+ **Comment types:**
148
+ - Required: Must change or address
149
+ - Suggested: Recommended but optional
150
+ - Question: Clarification needed
151
+ - Minor: Typos, small fixes
152
+
153
+ **Severity levels:**
154
+ - Critical: Would cause rejection if unaddressed
155
+ - Major: Significant weakness
156
+ - Minor: Would improve but not required
157
+
158
+ **Comment numbering:**
159
+ - R1.1, R1.2: Reviewer 1, comments 1, 2
160
+ - R2.1, R2.2: Reviewer 2, comments 1, 2
161
+ - Enables precise reference in response
162
+
163
+ **Cross-reviewer analysis:**
164
+ - Identify common themes
165
+ - Multiple mentions = higher priority
166
+ - Consensus issues need strongest response
167
+
168
+ **After import:**
169
+ 1. Run /wtfp:plan-revision to create fix plan
170
+ 2. Execute fixes
171
+ 3. Create response letter
172
+ 4. Verify all comments addressed
173
+ </guidelines>
174
+
175
+ <example>
176
+ ```markdown
177
+ # Reviewer Comments: Round 1
178
+
179
+ **Received:** 2025-04-15
180
+ **Decision:** Major Revision
181
+ **Response deadline:** 2025-05-15
182
+
183
+ ## Editor Summary
184
+
185
+ > The reviewers appreciate the novel contribution but have concerns about methodology and generalizability. Please address all comments thoroughly.
186
+
187
+ **Editor's key points:**
188
+ - Strengthen methods section
189
+ - Address generalizability concerns
190
+ - Add statistical detail
191
+
192
+ ---
193
+
194
+ ## Reviewer 1
195
+
196
+ **Expertise:** Expert in HCI research methods
197
+ **Recommendation:** Major Revision
198
+ **Overall tone:** Constructive
199
+
200
+ ### Summary Comments
201
+
202
+ > "This paper addresses an important and timely topic. The framework is novel and potentially useful. However, I have concerns about the methodology and sample size that need to be addressed."
203
+
204
+ ### Detailed Comments
205
+
206
+ #### R1.1: Sample size justification
207
+
208
+ **Type:** Required
209
+ **Section:** Methods
210
+
211
+ > "The sample size of N=45 is not justified. Please provide a power analysis or cite precedent studies that support this sample size for the type of analysis conducted."
212
+
213
+ **Our understanding:** Need to justify N=45 with power analysis or precedent
214
+ **Severity:** Critical
215
+
216
+ ---
217
+
218
+ #### R1.2: Participant demographics
219
+
220
+ **Type:** Suggested
221
+ **Section:** Methods
222
+
223
+ > "Table 1 would benefit from additional demographic information including years of experience and prior AI tool usage."
224
+
225
+ **Our understanding:** Expand demographics table
226
+ **Severity:** Major
227
+
228
+ ---
229
+
230
+ ## Comment Summary
231
+
232
+ ### By Priority
233
+
234
+ **Critical (must address):**
235
+ - R1.1: Sample size justification
236
+ - R2.1: Statistical test details
237
+
238
+ **Major (should address):**
239
+ - R1.2: Expand demographics
240
+ - R2.3: Clarify framework validation
241
+
242
+ ### Cross-Reviewer Themes
243
+
244
+ **Multiple reviewers mentioned:**
245
+ - Methods detail: R1.1, R1.2, R2.1 — Need more methodological rigor
246
+ - Generalizability: R1.3, R2.4 — Concern about two-discipline limitation
247
+
248
+ ---
249
+
250
+ *Reviews imported: 2025-04-15*
251
+ *Ready for: /wtfp:plan-revision*
252
+ ```
253
+ </example>