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,736 @@
1
+ ---
2
+ id: "newsletter"
3
+ title: "Newsletter Skill"
4
+ category: "marketing"
5
+ tags: ["newsletter skill", "the core job", "format templates", "how to apply this", "template / checklist", "the bottom line", "markets", "today's top stories", "quick hits"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/newsletter"
9
+ ---
10
+
11
+ ---
12
+ name: newsletter
13
+ description: 'Create best-in-class newsletters that people actually want to read. Use when someone needs to write a newsletter edition, develop a newsletter format, or improve their newsletter game. Covers multiple formats - roundup, deep-dive, personal essay, curated links, news briefing. References patterns from Lenny Rachitsky, Morning Brew, Greg Isenberg, Sahil Bloom, The Hustle, and top AI newsletters. Triggers on: write newsletter, newsletter format, help with my newsletter, newsletter edition about X, weekly roundup. Outputs publication-ready newsletter content or format templates.'
14
+ ---
15
+
16
+ # Newsletter Skill
17
+
18
+ Most newsletters are forgettable. Subscribers open them once, skim the first paragraph, delete.
19
+
20
+ The newsletters that build loyal audiences—and businesses—do something different. They have a format readers can rely on. A voice that's recognizable. Content worth opening.
21
+
22
+ This skill helps you create newsletters people actually look forward to.
23
+
24
+ ---
25
+
26
+ ## The core job
27
+
28
+ Transform your content, curation, or ideas into **publication-ready newsletters** that:
29
+
30
+ - Get opened (subject line + sender reputation)
31
+ - Get read (hook + scannability)
32
+ - Get remembered (voice + value)
33
+ - Get shared (insight worth passing on)
34
+
35
+ ---
36
+
37
+ ## First: What type of newsletter?
38
+
39
+ Different formats serve different purposes. Pick your archetype:
40
+
41
+ ### 1. Deep-Dive / Framework (Lenny Rachitsky style)
42
+
43
+ **Best for:** Expertise, thought leadership, premium positioning
44
+ **Frequency:** Weekly
45
+ **Length:** 1,500-3,000 words
46
+ **Revenue:** Premium subscriptions ($15-30/month)
47
+
48
+ One topic explored thoroughly. Original frameworks. Actionable templates.
49
+
50
+ ### 2. News Briefing (Morning Brew / Finimize style)
51
+
52
+ **Best for:** Daily habit formation, broad audience, ad revenue
53
+ **Frequency:** Daily or 3x/week
54
+ **Length:** 500-1,000 words
55
+ **Revenue:** Sponsorships, ads
56
+
57
+ Quick hits on what happened. Scannable. Gets you up to speed in 5 minutes.
58
+
59
+ ### 3. Curated Links + Commentary (Ben's Bites style)
60
+
61
+ **Best for:** Niche expertise, building in public, creator economy
62
+ **Frequency:** Daily or weekly
63
+ **Length:** 500-1,500 words
64
+ **Revenue:** Affiliate, sponsorships, community
65
+
66
+ Hand-picked links with your take on why each matters.
67
+
68
+ ### 4. Personal Essay / Reflection (Sahil Bloom style)
69
+
70
+ **Best for:** Personal brand, philosophy, coaching/courses
71
+ **Frequency:** Weekly
72
+ **Length:** 1,000-2,000 words
73
+ **Revenue:** Courses, coaching, premium tier
74
+
75
+ Themed reflections with frameworks for life/work improvement.
76
+
77
+ ### 5. Startup/Builder Updates (Greg Isenberg style)
78
+
79
+ **Best for:** Founder audience, community building, deal flow
80
+ **Frequency:** Weekly
81
+ **Length:** 800-1,500 words
82
+ **Revenue:** Community, advisory, investments
83
+
84
+ Ideas, observations, and frameworks from the building trenches.
85
+
86
+ ### 6. Irreverent News + Stories (The Hustle style)
87
+
88
+ **Best for:** Broad business audience, entertainment + education
89
+ **Frequency:** Daily
90
+ **Length:** 800-1,200 words
91
+ **Revenue:** Sponsorships, subscriptions
92
+
93
+ News told through narrative with personality and humor.
94
+
95
+ ---
96
+
97
+ ## Format Templates
98
+
99
+ ### Template 1: Deep-Dive Framework Newsletter
100
+
101
+ ```
102
+ SUBJECT LINE: [Specific question or problem] — [Hint at framework]
103
+
104
+ ---
105
+
106
+ [PERSONAL OPENER - 2-3 sentences]
107
+ Brief personal context or why this topic is on your mind.
108
+
109
+ [THE QUESTION - Bold]
110
+ **[State the exact question you're answering]**
111
+
112
+ [CONTEXT - 1-2 paragraphs]
113
+ Why this matters. What's at stake. Who this is for.
114
+
115
+ ---
116
+
117
+ ## [FRAMEWORK NAME]
118
+
119
+ [Framework intro - 2-3 sentences explaining what it is]
120
+
121
+ ### [Component 1]
122
+ [Explanation + example]
123
+
124
+ ### [Component 2]
125
+ [Explanation + example]
126
+
127
+ ### [Component 3]
128
+ [Explanation + example]
129
+
130
+ ---
131
+
132
+ ## How to Apply This
133
+
134
+ [Specific steps or implementation guidance]
135
+
136
+ 1. [Step 1 with detail]
137
+ 2. [Step 2 with detail]
138
+ 3. [Step 3 with detail]
139
+
140
+ ---
141
+
142
+ ## Template / Checklist
143
+
144
+ [Downloadable or copy-paste resource]
145
+
146
+ ---
147
+
148
+ ## The Bottom Line
149
+
150
+ [2-3 sentence summary of key insight]
151
+
152
+ [SIGN-OFF]
153
+ [Your name]
154
+
155
+ P.S. [Personal note, question for readers, or CTA]
156
+ ```
157
+
158
+ **Example from Lenny Rachitsky:**
159
+
160
+ > "How do you make good decisions in situations where you lack perfect information? This question came from three different readers this month, so let me share the frameworks I actually use..."
161
+
162
+ ---
163
+
164
+ ### Template 2: News Briefing Newsletter
165
+
166
+ ```
167
+ SUBJECT LINE: [Day/Date]: [Hook about biggest story]
168
+
169
+ ---
170
+
171
+ [LOGO/HEADER]
172
+
173
+ [ONE-LINE HOOK]
174
+ Today: [Teaser of what's inside]
175
+
176
+ ---
177
+
178
+ ## MARKETS
179
+ [Brief market data if relevant to your niche]
180
+ ↑ [Metric 1] | ↓ [Metric 2] | → [Metric 3]
181
+
182
+ ---
183
+
184
+ ## TODAY'S TOP STORIES
185
+
186
+ ### [STORY 1 HEADLINE - Intriguing, not straight news]
187
+
188
+ [2-3 sentence explanation of what happened]
189
+
190
+ **Why it matters:** [1-2 sentences on implications]
191
+
192
+ ---
193
+
194
+ ### [STORY 2 HEADLINE]
195
+
196
+ [2-3 sentence explanation]
197
+
198
+ **The bottom line:** [1 sentence takeaway]
199
+
200
+ ---
201
+
202
+ ### [STORY 3 HEADLINE]
203
+
204
+ [2-3 sentence explanation]
205
+
206
+ ---
207
+
208
+ ## QUICK HITS
209
+ • [One-liner news item 1]
210
+ • [One-liner news item 2]
211
+ • [One-liner news item 3]
212
+
213
+ ---
214
+
215
+ ## [SIGNATURE SECTION - Quiz, poll, or engagement hook]
216
+
217
+ [Question or interactive element]
218
+
219
+ ---
220
+
221
+ [FOOTER with social links, referral program]
222
+ ```
223
+
224
+ **Morning Brew voice markers:**
225
+
226
+ - Humor in unexpected places
227
+ - Pop culture references
228
+ - Relatable analogies ("It's like if Netflix and your credit card had a baby...")
229
+ - Bold the surprising part of each story
230
+
231
+ ---
232
+
233
+ ### Template 3: Curated Links + Commentary
234
+
235
+ ```
236
+ SUBJECT LINE: [Number] things worth your time: [Hook topic]
237
+
238
+ ---
239
+
240
+ Hey [First Name] 👋
241
+
242
+ [1-2 sentence personal opener - what you've been thinking about]
243
+
244
+ Here's what caught my attention this week:
245
+
246
+ ---
247
+
248
+ ## 🔥 The Big One
249
+
250
+ **[Link Title](URL)**
251
+
252
+ [2-3 sentences on why this matters and your take]
253
+
254
+ ---
255
+
256
+ ## 📚 Worth Reading
257
+
258
+ **[Link 1 Title](URL)**
259
+ [1-2 sentence commentary]
260
+
261
+ **[Link 2 Title](URL)**
262
+ [1-2 sentence commentary]
263
+
264
+ **[Link 3 Title](URL)**
265
+ [1-2 sentence commentary]
266
+
267
+ ---
268
+
269
+ ## 🛠️ Tools & Resources
270
+
271
+ **[Tool Name](URL)** — [What it does + your opinion]
272
+
273
+ **[Tool Name](URL)** — [What it does + your opinion]
274
+
275
+ ---
276
+
277
+ ## 💭 One Thing I'm Thinking About
278
+
279
+ [Personal reflection or question - 2-3 sentences]
280
+
281
+ ---
282
+
283
+ That's it for this week. Hit reply if anything resonated.
284
+
285
+ [Your name]
286
+ ```
287
+
288
+ **Ben's Bites voice markers:**
289
+
290
+ - Genuine enthusiasm (not performative)
291
+ - "I found this and thought you'd like it" energy
292
+ - Commentary adds value beyond the link
293
+ - Organized by type (reading, tools, news)
294
+
295
+ ---
296
+
297
+ ### Template 4: Personal Essay / Reflection
298
+
299
+ ```
300
+ SUBJECT LINE: [Philosophical hook or contrarian take]
301
+
302
+ ---
303
+
304
+ [OPENING HOOK - Story, observation, or provocative statement]
305
+ [2-4 sentences that create intrigue]
306
+
307
+ ---
308
+
309
+ ## [THE CORE IDEA]
310
+
311
+ [State your thesis clearly - 1-2 sentences]
312
+
313
+ [Expand on why you believe this - personal experience or observation]
314
+
315
+ ---
316
+
317
+ ## The Framework
318
+
319
+ [Present your mental model or framework]
320
+
321
+ **[Element 1]:** [Explanation]
322
+
323
+ **[Element 2]:** [Explanation]
324
+
325
+ **[Element 3]:** [Explanation]
326
+
327
+ ---
328
+
329
+ ## Questions to Ask Yourself
330
+
331
+ 1. [Reflection question]
332
+ 2. [Reflection question]
333
+ 3. [Reflection question]
334
+
335
+ ---
336
+
337
+ ## The Takeaway
338
+
339
+ [1-2 sentence distillation of core insight]
340
+
341
+ [PERSONAL SIGN-OFF]
342
+ [Your name]
343
+
344
+ P.S. [Often includes a template download or resource]
345
+ ```
346
+
347
+ **Sahil Bloom voice markers:**
348
+
349
+ - Opens with philosophical hook or life observation
350
+ - Frameworks have memorable names
351
+ - Includes reflection questions for reader
352
+ - Warm but substantive tone
353
+
354
+ ---
355
+
356
+ ### Template 5: Builder/Startup Update
357
+
358
+ ```
359
+ SUBJECT LINE: [Contrarian observation or "here's what I'm seeing"]
360
+
361
+ ---
362
+
363
+ Look...
364
+
365
+ [Personal observation or realization that hooks - 2-3 sentences]
366
+
367
+ ---
368
+
369
+ ## The Idea
370
+
371
+ [Present a concept, framework, or trend you're seeing]
372
+
373
+ Here's what's working:
374
+
375
+ **[Pattern 1]** — [Real example with company name]
376
+
377
+ **[Pattern 2]** — [Real example with company name]
378
+
379
+ **[Pattern 3]** — [Real example with company name]
380
+
381
+ ---
382
+
383
+ ## Why This Matters Now
384
+
385
+ [Context on why timing matters - market shifts, technology changes, etc.]
386
+
387
+ ---
388
+
389
+ ## How to Think About This
390
+
391
+ [Your framework or mental model for the opportunity]
392
+
393
+ ---
394
+
395
+ ## What I'm Doing About It
396
+
397
+ [Personal application - your projects, investments, experiments]
398
+
399
+ ---
400
+
401
+ If you're building in this space, I want to hear about it. Reply to this email.
402
+
403
+ [Your name]
404
+
405
+ ---
406
+
407
+ 📍 [Event or community plug]
408
+ 🎙️ [Podcast or content plug]
409
+ ```
410
+
411
+ **Greg Isenberg voice markers:**
412
+
413
+ - "Look..." opener
414
+ - Peer-to-peer energy, not guru
415
+ - Real company examples, named
416
+ - Building in public transparency
417
+ - Community-focused CTAs
418
+
419
+ ---
420
+
421
+ ### Template 6: Irreverent News + Story
422
+
423
+ ```
424
+ SUBJECT LINE: [Unexpected angle on news + emoji]
425
+
426
+ ---
427
+
428
+ [HOOK HEADLINE - Surprising juxtaposition or question]
429
+
430
+ [Opening anecdote that humanizes the story - 3-4 sentences]
431
+
432
+ ---
433
+
434
+ **What happened:** [Factual summary in 2-3 sentences]
435
+
436
+ **Why it's weird:** [The angle that makes this interesting]
437
+
438
+ **The bigger picture:** [Business implication]
439
+
440
+ ---
441
+
442
+ ## Also Worth Knowing
443
+
444
+ **[Story 2 Headline]**
445
+ [Brief summary with personality]
446
+
447
+ **[Story 3 Headline]**
448
+ [Brief summary with personality]
449
+
450
+ ---
451
+
452
+ ## The Number of the Day
453
+
454
+ **[Surprising statistic]**
455
+
456
+ [1-2 sentence context on why it matters]
457
+
458
+ ---
459
+
460
+ ## One More Thing
461
+
462
+ [Lighter item, meme-worthy moment, or unexpected angle]
463
+
464
+ ---
465
+
466
+ See you tomorrow,
467
+ [Editor nickname] 🦊
468
+ ```
469
+
470
+ **The Hustle voice markers:**
471
+
472
+ - Irreverent but not trying too hard
473
+ - Headlines that create curiosity
474
+ - "Why it's weird" — finds the surprising angle
475
+ - Editor nicknames/personalities
476
+ - Pop culture and meme fluency
477
+
478
+ ---
479
+
480
+ ## Voice & Tone Guide
481
+
482
+ ### The Newsletter Voice Spectrum
483
+
484
+ ```
485
+ FORMAL ←————————|————————→ CASUAL
486
+ Newsletter sweet spot
487
+
488
+ Professional but personable
489
+ Smart friend, not professor
490
+ Opinions with reasoning
491
+ Direct, not corporate
492
+ ```
493
+
494
+ ### Voice Principles
495
+
496
+ **1. Write like you talk (but tighter)**
497
+ Read it out loud. If you wouldn't say it, don't write it.
498
+
499
+ **2. Have opinions**
500
+ "I think X because Y" beats "Some experts say X while others say Y."
501
+
502
+ **3. Be specific**
503
+ Not "recently" → "Last Tuesday"
504
+ Not "a lot" → "47%"
505
+ Not "a company" → "Notion"
506
+
507
+ **4. Show your work**
508
+ Not "this is important" → "I spent 3 hours on this because..."
509
+
510
+ **5. Admit uncertainty**
511
+ "I'm not sure but..." builds more trust than fake confidence.
512
+
513
+ ### Words That Kill Newsletters
514
+
515
+ **Avoid:**
516
+
517
+ - "In today's edition..."
518
+ - "This week we'll explore..."
519
+ - "Without further ado..."
520
+ - "It goes without saying..."
521
+ - Corporate jargon (leverage, synergy, ecosystem)
522
+ - Excessive exclamation marks!!!
523
+
524
+ **Use instead:**
525
+
526
+ - Jump straight into content
527
+ - "Here's what I found..."
528
+ - "The short version:"
529
+ - Conversational transitions
530
+
531
+ ---
532
+
533
+ ## Subject Line Formulas
534
+
535
+ ### What Works
536
+
537
+ **1. Specific + Curiosity**
538
+
539
+ > "The $47K email mistake (and how to avoid it)"
540
+
541
+ **2. Question they're asking themselves**
542
+
543
+ > "Should you raise prices in a recession?"
544
+
545
+ **3. Contrarian take**
546
+
547
+ > "Why I stopped using [popular tool]"
548
+
549
+ **4. Number + Specificity**
550
+
551
+ > "7 newsletter formats that actually work"
552
+
553
+ **5. Direct value proposition**
554
+
555
+ > "The framework I use for every product decision"
556
+
557
+ ### What Doesn't Work
558
+
559
+ - Clickbait that doesn't deliver
560
+ - ALL CAPS
561
+ - [NEWSLETTER NAME] in subject
562
+ - Vague ("This week's update")
563
+ - Too clever (sacrifices clarity)
564
+
565
+ ---
566
+
567
+ ## Scannability Checklist
568
+
569
+ Before sending, verify:
570
+
571
+ ```
572
+ [ ] Headers break content every 200-300 words
573
+ [ ] Bold text marks key insights (not everything)
574
+ [ ] Short paragraphs (1-3 sentences max)
575
+ [ ] Bullet points for lists of 3+
576
+ [ ] White space between sections
577
+ [ ] Mobile-friendly (preview on phone)
578
+ [ ] One clear CTA (not five)
579
+ [ ] Above-fold content hooks reader
580
+ ```
581
+
582
+ ### The 30% Rule
583
+
584
+ Highlighted/bold text should be <30% of total text. More than that, nothing stands out.
585
+
586
+ ---
587
+
588
+ ## Hook Patterns
589
+
590
+ ### Pattern 1: The Direct Question
591
+
592
+ > "How do you make decisions when you don't have enough data?"
593
+
594
+ ### Pattern 2: The Contrarian Statement
595
+
596
+ > "Most SEO advice is wrong. Here's what actually works."
597
+
598
+ ### Pattern 3: The Personal Story
599
+
600
+ > "Last week I made a $40K mistake. Let me tell you about it."
601
+
602
+ ### Pattern 4: The Surprising Stat
603
+
604
+ > "73% of newsletters get deleted unread. Here's why yours won't."
605
+
606
+ ### Pattern 5: The Observation
607
+
608
+ > "I noticed something weird in my analytics..."
609
+
610
+ ### Pattern 6: The Promise
611
+
612
+ > "By the end of this email, you'll know exactly how to..."
613
+
614
+ ---
615
+
616
+ ## Curation vs. Original Content
617
+
618
+ ### When to Curate
619
+
620
+ - You're covering a fast-moving space (AI, news)
621
+ - Your value is taste/filtering (too much content exists)
622
+ - You're building daily habit (can't write 2000 words/day)
623
+
624
+ ### When to Create Original
625
+
626
+ - You have unique expertise or access
627
+ - You're building premium/paid tier
628
+ - You want stronger differentiation
629
+
630
+ ### The Hybrid (Best for Most)
631
+
632
+ ```
633
+ 70% Original insight/commentary
634
+ 30% Curated links with your take
635
+
636
+ OR
637
+
638
+ 1 Deep original piece
639
+ + 3-5 curated links with commentary
640
+ ```
641
+
642
+ **Never:** Link dump without commentary. That's RSS, not a newsletter.
643
+
644
+ ---
645
+
646
+ ## The Newsletter Creation Workflow
647
+
648
+ ### Step 1: Gather
649
+
650
+ - What happened this week in your space?
651
+ - What did you learn/create/notice?
652
+ - What questions are readers asking?
653
+ - What links are worth sharing?
654
+
655
+ ### Step 2: Select
656
+
657
+ - Pick 1 main topic (deep dive) OR 3-5 items (roundup)
658
+ - Ask: "Would I forward this to a friend?"
659
+ - Cut anything that's "fine but not great"
660
+
661
+ ### Step 3: Structure
662
+
663
+ - Choose your template
664
+ - Outline before writing
665
+ - Front-load the best stuff
666
+
667
+ ### Step 4: Write
668
+
669
+ - Hook first (spend 25% of time here)
670
+ - Get the draft down fast
671
+ - Add personality in editing
672
+
673
+ ### Step 5: Polish
674
+
675
+ - Read out loud
676
+ - Cut 20% (newsletters are always too long)
677
+ - Check scannability
678
+ - Mobile preview
679
+
680
+ ### Step 6: Send
681
+
682
+ - Best times: Tuesday-Thursday, 6-10am local
683
+ - Subject line A/B test if possible
684
+ - Personal preview to yourself first
685
+
686
+ ---
687
+
688
+ ## Best-in-Class Examples to Study
689
+
690
+ | Newsletter | Type | What to Learn |
691
+ | ------------------- | -------------------- | --------------------------------------------- |
692
+ | **Lenny Rachitsky** | Deep-Dive | Framework presentation, credibility anchoring |
693
+ | **Morning Brew** | News Briefing | Voice, scannability, referral program |
694
+ | **Ben's Bites** | Curated + Commentary | Curation that adds value |
695
+ | **Sahil Bloom** | Personal Essay | Reflection frameworks, templates |
696
+ | **Greg Isenberg** | Builder Updates | Peer energy, real examples |
697
+ | **The Hustle** | Irreverent News | Personality, unexpected angles |
698
+ | **Finimize** | Financial Briefing | "Key takeaways" format |
699
+ | **The Rundown AI** | AI News | Business implications framing |
700
+ | **boringmarketer** | Marketing | Contrarian takes, systems thinking |
701
+
702
+ ---
703
+
704
+ ## How This Connects to Other Skills
705
+
706
+ **Input from:**
707
+
708
+ - **brand-voice** → Ensures newsletter voice matches overall brand
709
+ - **keyword-research** → Identifies topics your audience searches for
710
+ - **positioning-angles** → Provides contrarian angles for content
711
+
712
+ **Uses:**
713
+
714
+ - **direct-response-copy** → For CTAs and conversion elements
715
+ - **seo-content** → When repurposing newsletter into blog posts
716
+
717
+ **The flow:**
718
+
719
+ 1. brand-voice defines how newsletter should sound
720
+ 2. keyword-research or audience questions suggest topics
721
+ 3. **newsletter creates the edition**
722
+ 4. Content repurposed for SEO or social
723
+
724
+ ---
725
+
726
+ ## The Test
727
+
728
+ Before hitting send, ask:
729
+
730
+ 1. **Would I open this?** (Subject line test)
731
+ 2. **Would I read past the first paragraph?** (Hook test)
732
+ 3. **Would I remember this tomorrow?** (Value test)
733
+ 4. **Would I forward this to a colleague?** (Share test)
734
+ 5. **Does this sound like me, not a committee?** (Voice test)
735
+
736
+ If any answer is no, revise before sending.