bobo-ai-cli 1.0.1

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 (234) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +216 -0
  3. package/dist/agent.d.ts +9 -0
  4. package/dist/agent.js +144 -0
  5. package/dist/agent.js.map +1 -0
  6. package/dist/config.d.ts +15 -0
  7. package/dist/config.js +76 -0
  8. package/dist/config.js.map +1 -0
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +366 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/knowledge-commands.d.ts +2 -0
  13. package/dist/knowledge-commands.js +40 -0
  14. package/dist/knowledge-commands.js.map +1 -0
  15. package/dist/knowledge.d.ts +17 -0
  16. package/dist/knowledge.js +112 -0
  17. package/dist/knowledge.js.map +1 -0
  18. package/dist/memory.d.ts +17 -0
  19. package/dist/memory.js +215 -0
  20. package/dist/memory.js.map +1 -0
  21. package/dist/planner.d.ts +22 -0
  22. package/dist/planner.js +130 -0
  23. package/dist/planner.js.map +1 -0
  24. package/dist/project.d.ts +25 -0
  25. package/dist/project.js +117 -0
  26. package/dist/project.js.map +1 -0
  27. package/dist/rules-commands.d.ts +2 -0
  28. package/dist/rules-commands.js +51 -0
  29. package/dist/rules-commands.js.map +1 -0
  30. package/dist/skills.d.ts +28 -0
  31. package/dist/skills.js +349 -0
  32. package/dist/skills.js.map +1 -0
  33. package/dist/structured/loader.d.ts +19 -0
  34. package/dist/structured/loader.js +147 -0
  35. package/dist/structured/loader.js.map +1 -0
  36. package/dist/structured/paths.d.ts +2 -0
  37. package/dist/structured/paths.js +14 -0
  38. package/dist/structured/paths.js.map +1 -0
  39. package/dist/structured/project-scaffold.d.ts +7 -0
  40. package/dist/structured/project-scaffold.js +60 -0
  41. package/dist/structured/project-scaffold.js.map +1 -0
  42. package/dist/structured/render-markdown.d.ts +37 -0
  43. package/dist/structured/render-markdown.js +47 -0
  44. package/dist/structured/render-markdown.js.map +1 -0
  45. package/dist/structured/render-table.d.ts +1 -0
  46. package/dist/structured/render-table.js +15 -0
  47. package/dist/structured/render-table.js.map +1 -0
  48. package/dist/structured/search.d.ts +10 -0
  49. package/dist/structured/search.js +104 -0
  50. package/dist/structured/search.js.map +1 -0
  51. package/dist/structured/skill-runner.d.ts +15 -0
  52. package/dist/structured/skill-runner.js +60 -0
  53. package/dist/structured/skill-runner.js.map +1 -0
  54. package/dist/structured/types.d.ts +212 -0
  55. package/dist/structured/types.js +97 -0
  56. package/dist/structured/types.js.map +1 -0
  57. package/dist/structured-skills-commands.d.ts +3 -0
  58. package/dist/structured-skills-commands.js +126 -0
  59. package/dist/structured-skills-commands.js.map +1 -0
  60. package/dist/structured-template-commands.d.ts +2 -0
  61. package/dist/structured-template-commands.js +34 -0
  62. package/dist/structured-template-commands.js.map +1 -0
  63. package/dist/tools/index.d.ts +3 -0
  64. package/dist/tools/index.js +450 -0
  65. package/dist/tools/index.js.map +1 -0
  66. package/dist/ui.d.ts +19 -0
  67. package/dist/ui.js +72 -0
  68. package/dist/ui.js.map +1 -0
  69. package/dist/web.d.ts +4 -0
  70. package/dist/web.js +124 -0
  71. package/dist/web.js.map +1 -0
  72. package/knowledge/advanced-patterns.md +70 -0
  73. package/knowledge/agent-directives.md +74 -0
  74. package/knowledge/dream.md +36 -0
  75. package/knowledge/engineering.md +46 -0
  76. package/knowledge/error-catalog.md +33 -0
  77. package/knowledge/index.json +170 -0
  78. package/knowledge/memory/cache-optimization-and-skill-integration.md +102 -0
  79. package/knowledge/memory/engineering-patterns.md +134 -0
  80. package/knowledge/memory/feedback_root_structure.md +16 -0
  81. package/knowledge/memory/project-contexts.md +69 -0
  82. package/knowledge/memory/tools-and-services.md +85 -0
  83. package/knowledge/rules/agents.md +62 -0
  84. package/knowledge/rules/blocking-rules.md +323 -0
  85. package/knowledge/rules/cache-management.md +379 -0
  86. package/knowledge/rules/capability-evolution.md +132 -0
  87. package/knowledge/rules/coding.md +126 -0
  88. package/knowledge/rules/engineering-workflows.md +225 -0
  89. package/knowledge/rules/evomap-content-guidelines.md +354 -0
  90. package/knowledge/rules/evomap-guide.md +224 -0
  91. package/knowledge/rules/git.md +31 -0
  92. package/knowledge/rules/hooks.md +106 -0
  93. package/knowledge/rules/performance.md +101 -0
  94. package/knowledge/rules/remotion-auto-production.md +1120 -0
  95. package/knowledge/rules/security.md +46 -0
  96. package/knowledge/rules/testing.md +32 -0
  97. package/knowledge/rules/work-mode.md +208 -0
  98. package/knowledge/rules.md +62 -0
  99. package/knowledge/skills/Skill_Seekers.md +1722 -0
  100. package/knowledge/skills/ab-test-setup.md +557 -0
  101. package/knowledge/skills/agent-sdk-dev.md +238 -0
  102. package/knowledge/skills/agent-tools.md +136 -0
  103. package/knowledge/skills/analytics-tracking.md +597 -0
  104. package/knowledge/skills/artifacts-builder.md +89 -0
  105. package/knowledge/skills/asana.md +13 -0
  106. package/knowledge/skills/backend-expert.md +97 -0
  107. package/knowledge/skills/brand-voice.md +481 -0
  108. package/knowledge/skills/browser-use.md +419 -0
  109. package/knowledge/skills/cache-optimization-skill.md +179 -0
  110. package/knowledge/skills/canvas-design.md +147 -0
  111. package/knowledge/skills/citation-validator.md +203 -0
  112. package/knowledge/skills/clangd-lsp.md +52 -0
  113. package/knowledge/skills/code-review-expert.md +85 -0
  114. package/knowledge/skills/code-review.md +280 -0
  115. package/knowledge/skills/code-simplifier.md +13 -0
  116. package/knowledge/skills/commit-commands.md +258 -0
  117. package/knowledge/skills/competitor-alternatives.md +795 -0
  118. package/knowledge/skills/content-atomizer.md +910 -0
  119. package/knowledge/skills/content-research-writer.md +605 -0
  120. package/knowledge/skills/context-optimization-suite.md +162 -0
  121. package/knowledge/skills/context7.md +13 -0
  122. package/knowledge/skills/copy-editing.md +494 -0
  123. package/knowledge/skills/copywriting.md +510 -0
  124. package/knowledge/skills/csharp-lsp.md +40 -0
  125. package/knowledge/skills/decision-making-framework.md +154 -0
  126. package/knowledge/skills/developer-growth-analysis.md +335 -0
  127. package/knowledge/skills/direct-response-copy.md +2336 -0
  128. package/knowledge/skills/docker-expert.md +229 -0
  129. package/knowledge/skills/document-skills.md +13 -0
  130. package/knowledge/skills/documentation-expert.md +126 -0
  131. package/knowledge/skills/email-sequence.md +1061 -0
  132. package/knowledge/skills/email-sequences.md +910 -0
  133. package/knowledge/skills/example-plugin.md +72 -0
  134. package/knowledge/skills/explanatory-output-style.md +82 -0
  135. package/knowledge/skills/feature-dev.md +458 -0
  136. package/knowledge/skills/file-organizer.md +466 -0
  137. package/knowledge/skills/firebase.disabled.md +13 -0
  138. package/knowledge/skills/form-cro.md +488 -0
  139. package/knowledge/skills/free-tool-strategy.md +636 -0
  140. package/knowledge/skills/frontend-design-offical.md +55 -0
  141. package/knowledge/skills/frontend-design.md +41 -0
  142. package/knowledge/skills/frontend-expert.md +93 -0
  143. package/knowledge/skills/github.md +13 -0
  144. package/knowledge/skills/gitlab.md +13 -0
  145. package/knowledge/skills/gopls-lsp.md +32 -0
  146. package/knowledge/skills/got-controller.md +218 -0
  147. package/knowledge/skills/greptile.md +72 -0
  148. package/knowledge/skills/hookify.md +376 -0
  149. package/knowledge/skills/image-editor.md +189 -0
  150. package/knowledge/skills/image-enhancer.md +109 -0
  151. package/knowledge/skills/jdtls-lsp.md +49 -0
  152. package/knowledge/skills/json-canvas.md +654 -0
  153. package/knowledge/skills/keyword-research.md +559 -0
  154. package/knowledge/skills/kotlin-lsp.md +28 -0
  155. package/knowledge/skills/laravel-boost.md +13 -0
  156. package/knowledge/skills/launch-strategy.md +394 -0
  157. package/knowledge/skills/lead-magnet.md +393 -0
  158. package/knowledge/skills/learning-output-style.md +106 -0
  159. package/knowledge/skills/linear.md +13 -0
  160. package/knowledge/skills/lua-lsp.md +47 -0
  161. package/knowledge/skills/marketing-ideas.md +720 -0
  162. package/knowledge/skills/marketing-psychology.md +534 -0
  163. package/knowledge/skills/mcp-builder.md +369 -0
  164. package/knowledge/skills/meeting-insights-analyzer.md +347 -0
  165. package/knowledge/skills/memory-evolution-system.md +172 -0
  166. package/knowledge/skills/multi-lens-thinking.md +407 -0
  167. package/knowledge/skills/nano-banana-pro.md +116 -0
  168. package/knowledge/skills/newsletter.md +736 -0
  169. package/knowledge/skills/notebooklm.md +296 -0
  170. package/knowledge/skills/obsidian-bases.md +634 -0
  171. package/knowledge/skills/obsidian-markdown.md +651 -0
  172. package/knowledge/skills/onboarding-cro.md +494 -0
  173. package/knowledge/skills/orchestrator.md +681 -0
  174. package/knowledge/skills/page-cro.md +379 -0
  175. package/knowledge/skills/paid-ads.md +624 -0
  176. package/knowledge/skills/paywall-upgrade-cro.md +651 -0
  177. package/knowledge/skills/php-lsp.md +36 -0
  178. package/knowledge/skills/planning-with-files.md +193 -0
  179. package/knowledge/skills/playwright.md +13 -0
  180. package/knowledge/skills/plugin-dev.md +434 -0
  181. package/knowledge/skills/popup-cro.md +520 -0
  182. package/knowledge/skills/positioning-angles.md +330 -0
  183. package/knowledge/skills/pr-review-toolkit.md +359 -0
  184. package/knowledge/skills/pricing-strategy.md +777 -0
  185. package/knowledge/skills/programmatic-seo.md +714 -0
  186. package/knowledge/skills/pyright-lsp.md +43 -0
  187. package/knowledge/skills/quality-assurance-framework.md +168 -0
  188. package/knowledge/skills/question-refiner.md +160 -0
  189. package/knowledge/skills/ralph-loop.md +205 -0
  190. package/knowledge/skills/refactoring-expert.md +103 -0
  191. package/knowledge/skills/referral-program.md +668 -0
  192. package/knowledge/skills/research-executor.md +164 -0
  193. package/knowledge/skills/review-with-security.md +12 -0
  194. package/knowledge/skills/rust-analyzer-lsp.md +50 -0
  195. package/knowledge/skills/schema-markup.md +647 -0
  196. package/knowledge/skills/security-audit-expert.md +124 -0
  197. package/knowledge/skills/security-expert.md +140 -0
  198. package/knowledge/skills/security-guidance.md +13 -0
  199. package/knowledge/skills/seedance-prompt.md +139 -0
  200. package/knowledge/skills/self-evolution.md +1160 -0
  201. package/knowledge/skills/seo-audit.md +432 -0
  202. package/knowledge/skills/seo-content.md +787 -0
  203. package/knowledge/skills/serena.md +13 -0
  204. package/knowledge/skills/signup-flow-cro.md +409 -0
  205. package/knowledge/skills/skill-creator.md +220 -0
  206. package/knowledge/skills/skill-manager.md +226 -0
  207. package/knowledge/skills/skill-share.md +98 -0
  208. package/knowledge/skills/slack.md +13 -0
  209. package/knowledge/skills/social-content.md +878 -0
  210. package/knowledge/skills/spec-flow-skill.md +124 -0
  211. package/knowledge/skills/stripe.md +13 -0
  212. package/knowledge/skills/supabase.md +13 -0
  213. package/knowledge/skills/swift-lsp.md +40 -0
  214. package/knowledge/skills/synthesizer.md +236 -0
  215. package/knowledge/skills/template-skill.md +16 -0
  216. package/knowledge/skills/testing-expert.md +99 -0
  217. package/knowledge/skills/theme-factory.md +72 -0
  218. package/knowledge/skills/tiktok-research.md +208 -0
  219. package/knowledge/skills/typescript-lsp.md +36 -0
  220. package/knowledge/skills/ui-ux-pro-max.md +247 -0
  221. package/knowledge/skills/verify.md +15 -0
  222. package/knowledge/skills/visual-prompt-engineer.md +102 -0
  223. package/knowledge/skills/webapp-testing.md +111 -0
  224. package/knowledge/skills/wide-research.md +191 -0
  225. package/knowledge/system.md +93 -0
  226. package/knowledge/task-router.md +37 -0
  227. package/knowledge/verification.md +38 -0
  228. package/knowledge/workflows/3d-viz.md +47 -0
  229. package/knowledge/workflows/data-pipeline.md +47 -0
  230. package/knowledge/workflows/db-migration.md +51 -0
  231. package/knowledge/workflows/feature-dev.md +41 -0
  232. package/knowledge/workflows/tdd-flow.md +52 -0
  233. package/knowledge/workflows/ui-verify.md +51 -0
  234. package/package.json +60 -0
