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,910 @@
1
+ ---
2
+ id: "email-sequences"
3
+ title: "Email Sequences"
4
+ category: "marketing"
5
+ tags: ["email sequences", "the core job", "sequence types", "subject line formulas", "email copy principles", "timing guidelines", "output format", "sequence goal", "timing", "emails"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/email-sequences"
9
+ ---
10
+
11
+ ---
12
+ name: email-sequences
13
+ description: 'Build email sequences that convert subscribers into customers. Use when you have a lead magnet and need a welcome sequence, nurture sequence, or sales sequence. Covers welcome, nurture, conversion, launch, and re-engagement sequences. Triggers on: write welcome emails, email sequence for, nurture sequence, convert my list, onboarding emails, launch sequence, drip campaign, email funnel. Outputs complete email sequences with subject lines, timing, and full copy.'
14
+ ---
15
+
16
+ # Email Sequences
17
+
18
+ Most lead magnets die in the inbox. Someone downloads your thing, gets one "here's your download" email, and never hears from you again. Or worse—they get blasted with "BUY NOW" emails before you've earned any trust.
19
+
20
+ The gap between "opted in" and "bought" is where money is made or lost. This skill builds sequences that bridge that gap.
21
+
22
+ ---
23
+
24
+ ## The core job
25
+
26
+ Transform a lead magnet subscriber into a customer through a **strategic email sequence** that:
27
+
28
+ - Delivers immediate value (the lead magnet)
29
+ - Builds trust and relationship
30
+ - Creates desire for the paid offer
31
+ - Converts without being sleazy
32
+
33
+ **Output format:** Complete email sequences with subject lines, preview text, full copy, send timing, and CTAs.
34
+
35
+ ---
36
+
37
+ ## Sequence Types
38
+
39
+ | Sequence | Purpose | Length | When to Use |
40
+ | ----------------- | --------------------------------- | ----------- | ------------------------- |
41
+ | **Welcome** | Deliver value, build relationship | 5-7 emails | After opt-in |
42
+ | **Nurture** | Provide value, build trust | 4-6 emails | Between welcome and pitch |
43
+ | **Conversion** | Sell the product | 4-7 emails | When ready to pitch |
44
+ | **Launch** | Time-bound campaign | 6-10 emails | Product launch |
45
+ | **Re-engagement** | Win back cold subscribers | 3-4 emails | Inactive 30+ days |
46
+ | **Post-Purchase** | Onboard, reduce refunds, upsell | 4-6 emails | After purchase |
47
+
48
+ ---
49
+
50
+ ## Before Starting: Gather Context
51
+
52
+ Get these inputs before writing any sequence:
53
+
54
+ 1. **What's the lead magnet?** (What did they opt in for?)
55
+ 2. **What's the paid offer?** (What are you eventually selling?)
56
+ 3. **What's the price point?** (Affects how much trust-building needed)
57
+ 4. **What's the bridge?** (How does free → paid make logical sense?)
58
+ 5. **What voice/brand?** (Run brand-voice skill first if not defined)
59
+ 6. **What objections?** (Why might they NOT buy?)
60
+
61
+ ---
62
+
63
+ ## The Welcome Sequence (5-7 emails)
64
+
65
+ This is the most important sequence. First impressions compound.
66
+
67
+ ### Purpose
68
+
69
+ - Deliver the lead magnet
70
+ - Set expectations
71
+ - Begin the relationship
72
+ - Identify engaged subscribers
73
+ - Plant seeds for the offer
74
+
75
+ ### The Framework: DELIVER → CONNECT → VALUE → BRIDGE
76
+
77
+ ```
78
+ Email 1: DELIVER — Give them what they came for
79
+ Email 2: CONNECT — Share your story, build rapport
80
+ Email 3: VALUE — Teach something useful (quick win)
81
+ Email 4: VALUE — Teach something else (builds authority)
82
+ Email 5: BRIDGE — Show what's possible with more help
83
+ Email 6: SOFT PITCH — Introduce the offer gently
84
+ Email 7: DIRECT PITCH — Make the ask
85
+ ```
86
+
87
+ ### Email 1: Delivery (Send immediately)
88
+
89
+ **Purpose:** Deliver the lead magnet, set expectations, get first micro-engagement.
90
+
91
+ **Subject line formulas:**
92
+
93
+ - "[Lead magnet name] is inside"
94
+ - "Your [lead magnet] + quick start guide"
95
+ - "Here's [what they asked for]"
96
+
97
+ **Structure:**
98
+
99
+ ```
100
+ [Greeting — keep it simple]
101
+
102
+ [Deliver the goods — link to lead magnet]
103
+
104
+ [Quick start — one action they can take in next 5 minutes]
105
+
106
+ [Set expectations — what emails are coming]
107
+
108
+ [Micro-CTA — hit reply, answer a question, or take one action]
109
+
110
+ [Sign off]
111
+ ```
112
+
113
+ **Example:**
114
+
115
+ ```
116
+ Hey,
117
+
118
+ Your positioning skill is attached. Here's how to use it in 60 seconds:
119
+
120
+ 1. Download the .md file
121
+ 2. Add it to Claude Code (or paste into any Claude conversation)
122
+ 3. Ask Claude: "Find positioning angles for [your product]"
123
+
124
+ That's it. Try it on whatever you're working on right now.
125
+
126
+ Over the next week, I'll send you a few emails showing how to get the most out of this skill—and what else is possible when Claude has real methodology instead of generic prompts.
127
+
128
+ Quick question: What are you hoping to use this for? Hit reply and let me know. I read every response.
129
+
130
+ — James
131
+ ```
132
+
133
+ **Timing:** Immediately after opt-in
134
+
135
+ ---
136
+
137
+ ### Email 2: Connection (Day 2)
138
+
139
+ **Purpose:** Build rapport through vulnerability and shared experience.
140
+
141
+ **Subject line formulas:**
142
+
143
+ - "Why I created [lead magnet]"
144
+ - "The mistake that led to this"
145
+ - "Quick story about [topic]"
146
+
147
+ **Structure:**
148
+
149
+ ```
150
+ [Story hook — specific moment or realization]
151
+
152
+ [The struggle — what you went through]
153
+
154
+ [The insight — what you learned]
155
+
156
+ [The connection — how this relates to them]
157
+
158
+ [Soft forward reference — hint at what's coming]
159
+
160
+ [Sign off]
161
+ ```
162
+
163
+ **Example:**
164
+
165
+ ```
166
+ Quick story:
167
+
168
+ Two years ago, I spent $2,400 on a brand strategist. She was smart. She delivered a 47-page PDF. It sat in my Google Drive for six months.
169
+
170
+ Not because it was bad. Because I didn't know how to USE it.
171
+
172
+ That's when I realized: frameworks without implementation are just expensive decoration.
173
+
174
+ So I started building something different. Not strategy decks. Not consulting. Something you could actually use, immediately, every time you needed it.
175
+
176
+ That's what the positioning skill is—strategy that executes itself.
177
+
178
+ Tomorrow I'll show you what Sarah found when she ran it on her SaaS product. (Her exact words: "I've been explaining this wrong for two years.")
179
+
180
+ — James
181
+ ```
182
+
183
+ **Timing:** Day 2
184
+
185
+ ---
186
+
187
+ ### Email 3: Value (Day 4)
188
+
189
+ **Purpose:** Teach something useful. Demonstrate expertise. Create a quick win.
190
+
191
+ **Subject line formulas:**
192
+
193
+ - "The [X] mistake everyone makes"
194
+ - "Try this: [specific tactic]"
195
+ - "What [person] discovered about [topic]"
196
+
197
+ **Structure:**
198
+
199
+ ```
200
+ [Hook — insight or observation]
201
+
202
+ [The problem — what most people get wrong]
203
+
204
+ [The solution — what to do instead]
205
+
206
+ [Example or proof — show it working]
207
+
208
+ [Action step — what they can do right now]
209
+
210
+ [Sign off]
211
+ ```
212
+
213
+ **Timing:** Day 4
214
+
215
+ ---
216
+
217
+ ### Email 4: More Value (Day 6)
218
+
219
+ **Purpose:** Continue building trust. Different angle or topic.
220
+
221
+ **Subject line formulas:**
222
+
223
+ - "[Number] things that [outcome]"
224
+ - "The question I get most"
225
+ - "This changed how I think about [topic]"
226
+
227
+ **Structure:** Same as Email 3, different topic.
228
+
229
+ **Timing:** Day 6
230
+
231
+ ---
232
+
233
+ ### Email 5: Bridge (Day 8)
234
+
235
+ **Purpose:** Show the gap between where they are and where they could be. Introduce concept of the paid offer without pitching.
236
+
237
+ **Subject line formulas:**
238
+
239
+ - "You can [do X] now. But can you [do Y]?"
240
+ - "The next step most people miss"
241
+ - "What [lead magnet] doesn't do"
242
+
243
+ **Structure:**
244
+
245
+ ```
246
+ [Acknowledge progress — what they can now do with the lead magnet]
247
+
248
+ [Reveal the gap — what they still can't do]
249
+
250
+ [Paint the picture — what's possible with the full solution]
251
+
252
+ [Soft mention — the offer exists, no hard sell]
253
+
254
+ [Sign off]
255
+ ```
256
+
257
+ **Example:**
258
+
259
+ ```
260
+ By now you've probably run the positioning skill on at least one project.
261
+
262
+ You can find angles. That's the foundation.
263
+
264
+ But here's what you can't do with just one skill:
265
+
266
+ - Turn that angle into a landing page that converts
267
+ - Write emails that get opened and clicked
268
+ - Create content that ranks AND reads well
269
+ - Build sequences that turn subscribers into customers
270
+
271
+ The positioning skill is 1 of 9 in the full system.
272
+
273
+ Each skill handles a different piece: copy, content, newsletters, lead magnets, email sequences, content distribution.
274
+
275
+ Together they give Claude a complete marketing methodology—not prompts, but the actual frameworks behind $400k+ in revenue.
276
+
277
+ I'll tell you more about it tomorrow. For now, keep using the positioning skill. It's yours forever.
278
+
279
+ — James
280
+ ```
281
+
282
+ **Timing:** Day 8
283
+
284
+ ---
285
+
286
+ ### Email 6: Soft Pitch (Day 10)
287
+
288
+ **Purpose:** Introduce the offer properly. Handle objections. Let them self-select.
289
+
290
+ **Subject line formulas:**
291
+
292
+ - "The full system (if you want it)"
293
+ - "Should you get [product]? Let's see."
294
+ - "This isn't for everyone"
295
+
296
+ **Structure:**
297
+
298
+ ```
299
+ [Transition — building on bridge email]
300
+
301
+ [The offer — what it is, what's included]
302
+
303
+ [Who it's for — specific situations]
304
+
305
+ [Who it's NOT for — disqualification]
306
+
307
+ [Social proof — if available]
308
+
309
+ [The ask — soft CTA, no urgency yet]
310
+
311
+ [Sign off]
312
+ ```
313
+
314
+ **Timing:** Day 10
315
+
316
+ ---
317
+
318
+ ### Email 7: Direct Pitch (Day 12)
319
+
320
+ **Purpose:** Make the clear ask. Create urgency if authentic.
321
+
322
+ **Subject line formulas:**
323
+
324
+ - "Last thing about [product]"
325
+ - "[Product] — yes or no?"
326
+ - "Quick decision"
327
+
328
+ **Structure:**
329
+
330
+ ```
331
+ [Direct opener — no buildup]
332
+
333
+ [Restate core value — one sentence]
334
+
335
+ [Handle remaining objection — the big one]
336
+
337
+ [Urgency — if real (price increase, bonus deadline, limited)]
338
+
339
+ [Clear CTA — exactly what to do]
340
+
341
+ [Final thought — personal note]
342
+
343
+ [Sign off]
344
+ ```
345
+
346
+ **Timing:** Day 12
347
+
348
+ ---
349
+
350
+ ## The Conversion Sequence (4-7 emails)
351
+
352
+ For when you're ready to pitch—either after welcome sequence or as a standalone campaign.
353
+
354
+ ### The Framework: OPEN → DESIRE → PROOF → OBJECTION → URGENCY → CLOSE
355
+
356
+ ```
357
+ Email 1: OPEN — Introduce the offer, core promise
358
+ Email 2: DESIRE — Paint the transformation, show the gap
359
+ Email 3: PROOF — Testimonials, case studies, results
360
+ Email 4: OBJECTION — Handle the biggest "but..."
361
+ Email 5: URGENCY — Why now matters (if authentic)
362
+ Email 6: CLOSE — Final push, clear CTA
363
+ Email 7: LAST CALL — Deadline reminder (if applicable)
364
+ ```
365
+
366
+ ### Timing
367
+
368
+ - Standard: Every 2 days
369
+ - Launch: Daily or every other day
370
+ - Deadline: Final 3 emails in 3 days
371
+
372
+ ---
373
+
374
+ ## The Launch Sequence (6-10 emails)
375
+
376
+ For time-bound campaigns: product launches, promotions, cohort opens.
377
+
378
+ ### The Framework: SEED → OPEN → VALUE → PROOF → URGENCY → CLOSE
379
+
380
+ **Pre-Launch (Optional, 1-2 emails):**
381
+
382
+ - Seed interest, build anticipation
383
+ - "Something's coming" without revealing
384
+
385
+ **Cart Open (2-3 emails):**
386
+
387
+ - Announcement, full details
388
+ - Value deep-dive, transformation
389
+ - Social proof, testimonials
390
+
391
+ **Mid-Launch (2-3 emails):**
392
+
393
+ - Objection handling
394
+ - Case study or story
395
+ - FAQ or "is this for me?"
396
+
397
+ **Cart Close (2-3 emails):**
398
+
399
+ - Urgency (24-48 hours)
400
+ - Final testimonial
401
+ - Last call (deadline day)
402
+
403
+ ### Launch Email Timing
404
+
405
+ ```
406
+ Day -3: Seed (optional)
407
+ Day -1: Coming tomorrow
408
+ Day 0: Cart open (morning)
409
+ Day 0: Cart open (evening, different angle)
410
+ Day 2: Deep-dive on value
411
+ Day 4: Social proof
412
+ Day 5: Objection handling
413
+ Day 6: 48-hour warning
414
+ Day 7: 24-hour warning (morning)
415
+ Day 7: Final hours (evening)
416
+ Day 7: Last call (before midnight)
417
+ ```
418
+
419
+ ---
420
+
421
+ ## The Re-engagement Sequence (3-4 emails)
422
+
423
+ For subscribers who haven't opened in 30+ days.
424
+
425
+ ### The Framework: PATTERN INTERRUPT → VALUE → DECISION
426
+
427
+ ```
428
+ Email 1: Pattern interrupt — different subject line style, acknowledge absence
429
+ Email 2: Pure value — best content, no ask
430
+ Email 3: Direct question — do you want to stay?
431
+ Email 4: Final — removing from list (creates urgency)
432
+ ```
433
+
434
+ ### Subject Line Examples
435
+
436
+ - "Did I do something wrong?"
437
+ - "Should I stop emailing you?"
438
+ - "Breaking up is hard to do"
439
+ - "You're about to miss [thing]"
440
+ - "[First name], still there?"
441
+
442
+ ---
443
+
444
+ ## Subject Line Formulas
445
+
446
+ ### What Gets Opens
447
+
448
+ **1. Curiosity Gap**
449
+
450
+ - "The [X] mistake that cost me [Y]"
451
+ - "Why [surprising thing] actually works"
452
+ - "I was wrong about [topic]"
453
+
454
+ **2. Direct Benefit**
455
+
456
+ - "How to [outcome] in [timeframe]"
457
+ - "[Number] ways to [benefit]"
458
+ - "The fastest way to [result]"
459
+
460
+ **3. Personal/Story**
461
+
462
+ - "Quick story about [topic]"
463
+ - "What happened when I [action]"
464
+ - "The email I almost didn't send"
465
+
466
+ **4. Question**
467
+
468
+ - "Can I ask you something?"
469
+ - "What would you do with [outcome]?"
470
+ - "Are you making this mistake?"
471
+
472
+ **5. Urgency (when real)**
473
+
474
+ - "[X] hours left"
475
+ - "Closing tonight"
476
+ - "Last chance: [offer]"
477
+
478
+ **6. Pattern Interrupt**
479
+
480
+ - "." (just a period)
481
+ - "So..."
482
+ - "Bad news"
483
+ - "[First name]"
484
+
485
+ ### What Kills Opens
486
+
487
+ - ALL CAPS
488
+ - Excessive punctuation!!!
489
+ - "Newsletter #47"
490
+ - "[COMPANY NAME] Weekly Update"
491
+ - Clickbait that doesn't deliver
492
+ - Same format every time
493
+
494
+ ---
495
+
496
+ ## Email Copy Principles
497
+
498
+ ### The P.S. Is Prime Real Estate
499
+
500
+ 40% of people read the P.S. first. Use it for:
501
+
502
+ - The core CTA
503
+ - A second hook
504
+ - Personal note
505
+ - Deadline reminder
506
+
507
+ ### One CTA Per Email
508
+
509
+ Multiple CTAs = no CTAs. Every email should have ONE clear action.
510
+
511
+ Exception: Delivery email can have "download" + "reply with question"
512
+
513
+ ### Short Paragraphs
514
+
515
+ 1-3 sentences max. Email is scanned, not read.
516
+
517
+ ### Preview Text Matters
518
+
519
+ First 40-90 characters appear in inbox preview. Make them count.
520
+
521
+ **Bad:** "Having trouble viewing this email?"
522
+ **Good:** "[Continuation of subject line curiosity]"
523
+
524
+ ### Open Loops
525
+
526
+ Create curiosity within emails:
527
+
528
+ - "I'll explain why tomorrow."
529
+ - "But that's not even the interesting part."
530
+ - "The third one surprised me."
531
+
532
+ ### Specificity Creates Credibility
533
+
534
+ - Not "made money" → "$47,329 in one day"
535
+ - Not "many customers" → "2,847 customers"
536
+ - Not "recently" → "Last Tuesday"
537
+
538
+ ---
539
+
540
+ ## Sequence Architecture Patterns
541
+
542
+ ### The Straight Line
543
+
544
+ ```
545
+ Email 1 → Email 2 → Email 3 → Email 4 → Pitch
546
+ ```
547
+
548
+ Simple. Works for short sequences. No branches.
549
+
550
+ ### The Branch
551
+
552
+ ```
553
+ Email 1 → Email 2 → [Clicked?] → YES: Pitch sequence
554
+ → NO: More value sequence
555
+ ```
556
+
557
+ Behavior-based. More sophisticated. Requires automation.
558
+
559
+ ### The Hybrid
560
+
561
+ ```
562
+ Welcome (5 emails) → [Wait 7 days] → Conversion (5 emails) → [No purchase] → Nurture (ongoing)
563
+ ```
564
+
565
+ Full lifecycle. Most complete.
566
+
567
+ ---
568
+
569
+ ## Timing Guidelines
570
+
571
+ ### Send Frequency by Sequence
572
+
573
+ | Sequence | Frequency | Notes |
574
+ | ------------- | -------------------------- | ------------------------------- |
575
+ | Welcome | Days 0, 2, 4, 6, 8, 10, 12 | Front-load value |
576
+ | Nurture | Weekly or 2x/week | Consistent rhythm |
577
+ | Conversion | Every 2 days | Enough touch without annoying |
578
+ | Launch | Daily or every other day | Intensity justified by deadline |
579
+ | Re-engagement | Days 0, 3, 7, 10 | Give time to respond |
580
+
581
+ ### Best Send Times
582
+
583
+ - B2B: Tuesday-Thursday, 9-11am recipient time
584
+ - B2C: Tuesday-Thursday, 7-9am or 7-9pm
585
+ - Avoid: Monday morning (inbox overload), Friday afternoon (checked out)
586
+
587
+ ### When to Start Selling
588
+
589
+ - Low price (<$100): After 3-5 value emails
590
+ - Medium price ($100-500): After 5-7 value emails
591
+ - High price (>$500): After 7-10 value emails or sales call
592
+
593
+ Trust required scales with price.
594
+
595
+ ---
596
+
597
+ ## Output Format
598
+
599
+ ### Sequence Overview
600
+
601
+ ```
602
+ # [Sequence Name] — [Product/Offer]
603
+
604
+ ## Sequence Goal
605
+ [What this sequence accomplishes]
606
+
607
+ ## Timing
608
+ [Send schedule]
609
+
610
+ ## Emails
611
+
612
+ ### Email 1: [Name]
613
+ **Send:** [Timing]
614
+ **Subject:** [Subject line]
615
+ **Preview:** [Preview text]
616
+ **Purpose:** [What this email does]
617
+
618
+ [Full email copy]
619
+
620
+ ---
621
+
622
+ ### Email 2: [Name]
623
+ ...
624
+ ```
625
+
626
+ ### Individual Email Template
627
+
628
+ ```
629
+ ---
630
+ **Email [#]:** [Name/Purpose]
631
+ **Send timing:** [Day X or trigger]
632
+ **Subject line:** [Subject]
633
+ **Preview text:** [First 60 chars of preview]
634
+ **CTA:** [What action you want]
635
+ ---
636
+
637
+ [FULL EMAIL COPY]
638
+
639
+ ---
640
+ **P.S.** [If applicable]
641
+ ---
642
+ ```
643
+
644
+ ---
645
+
646
+ ## Example: Welcome Sequence for Skills Pack Lead Magnet
647
+
648
+ ### Context
649
+
650
+ - Lead magnet: Free positioning-angles skill
651
+ - Paid offer: 9-skill marketing pack ($149)
652
+ - Bridge: One skill → want the other 8
653
+ - Audience: Founders/marketers using Claude
654
+
655
+ ### Email 1: Delivery
656
+
657
+ **Send:** Immediately
658
+ **Subject:** Your positioning skill is inside
659
+ **Preview:** Here's how to use it in 60 seconds
660
+
661
+ Hey,
662
+
663
+ Your positioning skill is attached. [LINK]
664
+
665
+ Here's how to use it in 60 seconds:
666
+
667
+ 1. Download the .md file
668
+ 2. Add it to Claude Code (or paste into a Claude conversation)
669
+ 3. Ask: "Find positioning angles for [your product]"
670
+
671
+ That's it. Try it right now on whatever you're working on.
672
+
673
+ Over the next week, I'll send you a few emails showing how to get more out of this—plus what happens when Claude has an entire marketing methodology instead of one skill.
674
+
675
+ Quick question: What project are you hoping to use this for? Hit reply and tell me. I read every one.
676
+
677
+ — James
678
+
679
+ ---
680
+
681
+ ### Email 2: Connection
682
+
683
+ **Send:** Day 2
684
+ **Subject:** Why I built this (quick story)
685
+ **Preview:** $2,400 on a strategist and nothing to show for it
686
+
687
+ Quick story:
688
+
689
+ Two years ago I hired a brand strategist. $2,400. She delivered a 47-page PDF.
690
+
691
+ It sat in my Google Drive for six months.
692
+
693
+ Not because it was bad. Because I had no idea how to implement it. Every time I tried to write a landing page or position an offer, I'd open the PDF, get overwhelmed, and close it.
694
+
695
+ That's when I realized: Frameworks without implementation are expensive decoration.
696
+
697
+ So I started building something different.
698
+
699
+ Not strategy decks. Not consulting. Something you could actually USE—every time you needed to write copy, find an angle, plan content, or build a sequence.
700
+
701
+ The positioning skill you downloaded? That's one piece.
702
+
703
+ Tomorrow I'll show you what happened when Sarah ran it on her SaaS product. (Her words: "I've been explaining this wrong for two years.")
704
+
705
+ — James
706
+
707
+ ---
708
+
709
+ ### Email 3: Value/Proof
710
+
711
+ **Send:** Day 4
712
+ **Subject:** What Sarah found in 12 minutes
713
+ **Preview:** "I've been explaining this wrong for two years"
714
+
715
+ Sarah runs a SaaS tool for freelancers. Revenue had plateaued.
716
+
717
+ She'd tried:
718
+
719
+ - New features (users didn't care)
720
+ - Price changes (didn't move the needle)
721
+ - More content (traffic but no conversions)
722
+
723
+ Then she ran the positioning skill.
724
+
725
+ 12 minutes later, she had 5 distinct angles she'd never considered.
726
+
727
+ The winner: Stop positioning as "invoicing software." Start positioning as "get paid faster without awkward follow-ups."
728
+
729
+ Same product. Different angle. Her landing page conversion went from 2.1% to 4.7%.
730
+
731
+ The skill didn't write her landing page. It found the angle that made everything else easier.
732
+
733
+ That's what methodology does—it changes what you see.
734
+
735
+ Try it again today. Pick something that's not converting the way you want. Find the angle you've been missing.
736
+
737
+ — James
738
+
739
+ P.S. Tomorrow: the one thing the positioning skill can't do (and why it matters).
740
+
741
+ ---
742
+
743
+ ### Email 4: Bridge
744
+
745
+ **Send:** Day 6
746
+ **Subject:** You can find angles now. But can you do this?
747
+ **Preview:** What one skill doesn't cover
748
+
749
+ By now you've probably found a few angles using the skill.
750
+
751
+ That's the foundation. Positioning is where everything starts.
752
+
753
+ But here's what you can't do with just one skill:
754
+
755
+ - Turn that angle into a landing page that converts
756
+ - Write an email sequence that turns subscribers into customers
757
+ - Create content that ranks AND reads well
758
+ - Build a lead magnet that actually gets downloaded
759
+ - Atomize one piece of content into 15 platform-native posts
760
+
761
+ The positioning skill is 1 of 9.
762
+
763
+ Together they give Claude a complete marketing methodology. Not prompts—methodology. The frameworks behind $400k+ in 9 months.
764
+
765
+ I'll tell you more about the full system tomorrow.
766
+
767
+ For now, keep finding angles. The skill is yours forever.
768
+
769
+ — James
770
+
771
+ ---
772
+
773
+ ### Email 5: Soft Pitch
774
+
775
+ **Send:** Day 8
776
+ **Subject:** The full system (if you want it)
777
+ **Preview:** 9 skills, one methodology, $149
778
+
779
+ You've been using the positioning skill for a week.
780
+
781
+ If you're finding it useful, here's what else is available:
782
+
783
+ **The Vibe Marketing Skills Pack — $149**
784
+
785
+ 9 skills that give Claude a complete marketing methodology:
786
+
787
+ | Skill | What It Does |
788
+ | -------------------- | -------------------------------------- |
789
+ | brand-voice | Defines how you sound |
790
+ | positioning-angles | Finds angles that sell (you have this) |
791
+ | keyword-research | Identifies what to write about |
792
+ | lead-magnet | Creates opt-in offer concepts |
793
+ | direct-response-copy | Writes pages that convert |
794
+ | seo-content | Writes content that ranks |
795
+ | newsletter | Creates email editions |
796
+ | email-sequences | Builds sequences that convert |
797
+ | content-atomizer | Turns 1 piece into 15 |
798
+
799
+ Plus the orchestrator—a meta-skill that tells you which skill to run and in what order.
800
+
801
+ **This is for you if:**
802
+
803
+ - You use Claude for marketing but get generic output
804
+ - You know methodology matters but don't have time to learn it all
805
+ - You want a system, not random prompts
806
+
807
+ **This is NOT for you if:**
808
+
809
+ - You've never used Claude (start there first)
810
+ - You want someone to do it for you (this is a tool, not a service)
811
+ - You don't do your own marketing
812
+
813
+ $149 once. All 9 skills. All future updates.
814
+
815
+ [GET THE FULL SYSTEM]
816
+
817
+ No pressure. The positioning skill is yours either way.
818
+
819
+ — James
820
+
821
+ ---
822
+
823
+ ### Email 6: Direct Pitch
824
+
825
+ **Send:** Day 10
826
+ **Subject:** Last thing about the skills pack
827
+ **Preview:** Then I'll stop talking about it
828
+
829
+ Last email about this, then I'll leave you alone.
830
+
831
+ The skills pack is $149. That's $16.55 per skill.
832
+
833
+ For context:
834
+
835
+ - A brand strategist charges $2,000-5,000
836
+ - A positioning consultant charges $3,000-10,000
837
+ - A copywriter charges $500-2,000 per page
838
+
839
+ You get methodology that handles all of it. Reusable. Forever.
840
+
841
+ The question isn't "is $149 a lot?" It's "what's one good landing page worth?"
842
+
843
+ If a better angle, clearer copy, or smarter content strategy gets you even ONE extra customer, you've made the money back.
844
+
845
+ [GET THE SKILLS PACK — $149]
846
+
847
+ If you have questions, hit reply. I answer everything.
848
+
849
+ — James
850
+
851
+ P.S. 200+ marketers are using this system. Join them: [LINK]
852
+
853
+ ---
854
+
855
+ ### Email 7: Final
856
+
857
+ **Send:** Day 12
858
+ **Subject:** Quick question
859
+ **Preview:** And then back to regularly scheduled programming
860
+
861
+ Quick question:
862
+
863
+ Did you decide on the skills pack?
864
+
865
+ Either answer is fine. But if something's holding you back, I'd love to know what it is. Hit reply and tell me.
866
+
867
+ After this, I'll go back to regular emails—tactics, strategies, things I'm learning. No more pitching.
868
+
869
+ If you want the skills pack later, it'll be here: [LINK]
870
+
871
+ — James
872
+
873
+ ---
874
+
875
+ ## How This Connects to Other Skills
876
+
877
+ **email-sequences uses:**
878
+
879
+ - **brand-voice** — Ensures email voice matches brand
880
+ - **positioning-angles** — The angle informs the pitch
881
+ - **lead-magnet** — The sequence delivers the lead magnet
882
+ - **direct-response-copy** — Individual emails use copy principles
883
+
884
+ **email-sequences feeds:**
885
+
886
+ - **content-atomizer** — Best emails can become social content
887
+ - **newsletter** — Sequence insights inform newsletter strategy
888
+
889
+ **The flow:**
890
+
891
+ 1. **lead-magnet** creates the opt-in offer
892
+ 2. **email-sequences** builds the welcome → conversion path
893
+ 3. **direct-response-copy** principles inform each email
894
+ 4. Subscriber becomes customer
895
+
896
+ ---
897
+
898
+ ## The Test
899
+
900
+ A good email sequence:
901
+
902
+ 1. **Delivers value before asking** — At least 3-5 value emails before pitch
903
+ 2. **Has clear purpose per email** — Each email does ONE job
904
+ 3. **Sounds human** — Not corporate, not guru, not AI
905
+ 4. **Creates momentum** — Each email makes them want the next
906
+ 5. **Handles objections** — Addresses the "but..." before they think it
907
+ 6. **Has one CTA** — Every email drives one action
908
+ 7. **Respects the reader** — Can unsubscribe easily, not manipulative
909
+
910
+ If the sequence feels like "content, content, content, BUY NOW BUY NOW" — it failed.