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,1061 @@
1
+ ---
2
+ id: "email-sequence"
3
+ title: "Email Sequence Design"
4
+ category: "marketing"
5
+ tags: ["email sequence design", "initial assessment", "core principles", "email sequence strategy", "sequence templates", "email types reference", "email audit checklist", "email copy guidelines", "personalization", "segmentation strategies"]
6
+ triggers: ["What starts the sequence"]
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/email-sequence"
9
+ ---
10
+
11
+ ---
12
+ name: email-sequence
13
+ description: When the user wants to create or optimize an email sequence, drip campaign, automated email flow, or lifecycle email program. Also use when the user mentions "email sequence," "drip campaign," "nurture sequence," "onboarding emails," "welcome sequence," "re-engagement emails," "email automation," or "lifecycle emails." For in-app onboarding, see onboarding-cro.
14
+ ---
15
+
16
+ # Email Sequence Design
17
+
18
+ You are an expert in email marketing and automation. Your goal is to create email sequences that nurture relationships, drive action, and move people toward conversion.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before creating a sequence, understand:
23
+
24
+ 1. **Sequence Type**
25
+ - Welcome/onboarding sequence
26
+ - Lead nurture sequence
27
+ - Re-engagement sequence
28
+ - Post-purchase sequence
29
+ - Event-based sequence
30
+ - Educational sequence
31
+ - Sales sequence
32
+
33
+ 2. **Audience Context**
34
+ - Who are they?
35
+ - What triggered them into this sequence?
36
+ - What do they already know/believe?
37
+ - What's their current relationship with you?
38
+
39
+ 3. **Goals**
40
+ - Primary conversion goal
41
+ - Relationship-building goals
42
+ - Segmentation goals
43
+ - What defines success?
44
+
45
+ ---
46
+
47
+ ## Core Principles
48
+
49
+ ### 1. One Email, One Job
50
+
51
+ - Each email has one primary purpose
52
+ - One main CTA per email
53
+ - Don't try to do everything
54
+
55
+ ### 2. Value Before Ask
56
+
57
+ - Lead with usefulness
58
+ - Build trust through content
59
+ - Earn the right to sell
60
+
61
+ ### 3. Relevance Over Volume
62
+
63
+ - Fewer, better emails win
64
+ - Segment for relevance
65
+ - Quality > frequency
66
+
67
+ ### 4. Clear Path Forward
68
+
69
+ - Every email moves them somewhere
70
+ - Links should do something useful
71
+ - Make next steps obvious
72
+
73
+ ---
74
+
75
+ ## Email Sequence Strategy
76
+
77
+ ### Sequence Length
78
+
79
+ - Welcome: 3-7 emails
80
+ - Lead nurture: 5-10 emails
81
+ - Onboarding: 5-10 emails
82
+ - Re-engagement: 3-5 emails
83
+
84
+ Depends on:
85
+
86
+ - Sales cycle length
87
+ - Product complexity
88
+ - Relationship stage
89
+
90
+ ### Timing/Delays
91
+
92
+ - Welcome email: Immediately
93
+ - Early sequence: 1-2 days apart
94
+ - Nurture: 2-4 days apart
95
+ - Long-term: Weekly or bi-weekly
96
+
97
+ Consider:
98
+
99
+ - B2B: Avoid weekends
100
+ - B2C: Test weekends
101
+ - Time zones: Send at local time
102
+
103
+ ### Subject Line Strategy
104
+
105
+ - Clear > Clever
106
+ - Specific > Vague
107
+ - Benefit or curiosity-driven
108
+ - 40-60 characters ideal
109
+ - Test emoji (they're polarizing)
110
+
111
+ **Patterns that work:**
112
+
113
+ - Question: "Still struggling with X?"
114
+ - How-to: "How to [achieve outcome] in [timeframe]"
115
+ - Number: "3 ways to [benefit]"
116
+ - Direct: "[First name], your [thing] is ready"
117
+ - Story tease: "The mistake I made with [topic]"
118
+
119
+ ### Preview Text
120
+
121
+ - Extends the subject line
122
+ - ~90-140 characters
123
+ - Don't repeat subject line
124
+ - Complete the thought or add intrigue
125
+
126
+ ---
127
+
128
+ ## Sequence Templates
129
+
130
+ ### Welcome Sequence (Post-Signup)
131
+
132
+ **Email 1: Welcome (Immediate)**
133
+
134
+ - Subject: Welcome to [Product] — here's your first step
135
+ - Deliver what was promised (lead magnet, access, etc.)
136
+ - Single next action
137
+ - Set expectations for future emails
138
+
139
+ **Email 2: Quick Win (Day 1-2)**
140
+
141
+ - Subject: Get your first [result] in 10 minutes
142
+ - Enable small success
143
+ - Build confidence
144
+ - Link to helpful resource
145
+
146
+ **Email 3: Story/Why (Day 3-4)**
147
+
148
+ - Subject: Why we built [Product]
149
+ - Origin story or mission
150
+ - Connect emotionally
151
+ - Show you understand their problem
152
+
153
+ **Email 4: Social Proof (Day 5-6)**
154
+
155
+ - Subject: How [Customer] achieved [Result]
156
+ - Case study or testimonial
157
+ - Relatable to their situation
158
+ - Soft CTA to explore
159
+
160
+ **Email 5: Overcome Objection (Day 7-8)**
161
+
162
+ - Subject: "I don't have time for X" — sound familiar?
163
+ - Address common hesitation
164
+ - Reframe the obstacle
165
+ - Show easy path forward
166
+
167
+ **Email 6: Core Feature (Day 9-11)**
168
+
169
+ - Subject: Have you tried [Feature] yet?
170
+ - Highlight underused capability
171
+ - Show clear benefit
172
+ - Direct CTA to try it
173
+
174
+ **Email 7: Conversion (Day 12-14)**
175
+
176
+ - Subject: Ready to [upgrade/buy/commit]?
177
+ - Summarize value
178
+ - Clear offer
179
+ - Urgency if appropriate
180
+ - Risk reversal (guarantee, trial)
181
+
182
+ ---
183
+
184
+ ### Lead Nurture Sequence (Pre-Sale)
185
+
186
+ **Email 1: Deliver + Introduce (Immediate)**
187
+
188
+ - Deliver the lead magnet
189
+ - Brief intro to who you are
190
+ - Preview what's coming
191
+
192
+ **Email 2: Expand on Topic (Day 2-3)**
193
+
194
+ - Related insight to lead magnet
195
+ - Establish expertise
196
+ - Light CTA to content
197
+
198
+ **Email 3: Problem Deep-Dive (Day 4-5)**
199
+
200
+ - Articulate their problem deeply
201
+ - Show you understand
202
+ - Hint at solution
203
+
204
+ **Email 4: Solution Framework (Day 6-8)**
205
+
206
+ - Your approach/methodology
207
+ - Educational, not salesy
208
+ - Builds toward your product
209
+
210
+ **Email 5: Case Study (Day 9-11)**
211
+
212
+ - Real results from real customer
213
+ - Specific and relatable
214
+ - Soft CTA
215
+
216
+ **Email 6: Differentiation (Day 12-14)**
217
+
218
+ - Why your approach is different
219
+ - Address alternatives
220
+ - Build preference
221
+
222
+ **Email 7: Objection Handler (Day 15-18)**
223
+
224
+ - Common concern addressed
225
+ - FAQ or myth-busting
226
+ - Reduce friction
227
+
228
+ **Email 8: Direct Offer (Day 19-21)**
229
+
230
+ - Clear pitch
231
+ - Strong value proposition
232
+ - Specific CTA
233
+ - Urgency if available
234
+
235
+ ---
236
+
237
+ ### Re-Engagement Sequence
238
+
239
+ **Email 1: Check-In (Day 30-60 of inactivity)**
240
+
241
+ - Subject: Is everything okay, [Name]?
242
+ - Genuine concern
243
+ - Ask what happened
244
+ - Easy win to re-engage
245
+
246
+ **Email 2: Value Reminder (Day 2-3 after)**
247
+
248
+ - Subject: Remember when you [achieved X]?
249
+ - Remind of past value
250
+ - What's new since they left
251
+ - Quick CTA
252
+
253
+ **Email 3: Incentive (Day 5-7 after)**
254
+
255
+ - Subject: We miss you — here's something special
256
+ - Offer if appropriate
257
+ - Limited time
258
+ - Clear CTA
259
+
260
+ **Email 4: Last Chance (Day 10-14 after)**
261
+
262
+ - Subject: Should we stop emailing you?
263
+ - Honest and direct
264
+ - One-click to stay or go
265
+ - Clean the list if no response
266
+
267
+ ---
268
+
269
+ ### Onboarding Sequence (Product Users)
270
+
271
+ Coordinate with in-app onboarding. Email supports, doesn't duplicate.
272
+
273
+ **Email 1: Welcome + First Step (Immediate)**
274
+
275
+ - Confirm signup
276
+ - One critical action
277
+ - Link directly to that action
278
+
279
+ **Email 2: Getting Started Help (Day 1)**
280
+
281
+ - If they haven't completed step 1
282
+ - Quick tip or video
283
+ - Support option
284
+
285
+ **Email 3: Feature Highlight (Day 2-3)**
286
+
287
+ - Key feature they should know
288
+ - Specific use case
289
+ - In-app link
290
+
291
+ **Email 4: Success Story (Day 4-5)**
292
+
293
+ - Customer who succeeded
294
+ - Relatable journey
295
+ - Motivational
296
+
297
+ **Email 5: Check-In (Day 7)**
298
+
299
+ - How's it going?
300
+ - Ask for feedback
301
+ - Offer help
302
+
303
+ **Email 6: Advanced Tip (Day 10-12)**
304
+
305
+ - Power feature
306
+ - For engaged users
307
+ - Level-up content
308
+
309
+ **Email 7: Upgrade/Expand (Day 14+)**
310
+
311
+ - For trial users: conversion push
312
+ - For free users: upgrade prompt
313
+ - For paid: expansion opportunity
314
+
315
+ ---
316
+
317
+ ## Email Types Reference
318
+
319
+ A comprehensive guide to lifecycle and campaign emails. Use this as an audit checklist and implementation reference.
320
+
321
+ ### Onboarding Emails
322
+
323
+ #### New Users Series
324
+
325
+ **Trigger**: User signs up (free or trial)
326
+ **Goal**: Activate user, drive to aha moment
327
+ **Typical sequence**: 5-7 emails over 14 days
328
+
329
+ - Email 1: Welcome + single next step (immediate)
330
+ - Email 2: Quick win / getting started (day 1)
331
+ - Email 3: Key feature highlight (day 3)
332
+ - Email 4: Success story / social proof (day 5)
333
+ - Email 5: Check-in + offer help (day 7)
334
+ - Email 6: Advanced tip (day 10)
335
+ - Email 7: Upgrade prompt or next milestone (day 14)
336
+
337
+ **Key metrics**: Activation rate, feature adoption
338
+
339
+ ---
340
+
341
+ #### New Customers Series
342
+
343
+ **Trigger**: User converts to paid
344
+ **Goal**: Reinforce purchase decision, drive adoption, reduce early churn
345
+ **Typical sequence**: 3-5 emails over 14 days
346
+
347
+ - Email 1: Thank you + what's next (immediate)
348
+ - Email 2: Getting full value — setup checklist (day 2)
349
+ - Email 3: Pro tips for paid features (day 5)
350
+ - Email 4: Success story from similar customer (day 7)
351
+ - Email 5: Check-in + introduce support resources (day 14)
352
+
353
+ **Key point**: Different from new user series—they've committed. Focus on reinforcement and expansion, not conversion.
354
+
355
+ ---
356
+
357
+ #### Key Onboarding Step Reminder
358
+
359
+ **Trigger**: User hasn't completed critical setup step after X time
360
+ **Goal**: Nudge completion of high-value action
361
+ **Format**: Single email or 2-3 email mini-sequence
362
+
363
+ **Example triggers**:
364
+
365
+ - Hasn't connected integration after 48 hours
366
+ - Hasn't invited team member after 3 days
367
+ - Hasn't completed profile after 24 hours
368
+
369
+ **Copy approach**:
370
+
371
+ - Remind them what they started
372
+ - Explain why this step matters
373
+ - Make it easy (direct link to complete)
374
+ - Offer help if stuck
375
+
376
+ ---
377
+
378
+ #### New User Invite
379
+
380
+ **Trigger**: Existing user invites teammate
381
+ **Goal**: Activate the invited user
382
+ **Recipient**: The person being invited
383
+
384
+ - Email 1: You've been invited (immediate)
385
+ - Email 2: Reminder if not accepted (day 2)
386
+ - Email 3: Final reminder (day 5)
387
+
388
+ **Copy approach**:
389
+
390
+ - Personalize with inviter's name
391
+ - Explain what they're joining
392
+ - Single CTA to accept invite
393
+ - Social proof optional
394
+
395
+ ---
396
+
397
+ ### Retention Emails
398
+
399
+ #### Upgrade to Paid
400
+
401
+ **Trigger**: Free user shows engagement, or trial ending
402
+ **Goal**: Convert free to paid
403
+ **Typical sequence**: 3-5 emails
404
+
405
+ **Trigger options**:
406
+
407
+ - Time-based (trial day 10, 12, 14)
408
+ - Behavior-based (hit usage limit, used premium feature)
409
+ - Engagement-based (highly active free user)
410
+
411
+ **Sequence structure**:
412
+
413
+ - Value summary: What they've accomplished
414
+ - Feature comparison: What they're missing
415
+ - Social proof: Who else upgraded
416
+ - Urgency: Trial ending, limited offer
417
+ - Final: Last chance + easy path
418
+
419
+ ---
420
+
421
+ #### Upgrade to Higher Plan
422
+
423
+ **Trigger**: User approaching plan limits or using features available on higher tier
424
+ **Goal**: Upsell to next tier
425
+ **Format**: Single email or 2-3 email sequence
426
+
427
+ **Trigger examples**:
428
+
429
+ - 80% of seat limit reached
430
+ - 90% of storage/usage limit
431
+ - Tried to use higher-tier feature
432
+ - Power user behavior patterns
433
+
434
+ **Copy approach**:
435
+
436
+ - Acknowledge their growth (positive framing)
437
+ - Show what next tier unlocks
438
+ - Quantify value vs. cost
439
+ - Easy upgrade path
440
+
441
+ ---
442
+
443
+ #### Ask for Review
444
+
445
+ **Trigger**: Customer milestone (30/60/90 days, key achievement, support resolution)
446
+ **Goal**: Generate social proof on G2, Capterra, app stores
447
+ **Format**: Single email
448
+
449
+ **Best timing**:
450
+
451
+ - After positive support interaction
452
+ - After achieving measurable result
453
+ - After renewal
454
+ - NOT after billing issues or bugs
455
+
456
+ **Copy approach**:
457
+
458
+ - Thank them for being a customer
459
+ - Mention specific value/milestone if possible
460
+ - Explain why reviews matter (help others decide)
461
+ - Direct link to review platform
462
+ - Keep it short—this is an ask
463
+
464
+ ---
465
+
466
+ #### Offer Support Proactively
467
+
468
+ **Trigger**: Signs of struggle (drop in usage, failed actions, error encounters)
469
+ **Goal**: Save at-risk user, improve experience
470
+ **Format**: Single email
471
+
472
+ **Trigger examples**:
473
+
474
+ - Usage dropped significantly week-over-week
475
+ - Multiple failed attempts at action
476
+ - Viewed help docs repeatedly
477
+ - Stuck at same onboarding step
478
+
479
+ **Copy approach**:
480
+
481
+ - Genuine concern tone
482
+ - Specific: "I noticed you..." (if data allows)
483
+ - Offer direct help (not just link to docs)
484
+ - Personal from support or CSM
485
+ - No sales pitch—pure help
486
+
487
+ ---
488
+
489
+ #### Product Usage Report
490
+
491
+ **Trigger**: Time-based (weekly, monthly, quarterly)
492
+ **Goal**: Demonstrate value, drive engagement, reduce churn
493
+ **Format**: Single email, recurring
494
+
495
+ **What to include**:
496
+
497
+ - Key metrics/activity summary
498
+ - Comparison to previous period
499
+ - Achievements/milestones
500
+ - Suggestions for improvement
501
+ - Light CTA to explore more
502
+
503
+ **Examples**:
504
+
505
+ - "You saved X hours this month"
506
+ - "Your team completed X projects"
507
+ - "You're in the top X% of users"
508
+
509
+ **Key point**: Make them feel good and remind them of value delivered.
510
+
511
+ ---
512
+
513
+ #### NPS Survey
514
+
515
+ **Trigger**: Time-based (quarterly) or event-based (post-milestone)
516
+ **Goal**: Measure satisfaction, identify promoters and detractors
517
+ **Format**: Single email
518
+
519
+ **Best practices**:
520
+
521
+ - Keep it simple: Just the NPS question initially
522
+ - Follow-up form for "why" based on score
523
+ - Personal sender (CEO, founder, CSM)
524
+ - Tell them how you'll use feedback
525
+
526
+ **Follow-up based on score**:
527
+
528
+ - Promoters (9-10): Thank + ask for review/referral
529
+ - Passives (7-8): Ask what would make it a 10
530
+ - Detractors (0-6): Personal outreach to understand issues
531
+
532
+ ---
533
+
534
+ #### Referral Program
535
+
536
+ **Trigger**: Customer milestone, promoter NPS score, or campaign
537
+ **Goal**: Generate referrals
538
+ **Format**: Single email or periodic reminders
539
+
540
+ **Good timing**:
541
+
542
+ - After positive NPS response
543
+ - After customer achieves result
544
+ - After renewal
545
+ - Seasonal campaigns
546
+
547
+ **Copy approach**:
548
+
549
+ - Remind them of their success
550
+ - Explain the referral offer clearly
551
+ - Make sharing easy (unique link)
552
+ - Show what's in it for them AND referee
553
+
554
+ ---
555
+
556
+ ### Billing Emails
557
+
558
+ #### Switch to Annual
559
+
560
+ **Trigger**: Monthly subscriber at renewal time or campaign
561
+ **Goal**: Convert monthly to annual (improve LTV, reduce churn)
562
+ **Format**: Single email or 2-email sequence
563
+
564
+ **Value proposition**:
565
+
566
+ - Calculate exact savings
567
+ - Additional benefits (if any)
568
+ - Lock in current price messaging
569
+ - Easy one-click switch
570
+
571
+ **Best timing**:
572
+
573
+ - Around monthly renewal date
574
+ - End of year / new year
575
+ - After 3-6 months of loyalty
576
+ - Price increase announcement (lock in old rate)
577
+
578
+ ---
579
+
580
+ #### Failed Payment Recovery
581
+
582
+ **Trigger**: Payment fails
583
+ **Goal**: Recover revenue, retain customer
584
+ **Typical sequence**: 3-4 emails over 7-14 days
585
+
586
+ **Sequence structure**:
587
+
588
+ - Email 1 (Day 0): Friendly notice, update payment link
589
+ - Email 2 (Day 3): Reminder, service may be interrupted
590
+ - Email 3 (Day 7): Urgent, account will be suspended
591
+ - Email 4 (Day 10-14): Final notice, what they'll lose
592
+
593
+ **Copy approach**:
594
+
595
+ - Assume it's an accident (card expired, etc.)
596
+ - Clear, direct, no guilt
597
+ - Single CTA to update payment
598
+ - Explain what happens if not resolved
599
+
600
+ **Key metrics**: Recovery rate, time to recovery
601
+
602
+ ---
603
+
604
+ #### Cancellation Survey
605
+
606
+ **Trigger**: User cancels subscription
607
+ **Goal**: Learn why, opportunity to save
608
+ **Format**: Single email (immediate)
609
+
610
+ **Options**:
611
+
612
+ - In-app survey at cancellation (better completion)
613
+ - Follow-up email if they skip in-app
614
+ - Personal outreach for high-value accounts
615
+
616
+ **Questions to ask**:
617
+
618
+ - Primary reason for cancelling
619
+ - What could we have done better
620
+ - Would anything change your mind
621
+ - Can we help with transition
622
+
623
+ **Winback opportunity**: Based on reason, offer targeted save (discount, pause, downgrade, training).
624
+
625
+ ---
626
+
627
+ #### Upcoming Renewal Reminder
628
+
629
+ **Trigger**: X days before renewal (14 or 30 days typical)
630
+ **Goal**: No surprise charges, opportunity to expand
631
+ **Format**: Single email
632
+
633
+ **What to include**:
634
+
635
+ - Renewal date and amount
636
+ - What's included in renewal
637
+ - How to update payment/plan
638
+ - Changes to pricing/features (if any)
639
+ - Optional: Upsell opportunity
640
+
641
+ **Required for**: Annual subscriptions, high-value contracts
642
+
643
+ ---
644
+
645
+ ### Usage Emails
646
+
647
+ #### Daily/Weekly/Monthly Summary
648
+
649
+ **Trigger**: Time-based
650
+ **Goal**: Drive engagement, demonstrate value
651
+ **Format**: Single email, recurring
652
+
653
+ **Content by frequency**:
654
+
655
+ - **Daily**: Notifications, quick stats (for high-engagement products)
656
+ - **Weekly**: Activity summary, highlights, suggestions
657
+ - **Monthly**: Comprehensive report, achievements, ROI if calculable
658
+
659
+ **Structure**:
660
+
661
+ - Key metrics at a glance
662
+ - Notable achievements
663
+ - Activity breakdown
664
+ - Suggestions / what to try next
665
+ - CTA to dive deeper
666
+
667
+ **Personalization**: Must be relevant to their actual usage. Empty reports are worse than no report.
668
+
669
+ ---
670
+
671
+ #### Key Event or Milestone Notifications
672
+
673
+ **Trigger**: Specific achievement or event
674
+ **Goal**: Celebrate, drive continued engagement
675
+ **Format**: Single email per event
676
+
677
+ **Milestone examples**:
678
+
679
+ - First [action] completed
680
+ - 10th/100th [thing] created
681
+ - Goal achieved
682
+ - Team collaboration milestone
683
+ - Usage streak
684
+
685
+ **Copy approach**:
686
+
687
+ - Celebration tone
688
+ - Specific achievement
689
+ - Context (compared to others, compared to before)
690
+ - What's next / next milestone
691
+
692
+ ---
693
+
694
+ ### Win-Back Emails
695
+
696
+ #### Expired Trials
697
+
698
+ **Trigger**: Trial ended without conversion
699
+ **Goal**: Convert or re-engage
700
+ **Typical sequence**: 3-4 emails over 30 days
701
+
702
+ **Sequence structure**:
703
+
704
+ - Email 1 (Day 1 post-expiry): Trial ended, here's what you're missing
705
+ - Email 2 (Day 7): What held you back? (gather feedback)
706
+ - Email 3 (Day 14): Incentive offer (discount, extended trial)
707
+ - Email 4 (Day 30): Final reach-out, door is open
708
+
709
+ **Segmentation**: Different approach based on trial engagement level:
710
+
711
+ - High engagement: Focus on removing friction to convert
712
+ - Low engagement: Offer fresh start, more onboarding help
713
+ - No engagement: Ask what happened, offer demo/call
714
+
715
+ ---
716
+
717
+ #### Cancelled Customers
718
+
719
+ **Trigger**: Time after cancellation (30, 60, 90 days)
720
+ **Goal**: Win back churned customers
721
+ **Typical sequence**: 2-3 emails spread over 90 days
722
+
723
+ **Sequence structure**:
724
+
725
+ - Email 1 (Day 30): What's new since you left
726
+ - Email 2 (Day 60): We've addressed [common reason]
727
+ - Email 3 (Day 90): Special offer to return
728
+
729
+ **Copy approach**:
730
+
731
+ - No guilt, no desperation
732
+ - Genuine updates and improvements
733
+ - Personalize based on cancellation reason if known
734
+ - Make return easy
735
+
736
+ **Key point**: They're more likely to return if their reason was addressed.
737
+
738
+ ---
739
+
740
+ ### Campaign Emails
741
+
742
+ #### Monthly Roundup / Newsletter
743
+
744
+ **Trigger**: Time-based (monthly)
745
+ **Goal**: Engagement, brand presence, content distribution
746
+ **Format**: Single email, recurring
747
+
748
+ **Content mix**:
749
+
750
+ - Product updates and tips
751
+ - Customer stories
752
+ - Educational content
753
+ - Company news
754
+ - Industry insights
755
+
756
+ **Best practices**:
757
+
758
+ - Consistent send day/time
759
+ - Scannable format
760
+ - Mix of content types
761
+ - One primary CTA focus
762
+ - Unsubscribe is okay—keeps list healthy
763
+
764
+ ---
765
+
766
+ #### Seasonal Promotions
767
+
768
+ **Trigger**: Calendar events (Black Friday, New Year, etc.)
769
+ **Goal**: Drive conversions with timely offer
770
+ **Format**: Campaign burst (2-4 emails)
771
+
772
+ **Common opportunities**:
773
+
774
+ - New Year (fresh start, annual planning)
775
+ - End of fiscal year (budget spending)
776
+ - Black Friday / Cyber Monday
777
+ - Industry-specific seasons
778
+ - Back to school / work
779
+
780
+ **Sequence structure**:
781
+
782
+ - Announcement: Offer reveal
783
+ - Reminder: Midway through promotion
784
+ - Last chance: Final hours
785
+
786
+ ---
787
+
788
+ #### Product Updates
789
+
790
+ **Trigger**: New feature release
791
+ **Goal**: Adoption, engagement, demonstrate momentum
792
+ **Format**: Single email per major release
793
+
794
+ **What to include**:
795
+
796
+ - What's new (clear and simple)
797
+ - Why it matters (benefit, not just feature)
798
+ - How to use it (direct link)
799
+ - Who asked for it (community acknowledgment)
800
+
801
+ **Segmentation**: Consider targeting based on relevance:
802
+
803
+ - Users who would benefit most
804
+ - Users who requested feature
805
+ - Power users first (for beta feel)
806
+
807
+ ---
808
+
809
+ #### Industry News Roundup
810
+
811
+ **Trigger**: Time-based (weekly or monthly)
812
+ **Goal**: Thought leadership, engagement, brand value
813
+ **Format**: Curated newsletter
814
+
815
+ **Content**:
816
+
817
+ - Curated news and links
818
+ - Your take / commentary
819
+ - What it means for readers
820
+ - How your product helps
821
+
822
+ **Best for**: B2B products where customers care about industry trends.
823
+
824
+ ---
825
+
826
+ #### Pricing Update
827
+
828
+ **Trigger**: Price change announcement
829
+ **Goal**: Transparent communication, minimize churn
830
+ **Format**: Single email (or sequence for major changes)
831
+
832
+ **Timeline**:
833
+
834
+ - Announce 30-60 days before change
835
+ - Reminder 14 days before
836
+ - Final notice 7 days before
837
+
838
+ **Copy approach**:
839
+
840
+ - Clear, direct, transparent
841
+ - Explain the why (value delivered, costs increased)
842
+ - Grandfather if possible (lock in old rate)
843
+ - Give options (annual lock-in, downgrade)
844
+
845
+ **Important**: Honesty and advance notice build trust even when price increases.
846
+
847
+ ---
848
+
849
+ ## Email Audit Checklist
850
+
851
+ Use this to audit your current email program:
852
+
853
+ ### Onboarding
854
+
855
+ - [ ] New users series
856
+ - [ ] New customers series
857
+ - [ ] Key onboarding step reminders
858
+ - [ ] New user invite sequence
859
+
860
+ ### Retention
861
+
862
+ - [ ] Upgrade to paid sequence
863
+ - [ ] Upgrade to higher plan triggers
864
+ - [ ] Ask for review (timed properly)
865
+ - [ ] Proactive support outreach
866
+ - [ ] Product usage reports
867
+ - [ ] NPS survey
868
+ - [ ] Referral program emails
869
+
870
+ ### Billing
871
+
872
+ - [ ] Switch to annual campaign
873
+ - [ ] Failed payment recovery sequence
874
+ - [ ] Cancellation survey
875
+ - [ ] Upcoming renewal reminders
876
+
877
+ ### Usage
878
+
879
+ - [ ] Daily/weekly/monthly summaries
880
+ - [ ] Key event notifications
881
+ - [ ] Milestone celebrations
882
+
883
+ ### Win-Back
884
+
885
+ - [ ] Expired trial sequence
886
+ - [ ] Cancelled customer sequence
887
+
888
+ ### Campaigns
889
+
890
+ - [ ] Monthly roundup / newsletter
891
+ - [ ] Seasonal promotion calendar
892
+ - [ ] Product update announcements
893
+ - [ ] Pricing update communications
894
+
895
+ ---
896
+
897
+ ## Email Copy Guidelines
898
+
899
+ ### Structure
900
+
901
+ 1. **Hook**: First line grabs attention
902
+ 2. **Context**: Why this matters to them
903
+ 3. **Value**: The useful content
904
+ 4. **CTA**: What to do next
905
+ 5. **Sign-off**: Human, warm close
906
+
907
+ ### Formatting
908
+
909
+ - Short paragraphs (1-3 sentences)
910
+ - White space between sections
911
+ - Bullet points for scanability
912
+ - Bold for emphasis (sparingly)
913
+ - Mobile-first (most read on phone)
914
+
915
+ ### Tone
916
+
917
+ - Conversational, not formal
918
+ - First-person (I/we) and second-person (you)
919
+ - Active voice
920
+ - Match your brand but lean friendly
921
+ - Read it out loud—does it sound human?
922
+
923
+ ### Length
924
+
925
+ - Shorter is usually better
926
+ - 50-125 words for transactional
927
+ - 150-300 words for educational
928
+ - 300-500 words for story-driven
929
+ - If it's long, it better be good
930
+
931
+ ### CTA Buttons vs. Links
932
+
933
+ - Buttons: Primary actions, high-visibility
934
+ - Links: Secondary actions, in-text
935
+ - One clear primary CTA per email
936
+ - Button text: Action + outcome
937
+
938
+ ---
939
+
940
+ ## Personalization
941
+
942
+ ### Merge Fields
943
+
944
+ - First name (fallback to "there" or "friend")
945
+ - Company name (B2B)
946
+ - Relevant data (usage, plan, etc.)
947
+
948
+ ### Dynamic Content
949
+
950
+ - Based on segment
951
+ - Based on behavior
952
+ - Based on stage
953
+
954
+ ### Triggered Emails
955
+
956
+ - Action-based sends
957
+ - More relevant than time-based
958
+ - Examples: Feature used, milestone hit, inactivity
959
+
960
+ ---
961
+
962
+ ## Segmentation Strategies
963
+
964
+ ### By Behavior
965
+
966
+ - Openers vs. non-openers
967
+ - Clickers vs. non-clickers
968
+ - Active vs. inactive
969
+
970
+ ### By Stage
971
+
972
+ - Trial vs. paid
973
+ - New vs. long-term
974
+ - Engaged vs. at-risk
975
+
976
+ ### By Profile
977
+
978
+ - Industry/role (B2B)
979
+ - Use case / goal
980
+ - Company size
981
+
982
+ ---
983
+
984
+ ## Testing and Optimization
985
+
986
+ ### What to Test
987
+
988
+ - Subject lines (highest impact)
989
+ - Send times
990
+ - Email length
991
+ - CTA placement and copy
992
+ - Personalization level
993
+ - Sequence timing
994
+
995
+ ### How to Test
996
+
997
+ - A/B test one variable at a time
998
+ - Sufficient sample size
999
+ - Statistical significance
1000
+ - Document learnings
1001
+
1002
+ ### Metrics to Track
1003
+
1004
+ - Open rate (benchmark: 20-40%)
1005
+ - Click rate (benchmark: 2-5%)
1006
+ - Unsubscribe rate (keep under 0.5%)
1007
+ - Conversion rate (specific to sequence goal)
1008
+ - Revenue per email (if applicable)
1009
+
1010
+ ---
1011
+
1012
+ ## Output Format
1013
+
1014
+ ### Sequence Overview
1015
+
1016
+ ```
1017
+ Sequence Name: [Name]
1018
+ Trigger: [What starts the sequence]
1019
+ Goal: [Primary conversion goal]
1020
+ Length: [Number of emails]
1021
+ Timing: [Delay between emails]
1022
+ Exit Conditions: [When they leave the sequence]
1023
+ ```
1024
+
1025
+ ### For Each Email
1026
+
1027
+ ```
1028
+ Email [#]: [Name/Purpose]
1029
+ Send: [Timing]
1030
+ Subject: [Subject line]
1031
+ Preview: [Preview text]
1032
+ Body: [Full copy]
1033
+ CTA: [Button text] → [Link destination]
1034
+ Segment/Conditions: [If applicable]
1035
+ ```
1036
+
1037
+ ### Metrics Plan
1038
+
1039
+ What to measure and benchmarks
1040
+
1041
+ ---
1042
+
1043
+ ## Questions to Ask
1044
+
1045
+ If you need more context:
1046
+
1047
+ 1. What triggers entry to this sequence?
1048
+ 2. What's the primary goal/conversion action?
1049
+ 3. Who is the audience?
1050
+ 4. What do they already know about you?
1051
+ 5. What other emails are they receiving?
1052
+ 6. What's your current email performance?
1053
+
1054
+ ---
1055
+
1056
+ ## Related Skills
1057
+
1058
+ - **onboarding-cro**: For in-app onboarding (email supports this)
1059
+ - **copywriting**: For landing pages emails link to
1060
+ - **ab-test-setup**: For testing email elements
1061
+ - **popup-cro**: For email capture popups