@@ -0,0 +1,605 @@
1
+ ---
2
+ id: "content-research-writer"
3
+ title: "Content Research Writer"
4
+ category: "marketing"
5
+ tags: ["content research writer", "when to use this skill", "what this skill does", "how to use", "instructions", "examples", "research compiled", "what works well ✓", "suggestions", "writing workflows"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/content-research-writer"
9
+ ---
10
+
11
+ ---
12
+ name: content-research-writer
13
+ description: Assists in writing high-quality content by conducting research, adding citations, improving hooks, iterating on outlines, and providing real-time feedback on each section. Transforms your writing process from solo effort to collaborative partnership.
14
+ ---
15
+
16
+ # Content Research Writer
17
+
18
+ This skill acts as your writing partner, helping you research, outline, draft, and refine content while maintaining your unique voice and style.
19
+
20
+ ## When to Use This Skill
21
+
22
+ - Writing blog posts, articles, or newsletters
23
+ - Creating educational content or tutorials
24
+ - Drafting thought leadership pieces
25
+ - Researching and writing case studies
26
+ - Producing technical documentation with sources
27
+ - Writing with proper citations and references
28
+ - Improving hooks and introductions
29
+ - Getting section-by-section feedback while writing
30
+
31
+ ## What This Skill Does
32
+
33
+ 1. **Collaborative Outlining**: Helps you structure ideas into coherent outlines
34
+ 2. **Research Assistance**: Finds relevant information and adds citations
35
+ 3. **Hook Improvement**: Strengthens your opening to capture attention
36
+ 4. **Section Feedback**: Reviews each section as you write
37
+ 5. **Voice Preservation**: Maintains your writing style and tone
38
+ 6. **Citation Management**: Adds and formats references properly
39
+ 7. **Iterative Refinement**: Helps you improve through multiple drafts
40
+
41
+ ## How to Use
42
+
43
+ ### Setup Your Writing Environment
44
+
45
+ Create a dedicated folder for your article:
46
+
47
+ ```
48
+ mkdir ~/writing/my-article-title
49
+ cd ~/writing/my-article-title
50
+ ```
51
+
52
+ Create your draft file:
53
+
54
+ ```
55
+ touch article-draft.md
56
+ ```
57
+
58
+ Open Claude Code from this directory and start writing.
59
+
60
+ ### Basic Workflow
61
+
62
+ 1. **Start with an outline**:
63
+
64
+ ```
65
+ Help me create an outline for an article about [topic]
66
+ ```
67
+
68
+ 2. **Research and add citations**:
69
+
70
+ ```
71
+ Research [specific topic] and add citations to my outline
72
+ ```
73
+
74
+ 3. **Improve the hook**:
75
+
76
+ ```
77
+ Here's my introduction. Help me make the hook more compelling.
78
+ ```
79
+
80
+ 4. **Get section feedback**:
81
+
82
+ ```
83
+ I just finished the "Why This Matters" section. Review it and give feedback.
84
+ ```
85
+
86
+ 5. **Refine and polish**:
87
+
88
+ ```
89
+ Review the full draft for flow, clarity, and consistency.
90
+ ```
91
+
92
+ ## Instructions
93
+
94
+ When a user requests writing assistance:
95
+
96
+ 1. **Understand the Writing Project**
97
+
98
+ Ask clarifying questions:
99
+ - What's the topic and main argument?
100
+ - Who's the target audience?
101
+ - What's the desired length/format?
102
+ - What's your goal? (educate, persuade, entertain, explain)
103
+ - Any existing research or sources to include?
104
+ - What's your writing style? (formal, conversational, technical)
105
+
106
+ 2. **Collaborative Outlining**
107
+
108
+ Help structure the content:
109
+
110
+ ```markdown
111
+ # Article Outline: [Title]
112
+
113
+ ## Hook
114
+
115
+ - [Opening line/story/statistic]
116
+ - [Why reader should care]
117
+
118
+ ## Introduction
119
+
120
+ - Context and background
121
+ - Problem statement
122
+ - What this article covers
123
+
124
+ ## Main Sections
125
+
126
+ ### Section 1: [Title]
127
+
128
+ - Key point A
129
+ - Key point B
130
+ - Example/evidence
131
+ - [Research needed: specific topic]
132
+
133
+ ### Section 2: [Title]
134
+
135
+ - Key point C
136
+ - Key point D
137
+ - Data/citation needed
138
+
139
+ ### Section 3: [Title]
140
+
141
+ - Key point E
142
+ - Counter-arguments
143
+ - Resolution
144
+
145
+ ## Conclusion
146
+
147
+ - Summary of main points
148
+ - Call to action
149
+ - Final thought
150
+
151
+ ## Research To-Do
152
+
153
+ - [ ] Find data on [topic]
154
+ - [ ] Get examples of [concept]
155
+ - [ ] Source citation for [claim]
156
+ ```
157
+
158
+ **Iterate on outline**:
159
+ - Adjust based on feedback
160
+ - Ensure logical flow
161
+ - Identify research gaps
162
+ - Mark sections for deep dives
163
+
164
+ 3. **Conduct Research**
165
+
166
+ When user requests research on a topic:
167
+ - Search for relevant information
168
+ - Find credible sources
169
+ - Extract key facts, quotes, and data
170
+ - Add citations in requested format
171
+
172
+ Example output:
173
+
174
+ ```markdown
175
+ ## Research: AI Impact on Productivity
176
+
177
+ Key Findings:
178
+
179
+ 1. **Productivity Gains**: Studies show 40% time savings for
180
+ content creation tasks [1]
181
+
182
+ 2. **Adoption Rates**: 67% of knowledge workers use AI tools
183
+ weekly [2]
184
+
185
+ 3. **Expert Quote**: "AI augments rather than replaces human
186
+ creativity" - Dr. Jane Smith, MIT [3]
187
+
188
+ Citations:
189
+ [1] McKinsey Global Institute. (2024). "The Economic Potential
190
+ of Generative AI"
191
+ [2] Stack Overflow Developer Survey (2024)
192
+ [3] Smith, J. (2024). MIT Technology Review interview
193
+
194
+ Added to outline under Section 2.
195
+ ```
196
+
197
+ 4. **Improve Hooks**
198
+
199
+ When user shares an introduction, analyze and strengthen:
200
+
201
+ **Current Hook Analysis**:
202
+ - What works: [positive elements]
203
+ - What could be stronger: [areas for improvement]
204
+ - Emotional impact: [current vs. potential]
205
+
206
+ **Suggested Alternatives**:
207
+
208
+ Option 1: [Bold statement]
209
+
210
+ > [Example]
211
+ > _Why it works: [explanation]_
212
+
213
+ Option 2: [Personal story]
214
+
215
+ > [Example]
216
+ > _Why it works: [explanation]_
217
+
218
+ Option 3: [Surprising data]
219
+
220
+ > [Example]
221
+ > _Why it works: [explanation]_
222
+
223
+ **Questions to hook**:
224
+ - Does it create curiosity?
225
+ - Does it promise value?
226
+ - Is it specific enough?
227
+ - Does it match the audience?
228
+
229
+ 5. **Provide Section-by-Section Feedback**
230
+
231
+ As user writes each section, review for:
232
+
233
+ ```markdown
234
+ # Feedback: [Section Name]
235
+
236
+ ## What Works Well ✓
237
+
238
+ - [Strength 1]
239
+ - [Strength 2]
240
+ - [Strength 3]
241
+
242
+ ## Suggestions for Improvement
243
+
244
+ ### Clarity
245
+
246
+ - [Specific issue] → [Suggested fix]
247
+ - [Complex sentence] → [Simpler alternative]
248
+
249
+ ### Flow
250
+
251
+ - [Transition issue] → [Better connection]
252
+ - [Paragraph order] → [Suggested reordering]
253
+
254
+ ### Evidence
255
+
256
+ - [Claim needing support] → [Add citation or example]
257
+ - [Generic statement] → [Make more specific]
258
+
259
+ ### Style
260
+
261
+ - [Tone inconsistency] → [Match your voice better]
262
+ - [Word choice] → [Stronger alternative]
263
+
264
+ ## Specific Line Edits
265
+
266
+ Original:
267
+
268
+ > [Exact quote from draft]
269
+
270
+ Suggested:
271
+
272
+ > [Improved version]
273
+
274
+ Why: [Explanation]
275
+
276
+ ## Questions to Consider
277
+
278
+ - [Thought-provoking question 1]
279
+ - [Thought-provoking question 2]
280
+
281
+ Ready to move to next section!
282
+ ```
283
+
284
+ 6. **Preserve Writer's Voice**
285
+
286
+ Important principles:
287
+ - **Learn their style**: Read existing writing samples
288
+ - **Suggest, don't replace**: Offer options, not directives
289
+ - **Match tone**: Formal, casual, technical, friendly
290
+ - **Respect choices**: If they prefer their version, support it
291
+ - **Enhance, don't override**: Make their writing better, not different
292
+
293
+ Ask periodically:
294
+ - "Does this sound like you?"
295
+ - "Is this the right tone?"
296
+ - "Should I be more/less [formal/casual/technical]?"
297
+
298
+ 7. **Citation Management**
299
+
300
+ Handle references based on user preference:
301
+
302
+ **Inline Citations**:
303
+
304
+ ```markdown
305
+ Studies show 40% productivity improvement (McKinsey, 2024).
306
+ ```
307
+
308
+ **Numbered References**:
309
+
310
+ ```markdown
311
+ Studies show 40% productivity improvement [1].
312
+
313
+ [1] McKinsey Global Institute. (2024)...
314
+ ```
315
+
316
+ **Footnote Style**:
317
+
318
+ ```markdown
319
+ Studies show 40% productivity improvement^1
320
+
321
+ ^1: McKinsey Global Institute. (2024)...
322
+ ```
323
+
324
+ Maintain a running citations list:
325
+
326
+ ```markdown
327
+ ## References
328
+
329
+ 1. Author. (Year). "Title". Publication.
330
+ 2. Author. (Year). "Title". Publication.
331
+ ...
332
+ ```
333
+
334
+ 8. **Final Review and Polish**
335
+
336
+ When draft is complete, provide comprehensive feedback:
337
+
338
+ ```markdown
339
+ # Full Draft Review
340
+
341
+ ## Overall Assessment
342
+
343
+ **Strengths**:
344
+
345
+ - [Major strength 1]
346
+ - [Major strength 2]
347
+ - [Major strength 3]
348
+
349
+ **Impact**: [Overall effectiveness assessment]
350
+
351
+ ## Structure & Flow
352
+
353
+ - [Comments on organization]
354
+ - [Transition quality]
355
+ - [Pacing assessment]
356
+
357
+ ## Content Quality
358
+
359
+ - [Argument strength]
360
+ - [Evidence sufficiency]
361
+ - [Example effectiveness]
362
+
363
+ ## Technical Quality
364
+
365
+ - Grammar and mechanics: [assessment]
366
+ - Consistency: [assessment]
367
+ - Citations: [completeness check]
368
+
369
+ ## Readability
370
+
371
+ - Clarity score: [evaluation]
372
+ - Sentence variety: [evaluation]
373
+ - Paragraph length: [evaluation]
374
+
375
+ ## Final Polish Suggestions
376
+
377
+ 1. **Introduction**: [Specific improvements]
378
+ 2. **Body**: [Specific improvements]
379
+ 3. **Conclusion**: [Specific improvements]
380
+ 4. **Title**: [Options if needed]
381
+
382
+ ## Pre-Publish Checklist
383
+
384
+ - [ ] All claims sourced
385
+ - [ ] Citations formatted
386
+ - [ ] Examples clear
387
+ - [ ] Transitions smooth
388
+ - [ ] Call to action present
389
+ - [ ] Proofread for typos
390
+
391
+ Ready to publish! 🚀
392
+ ```
393
+
394
+ ## Examples
395
+
396
+ ### Example 1: Teresa Torres's Workflow
397
+
398
+ **User**: "I'm writing an article about continuous discovery. Help me create an outline."
399
+
400
+ **Process**:
401
+
402
+ 1. Collaborates on outline structure
403
+ 2. Identifies research needs
404
+ 3. User starts writing introduction
405
+ 4. Reviews and improves the hook
406
+ 5. User writes each section
407
+ 6. Provides feedback after each section
408
+ 7. Conducts research and adds citations
409
+ 8. Final review of complete draft
410
+ 9. Polish and prep for publishing
411
+
412
+ **Result**: Well-researched, properly cited article written in Teresa's voice with strong structure and flow.
413
+
414
+ ### Example 2: Research-Heavy Article
415
+
416
+ **User**: "I'm writing about AI's impact on product management. Help me find current data and examples."
417
+
418
+ **Output**:
419
+
420
+ ```markdown
421
+ ## Research Compiled
422
+
423
+ ### Recent Data
424
+
425
+ - Gartner: 80% of PMs will use AI tools by 2025 [1]
426
+ - Survey: 45% report faster feature shipping [2]
427
+ - Case study: Airbnb's AI-assisted prioritization [3]
428
+
429
+ ### Expert Quotes
430
+
431
+ - "AI amplifies PM judgment, not replaces it" - Marty Cagan
432
+ - [Additional quotes with citations]
433
+
434
+ ### Real Examples
435
+
436
+ 1. **Company A**: Used AI for user research synthesis
437
+ - Result: 60% time savings
438
+ - Source: [citation]
439
+
440
+ 2. **Company B**: AI-powered roadmap analysis
441
+ - Result: Better stakeholder alignment
442
+ - Source: [citation]
443
+
444
+ All added to your outline with proper citations.
445
+ ```
446
+
447
+ ### Example 3: Hook Improvement
448
+
449
+ **User's Original Hook**:
450
+
451
+ > "Product management is changing because of AI. In this article, I'll discuss some ways AI affects product managers."
452
+
453
+ **Improved Options**:
454
+
455
+ **Option 1 (Data-driven)**:
456
+
457
+ > "Last month, I asked AI to analyze 500 customer interviews. It took 30 minutes instead of 3 weeks. Product management will never be the same."
458
+
459
+ **Option 2 (Question)**:
460
+
461
+ > "What if you could talk to every customer, read every review, and analyze every support ticket—all before your morning coffee?"
462
+
463
+ **Option 3 (Story)**:
464
+
465
+ > "Sarah spent two weeks building the wrong feature. Not because she didn't understand her users, but because she couldn't process the hundreds of interviews fast enough to spot the pattern."
466
+
467
+ ### Example 4: Section Feedback
468
+
469
+ **User**: "Just finished my 'Common Mistakes' section. Thoughts?"
470
+
471
+ **Response**:
472
+
473
+ ```markdown
474
+ # Feedback: Common Mistakes Section
475
+
476
+ ## What Works Well ✓
477
+
478
+ - Strong examples (the Slack notification story)
479
+ - Clear structure (3 mistakes, clean layout)
480
+ - Practical advice for each mistake
481
+
482
+ ## Suggestions
483
+
484
+ ### Make It More Specific
485
+
486
+ Your second point says "Bad prioritization" but could be stronger:
487
+
488
+ Current:
489
+
490
+ > "Many teams prioritize badly by focusing on features instead of outcomes."
491
+
492
+ Suggested:
493
+
494
+ > "I've watched teams ship 14 features in a quarter yet move none of their key metrics. They prioritized activity over progress."
495
+
496
+ ### Add Data
497
+
498
+ The third mistake would benefit from evidence:
499
+
500
+ > "[Add citation]: Studies show teams without regular user contact are 3x more likely to build unused features [needs source]"
501
+
502
+ ### Flow Improvement
503
+
504
+ Consider reordering: Mistake 3 → Mistake 2 → Mistake 1
505
+ This builds from small to big impact.
506
+
507
+ Ready for the next section!
508
+ ```
509
+
510
+ ## Writing Workflows
511
+
512
+ ### Blog Post Workflow
513
+
514
+ 1. Outline together
515
+ 2. Research key points
516
+ 3. Write introduction → get feedback
517
+ 4. Write body sections → feedback each
518
+ 5. Write conclusion → final review
519
+ 6. Polish and edit
520
+
521
+ ### Newsletter Workflow
522
+
523
+ 1. Discuss hook ideas
524
+ 2. Quick outline (shorter format)
525
+ 3. Draft in one session
526
+ 4. Review for clarity and links
527
+ 5. Quick polish
528
+
529
+ ### Technical Tutorial Workflow
530
+
531
+ 1. Outline steps
532
+ 2. Write code examples
533
+ 3. Add explanations
534
+ 4. Test instructions
535
+ 5. Add troubleshooting section
536
+ 6. Final review for accuracy
537
+
538
+ ### Thought Leadership Workflow
539
+
540
+ 1. Brainstorm unique angle
541
+ 2. Research existing perspectives
542
+ 3. Develop your thesis
543
+ 4. Write with strong POV
544
+ 5. Add supporting evidence
545
+ 6. Craft compelling conclusion
546
+
547
+ ## Pro Tips
548
+
549
+ 1. **Work in VS Code**: Better than web Claude for long-form writing
550
+ 2. **One section at a time**: Get feedback incrementally
551
+ 3. **Save research separately**: Keep a research.md file
552
+ 4. **Version your drafts**: article-v1.md, article-v2.md, etc.
553
+ 5. **Read aloud**: Use feedback to identify clunky sentences
554
+ 6. **Set deadlines**: "I want to finish the draft today"
555
+ 7. **Take breaks**: Write, get feedback, pause, revise
556
+
557
+ ## File Organization
558
+
559
+ Recommended structure for writing projects:
560
+
561
+ ```
562
+ ~/writing/article-name/
563
+ ├── outline.md # Your outline
564
+ ├── research.md # All research and citations
565
+ ├── draft-v1.md # First draft
566
+ ├── draft-v2.md # Revised draft
567
+ ├── final.md # Publication-ready
568
+ ├── feedback.md # Collected feedback
569
+ └── sources/ # Reference materials
570
+ ├── study1.pdf
571
+ └── article2.md
572
+ ```
573
+
574
+ ## Best Practices
575
+
576
+ ### For Research
577
+
578
+ - Verify sources before citing
579
+ - Use recent data when possible
580
+ - Balance different perspectives
581
+ - Link to original sources
582
+
583
+ ### For Feedback
584
+
585
+ - Be specific about what you want: "Is this too technical?"
586
+ - Share your concerns: "I'm worried this section drags"
587
+ - Ask questions: "Does this flow logically?"
588
+ - Request alternatives: "What's another way to explain this?"
589
+
590
+ ### For Voice
591
+
592
+ - Share examples of your writing
593
+ - Specify tone preferences
594
+ - Point out good matches: "That sounds like me!"
595
+ - Flag mismatches: "Too formal for my style"
596
+
597
+ ## Related Use Cases
598
+
599
+ - Creating social media posts from articles
600
+ - Adapting content for different audiences
601
+ - Writing email newsletters
602
+ - Drafting technical documentation
603
+ - Creating presentation content
604
+ - Writing case studies
605
+ - Developing course outlines