bobo-ai-cli 3.0.4 → 3.0.5

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 (238) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +259 -259
  3. package/bundled-skills/CORE_SKILLS.txt +18 -18
  4. package/bundled-skills/backend-expert/SKILL.md +97 -97
  5. package/bundled-skills/code-review/SKILL.md +280 -280
  6. package/bundled-skills/code-review-expert/SKILL.md +85 -85
  7. package/bundled-skills/context-budget-analyzer/SKILL.md +76 -76
  8. package/bundled-skills/context-compressor/SKILL.md +75 -75
  9. package/bundled-skills/context-optimization-suite/SKILL.md +162 -162
  10. package/bundled-skills/frontend-expert/SKILL.md +93 -93
  11. package/bundled-skills/github/SKILL.md +12 -12
  12. package/bundled-skills/high-agency/SKILL.md +473 -473
  13. package/bundled-skills/high-agency/references/builder-patterns.md +126 -126
  14. package/bundled-skills/high-agency/references/recovery-playbook.md +298 -298
  15. package/bundled-skills/memory-manager/SKILL.md +214 -214
  16. package/bundled-skills/memory-manager/references/advanced-config.md +65 -65
  17. package/bundled-skills/orchestrator/SKILL.md +681 -681
  18. package/bundled-skills/planning-with-files/SKILL.md +193 -193
  19. package/bundled-skills/skill-creator/SKILL.md +220 -220
  20. package/bundled-skills/testing-expert/SKILL.md +99 -99
  21. package/bundled-skills/verify/SKILL.md +15 -15
  22. package/dist/agent.d.ts +5 -0
  23. package/dist/agent.js +11 -1
  24. package/dist/agent.js.map +1 -1
  25. package/dist/agents/catalog.d.ts +47 -0
  26. package/dist/agents/catalog.js +63 -5
  27. package/dist/agents/catalog.js.map +1 -1
  28. package/dist/agents/router.d.ts +12 -1
  29. package/dist/agents/router.js +43 -3
  30. package/dist/agents/router.js.map +1 -1
  31. package/dist/agents/spawn.js +36 -18
  32. package/dist/agents/spawn.js.map +1 -1
  33. package/dist/autonomous.js +5 -5
  34. package/dist/cli.js +23 -21
  35. package/dist/cli.js.map +1 -1
  36. package/dist/compactor.js +39 -39
  37. package/dist/dream.js +29 -29
  38. package/dist/image-input.d.ts +44 -0
  39. package/dist/image-input.js +161 -0
  40. package/dist/image-input.js.map +1 -0
  41. package/dist/memory.js +13 -13
  42. package/dist/project.js +15 -15
  43. package/dist/repl.js +88 -0
  44. package/dist/repl.js.map +1 -1
  45. package/dist/skills.js +54 -54
  46. package/dist/sub-agents.js +65 -65
  47. package/dist/tools/browser.js +21 -21
  48. package/dist/tools/claude-code.js +10 -10
  49. package/dist/web.js +7 -7
  50. package/dist/wiki-commands.d.ts +2 -0
  51. package/dist/wiki-commands.js +249 -0
  52. package/dist/wiki-commands.js.map +1 -0
  53. package/dist/wiki.d.ts +90 -0
  54. package/dist/wiki.js +614 -0
  55. package/dist/wiki.js.map +1 -0
  56. package/knowledge/advanced-patterns.md +70 -70
  57. package/knowledge/agent-directives.md +74 -74
  58. package/knowledge/api-integration-patterns.md +102 -0
  59. package/knowledge/code-review-protocol.md +69 -0
  60. package/knowledge/dream.md +36 -36
  61. package/knowledge/engineering.md +52 -46
  62. package/knowledge/error-catalog.md +38 -33
  63. package/knowledge/event-driven-architecture.md +43 -0
  64. package/knowledge/external-alignment.md +47 -0
  65. package/knowledge/high-agency.md +73 -0
  66. package/knowledge/image-generation.md +48 -0
  67. package/knowledge/index.json +194 -169
  68. package/knowledge/llm-wiki-pattern.md +71 -0
  69. package/knowledge/long-task-management.md +79 -0
  70. package/knowledge/memory/cache-optimization-and-skill-integration.md +102 -102
  71. package/knowledge/memory/engineering-patterns.md +134 -134
  72. package/knowledge/memory/feedback_root_structure.md +15 -15
  73. package/knowledge/memory/project-contexts.md +69 -69
  74. package/knowledge/memory/tools-and-services.md +85 -85
  75. package/knowledge/memory-management.md +72 -0
  76. package/knowledge/rules/advisor-strategy.md +204 -0
  77. package/knowledge/rules/agents.md +62 -62
  78. package/knowledge/rules/blocking-rules.md +323 -323
  79. package/knowledge/rules/cache-management.md +379 -379
  80. package/knowledge/rules/capability-evolution.md +132 -132
  81. package/knowledge/rules/coding.md +126 -126
  82. package/knowledge/rules/engineering-workflows.md +225 -225
  83. package/knowledge/rules/evomap-content-guidelines.md +354 -354
  84. package/knowledge/rules/evomap-guide.md +224 -224
  85. package/knowledge/rules/external-alignment.md +22 -0
  86. package/knowledge/rules/git.md +31 -31
  87. package/knowledge/rules/hooks.md +106 -106
  88. package/knowledge/rules/performance.md +101 -101
  89. package/knowledge/rules/remotion-auto-production.md +1120 -1120
  90. package/knowledge/rules/security.md +46 -46
  91. package/knowledge/rules/testing.md +32 -32
  92. package/knowledge/rules/work-mode.md +208 -208
  93. package/knowledge/rules.md +62 -62
  94. package/knowledge/self-evolution.md +78 -0
  95. package/knowledge/self-rationalization-guard.md +52 -0
  96. package/knowledge/skills/Skill_Seekers.md +1722 -1722
  97. package/knowledge/skills/ab-test-setup.md +557 -557
  98. package/knowledge/skills/agent-sdk-dev.md +238 -238
  99. package/knowledge/skills/agent-tools.md +136 -136
  100. package/knowledge/skills/analytics-tracking.md +597 -597
  101. package/knowledge/skills/artifacts-builder.md +89 -89
  102. package/knowledge/skills/asana.md +12 -12
  103. package/knowledge/skills/backend-expert.md +97 -97
  104. package/knowledge/skills/brand-voice.md +481 -481
  105. package/knowledge/skills/browser-use.md +419 -419
  106. package/knowledge/skills/cache-optimization-skill.md +179 -179
  107. package/knowledge/skills/canvas-design.md +147 -147
  108. package/knowledge/skills/citation-validator.md +203 -203
  109. package/knowledge/skills/clangd-lsp.md +52 -52
  110. package/knowledge/skills/code-review-expert.md +85 -85
  111. package/knowledge/skills/code-review.md +280 -280
  112. package/knowledge/skills/code-simplifier.md +12 -12
  113. package/knowledge/skills/commit-commands.md +258 -258
  114. package/knowledge/skills/competitor-alternatives.md +795 -795
  115. package/knowledge/skills/content-atomizer.md +910 -910
  116. package/knowledge/skills/content-research-writer.md +605 -605
  117. package/knowledge/skills/context-optimization-suite.md +162 -162
  118. package/knowledge/skills/context7.md +12 -12
  119. package/knowledge/skills/copy-editing.md +494 -494
  120. package/knowledge/skills/copywriting.md +510 -510
  121. package/knowledge/skills/csharp-lsp.md +40 -40
  122. package/knowledge/skills/decision-making-framework.md +154 -154
  123. package/knowledge/skills/developer-growth-analysis.md +335 -335
  124. package/knowledge/skills/direct-response-copy.md +2336 -2336
  125. package/knowledge/skills/docker-expert.md +229 -229
  126. package/knowledge/skills/document-skills.md +12 -12
  127. package/knowledge/skills/documentation-expert.md +126 -126
  128. package/knowledge/skills/email-sequence.md +1061 -1061
  129. package/knowledge/skills/email-sequences.md +910 -910
  130. package/knowledge/skills/example-plugin.md +72 -72
  131. package/knowledge/skills/explanatory-output-style.md +82 -82
  132. package/knowledge/skills/feature-dev.md +458 -458
  133. package/knowledge/skills/file-organizer.md +466 -466
  134. package/knowledge/skills/firebase.disabled.md +12 -12
  135. package/knowledge/skills/form-cro.md +488 -488
  136. package/knowledge/skills/free-tool-strategy.md +636 -636
  137. package/knowledge/skills/frontend-design-offical.md +55 -55
  138. package/knowledge/skills/frontend-design.md +41 -41
  139. package/knowledge/skills/frontend-expert.md +93 -93
  140. package/knowledge/skills/github.md +12 -12
  141. package/knowledge/skills/gitlab.md +12 -12
  142. package/knowledge/skills/gopls-lsp.md +32 -32
  143. package/knowledge/skills/got-controller.md +218 -218
  144. package/knowledge/skills/greptile.md +72 -72
  145. package/knowledge/skills/hookify.md +376 -376
  146. package/knowledge/skills/image-editor.md +189 -189
  147. package/knowledge/skills/image-enhancer.md +109 -109
  148. package/knowledge/skills/jdtls-lsp.md +49 -49
  149. package/knowledge/skills/json-canvas.md +654 -654
  150. package/knowledge/skills/keyword-research.md +559 -559
  151. package/knowledge/skills/kotlin-lsp.md +28 -28
  152. package/knowledge/skills/laravel-boost.md +12 -12
  153. package/knowledge/skills/launch-strategy.md +394 -394
  154. package/knowledge/skills/lead-magnet.md +393 -393
  155. package/knowledge/skills/learning-output-style.md +106 -106
  156. package/knowledge/skills/linear.md +12 -12
  157. package/knowledge/skills/lua-lsp.md +47 -47
  158. package/knowledge/skills/marketing-ideas.md +720 -720
  159. package/knowledge/skills/marketing-psychology.md +534 -534
  160. package/knowledge/skills/mcp-builder.md +369 -369
  161. package/knowledge/skills/meeting-insights-analyzer.md +347 -347
  162. package/knowledge/skills/memory-evolution-system.md +172 -172
  163. package/knowledge/skills/multi-lens-thinking.md +407 -407
  164. package/knowledge/skills/nano-banana-pro.md +116 -116
  165. package/knowledge/skills/newsletter.md +736 -736
  166. package/knowledge/skills/notebooklm.md +296 -296
  167. package/knowledge/skills/obsidian-bases.md +634 -634
  168. package/knowledge/skills/obsidian-markdown.md +651 -651
  169. package/knowledge/skills/onboarding-cro.md +494 -494
  170. package/knowledge/skills/orchestrator.md +681 -681
  171. package/knowledge/skills/page-cro.md +379 -379
  172. package/knowledge/skills/paid-ads.md +624 -624
  173. package/knowledge/skills/paywall-upgrade-cro.md +651 -651
  174. package/knowledge/skills/php-lsp.md +36 -36
  175. package/knowledge/skills/planning-with-files.md +193 -193
  176. package/knowledge/skills/playwright.md +12 -12
  177. package/knowledge/skills/plugin-dev.md +434 -434
  178. package/knowledge/skills/popup-cro.md +520 -520
  179. package/knowledge/skills/positioning-angles.md +330 -330
  180. package/knowledge/skills/pr-review-toolkit.md +359 -359
  181. package/knowledge/skills/pricing-strategy.md +777 -777
  182. package/knowledge/skills/programmatic-seo.md +714 -714
  183. package/knowledge/skills/pyright-lsp.md +43 -43
  184. package/knowledge/skills/quality-assurance-framework.md +168 -168
  185. package/knowledge/skills/question-refiner.md +160 -160
  186. package/knowledge/skills/ralph-loop.md +205 -205
  187. package/knowledge/skills/refactoring-expert.md +103 -103
  188. package/knowledge/skills/referral-program.md +668 -668
  189. package/knowledge/skills/research-executor.md +164 -164
  190. package/knowledge/skills/review-with-security.md +12 -12
  191. package/knowledge/skills/rust-analyzer-lsp.md +50 -50
  192. package/knowledge/skills/schema-markup.md +647 -647
  193. package/knowledge/skills/security-audit-expert.md +124 -124
  194. package/knowledge/skills/security-expert.md +140 -140
  195. package/knowledge/skills/security-guidance.md +12 -12
  196. package/knowledge/skills/seedance-prompt.md +139 -139
  197. package/knowledge/skills/self-evolution.md +1160 -1160
  198. package/knowledge/skills/seo-audit.md +432 -432
  199. package/knowledge/skills/seo-content.md +787 -787
  200. package/knowledge/skills/serena.md +12 -12
  201. package/knowledge/skills/signup-flow-cro.md +409 -409
  202. package/knowledge/skills/skill-creator.md +220 -220
  203. package/knowledge/skills/skill-manager.md +226 -226
  204. package/knowledge/skills/skill-share.md +98 -98
  205. package/knowledge/skills/slack.md +12 -12
  206. package/knowledge/skills/social-content.md +878 -878
  207. package/knowledge/skills/spec-flow-skill.md +124 -124
  208. package/knowledge/skills/stripe.md +12 -12
  209. package/knowledge/skills/supabase.md +12 -12
  210. package/knowledge/skills/swift-lsp.md +40 -40
  211. package/knowledge/skills/synthesizer.md +236 -236
  212. package/knowledge/skills/template-skill.md +16 -16
  213. package/knowledge/skills/testing-expert.md +99 -99
  214. package/knowledge/skills/theme-factory.md +72 -72
  215. package/knowledge/skills/tiktok-research.md +208 -208
  216. package/knowledge/skills/typescript-lsp.md +36 -36
  217. package/knowledge/skills/ui-ux-pro-max.md +247 -247
  218. package/knowledge/skills/verify.md +15 -15
  219. package/knowledge/skills/visual-prompt-engineer.md +102 -102
  220. package/knowledge/skills/webapp-testing.md +111 -111
  221. package/knowledge/skills/wide-research.md +191 -191
  222. package/knowledge/system.md +93 -93
  223. package/knowledge/task-router.md +46 -37
  224. package/knowledge/verification.md +38 -38
  225. package/knowledge/worker-prompt-craft.md +66 -0
  226. package/knowledge/workflows/3d-viz.md +47 -47
  227. package/knowledge/workflows/data-pipeline.md +47 -47
  228. package/knowledge/workflows/db-migration.md +51 -51
  229. package/knowledge/workflows/feature-dev.md +41 -41
  230. package/knowledge/workflows/tdd-flow.md +52 -52
  231. package/knowledge/workflows/ui-verify.md +51 -51
  232. package/package.json +74 -74
  233. package/dist/claude-bridge.d.ts +0 -18
  234. package/dist/claude-bridge.js +0 -91
  235. package/dist/claude-bridge.js.map +0 -1
  236. package/dist/tools/claude-bridge-tool.d.ts +0 -4
  237. package/dist/tools/claude-bridge-tool.js +0 -44
  238. package/dist/tools/claude-bridge-tool.js.map +0 -1
@@ -1,393 +1,393 @@
1
- ---
2
- id: "lead-magnet"
3
- title: "Lead Magnet Ideation"
4
- category: "marketing"
5
- tags: ["lead magnet ideation", "the core job", "the lead magnet framework", "the hook generators", "output format", "how this skill gets invoked", "what this skill is not", "the test", "references"]
6
- triggers: []
7
- dependencies: []
8
- source: "E:/Bobo's Coding cache/.claude/skills/lead-magnet"
9
- ---
10
-
11
- ---
12
- name: lead-magnet
13
- description: 'Generate compelling lead magnet concepts that build lists and convert to paid offers. Use when someone needs top-of-funnel ideas, wants to grow their email list, or asks what should I give away for free. Triggers on: lead magnet ideas for X, how do I build my list, what freebie should I create, top of funnel for X, opt-in ideas, grow my email list. Outputs 3-5 lead magnet concepts with hooks, formats, and clear bridges to the paid offer.'
14
- ---
15
-
16
- # Lead Magnet Ideation
17
-
18
- The best lead magnets aren't about what you want to give away. They're about what your prospect desperately wants to consume—and how that consumption naturally leads them toward your paid offer.
19
-
20
- This skill generates lead magnet concepts that actually convert.
21
-
22
- ---
23
-
24
- ## The core job
25
-
26
- When someone asks for lead magnet ideas, the goal is to surface **multiple compelling concepts** they can choose from—each with a clear hook, format, and bridge to their paid offer.
27
-
28
- Every business has several valid lead magnet approaches. The question is which one best matches their audience, business model, and offer.
29
-
30
- Output format: **3-5 distinct lead magnet concepts**, each with:
31
-
32
- - The concept (what it is, in one sentence)
33
- - The format (quiz, PDF, calculator, challenge, template, etc.)
34
- - The hook (why someone would want this badly enough to give their email)
35
- - The bridge (how it naturally leads to the paid offer)
36
- - Implementation notes (difficulty level, resources needed)
37
-
38
- ---
39
-
40
- ## Before generating: Understand the context
41
-
42
- ### Step 1: Identify the business type
43
-
44
- Different business types have different optimal lead magnet formats:
45
-
46
- **Info Products (courses, memberships, coaching):**
47
-
48
- - Quizzes and assessments work exceptionally well
49
- - Challenges (5-day, 7-day) build momentum and community
50
- - PDF frameworks that solve one specific problem
51
- - Video series that demonstrate teaching style
52
- - Free chapters or modules as taste of full product
53
-
54
- **SaaS (software, tools, apps):**
55
-
56
- - Free tools or constrained versions of the product
57
- - ROI calculators that quantify the value
58
- - Templates that work with the product
59
- - Checklists and implementation guides
60
- - Free trials (not technically a "lead magnet" but same function)
61
-
62
- **Services (agencies, consultants, freelancers):**
63
-
64
- - Audits that reveal problems the service solves
65
- - Assessments that diagnose the prospect's situation
66
- - Case studies that prove capability
67
- - Strategy sessions or consultations
68
- - Templates that showcase methodology
69
-
70
- ### Step 2: Identify what they sell
71
-
72
- Not the product. The transformation.
73
-
74
- What does the customer's life look like AFTER? What pain disappears? What capability appears? What status changes?
75
-
76
- The lead magnet should deliver a MICRO-VERSION of that same transformation.
77
-
78
- ### Step 3: Identify who they're targeting
79
-
80
- - What's the prospect's current situation?
81
- - What have they already tried?
82
- - What do they believe about the problem?
83
- - What would make them say "this is exactly what I needed"?
84
-
85
- ---
86
-
87
- ## The lead magnet framework
88
-
89
- ### The Specificity Principle
90
-
91
- **Narrow beats broad. Every time.**
92
-
93
- "5-Step Framework to Land Your First 10 Clients in 30 Days (Even If You Hate Networking)" converts dramatically better than "Marketing Guide for Freelancers."
94
-
95
- Why? Specificity signals:
96
-
97
- 1. This was made for someone exactly like me
98
- 2. The creator deeply understands my situation
99
- 3. This isn't generic advice I could find anywhere
100
-
101
- When generating concepts, always push toward specificity:
102
-
103
- - Specific outcome (not "grow your business" but "add $10k MRR")
104
- - Specific timeframe (not "eventually" but "in 30 days")
105
- - Specific audience (not "entrepreneurs" but "B2B SaaS founders")
106
- - Specific method (not "marketing tips" but "The LinkedIn DM Framework")
107
-
108
- ### The Bridge Principle
109
-
110
- **The lead magnet must logically connect to the paid offer.**
111
-
112
- If someone downloads a lead magnet about Instagram growth and you sell SEO services, there's no bridge. You've attracted people interested in the wrong thing.
113
-
114
- The best lead magnets are "Step 1" of what you sell:
115
-
116
- - Course on copywriting → Lead magnet: "The Headline Formula" (first skill taught in course)
117
- - Agency doing SEO audits → Lead magnet: Free mini-audit (demonstrates what full audit reveals)
118
- - Coach on productivity → Lead magnet: "Morning Routine Builder" (taste of coaching methodology)
119
-
120
- The bridge should be obvious: "If you liked this free thing, the paid thing is more/deeper/complete."
121
-
122
- ### The Quick Win Principle
123
-
124
- **Solve one specific problem completely.**
125
-
126
- Prospects want immediate, actionable value. A lead magnet that requires weeks of study before generating results feels like homework, not a gift.
127
-
128
- The best lead magnets deliver a quick win:
129
-
130
- - A checklist they can complete in 10 minutes that reveals gaps
131
- - A template they can customize in an hour for their business
132
- - An assessment that gives them a score and action items immediately
133
- - A calculator that shows them their specific numbers right now
134
-
135
- Quick wins create reciprocity. When someone thinks "I couldn't have created this myself," they're primed to value your paid offer.
136
-
137
- ### The Value Equation
138
-
139
- Apply Hormozi's value equation to lead magnet concepts:
140
-
141
- **Value = (Dream Outcome × Perceived Likelihood) / (Time Delay × Effort)**
142
-
143
- Maximize:
144
-
145
- - **Dream Outcome:** What's the transformation this lead magnet promises?
146
- - **Perceived Likelihood:** Why will THIS work when other things haven't?
147
-
148
- Minimize:
149
-
150
- - **Time Delay:** How fast do they see results? (Immediate beats weeks)
151
- - **Effort:** How easy is it to consume and implement? (5-minute checklist beats 50-page guide)
152
-
153
- ---
154
-
155
- ## The format selection framework
156
-
157
- ### When to use each format:
158
-
159
- **Quizzes/Assessments**
160
- Best for: Personalization, segmentation, transformation-focused offers
161
- Examples: "What's Your Marketing Personality?", "Find Your Ideal Client Avatar"
162
- Why it works: People love learning about themselves; provides segmentation data
163
- Difficulty: Medium (needs quiz tool, logic branching)
164
-
165
- **PDF Guides/Frameworks**
166
- Best for: Establishing authority, comprehensive solutions, complex topics
167
- Examples: "The Ultimate Guide to X", "7-Step Framework for Y"
168
- Why it works: Perceived high value, easy to create, works across all business types
169
- Difficulty: Low (just need content and design)
170
-
171
- **Checklists/Templates**
172
- Best for: Quick wins, immediate utility, showcasing methodology
173
- Examples: "Launch Day Checklist", "Content Calendar Template"
174
- Why it works: Immediate actionability, low friction to consume
175
- Difficulty: Low
176
-
177
- **Calculators/Tools**
178
- Best for: SaaS, financial services, ROI-focused offers
179
- Examples: "ROI Calculator", "Pricing Calculator", "Savings Estimator"
180
- Why it works: Personalized output, demonstrates tangible value
181
- Difficulty: Medium-High (needs development)
182
-
183
- **Challenges (5-day, 7-day, etc.)**
184
- Best for: Community building, transformation offers, coaching
185
- Examples: "5-Day List Building Challenge", "7-Day Productivity Sprint"
186
- Why it works: Creates engagement, builds habit, demonstrates results
187
- Difficulty: Medium (needs email sequence, possibly community)
188
-
189
- **Video Series/Mini-Courses**
190
- Best for: Demonstrating teaching style, complex topics, high-ticket offers
191
- Examples: "3-Part Video Training", "Free Masterclass"
192
- Why it works: Builds relationship, showcases expertise deeply
193
- Difficulty: Medium (needs video production)
194
-
195
- **Free Audits/Assessments**
196
- Best for: Services, agencies, consultants
197
- Examples: "Free Website Audit", "Marketing Assessment"
198
- Why it works: Reveals problems you solve, demonstrates expertise
199
- Difficulty: Medium (needs time investment per lead)
200
-
201
- **Swipe Files/Resource Lists**
202
- Best for: Creative industries, marketing, copywriting
203
- Examples: "50 High-Converting Headlines", "The Ultimate Tool Stack"
204
- Why it works: Massive perceived value, immediately useful
205
- Difficulty: Low
206
-
207
- ---
208
-
209
- ## The hook generators
210
-
211
- Every lead magnet needs a hook—the reason someone would want it badly enough to give their email.
212
-
213
- ### Hook Type 1: The Shortcut
214
-
215
- "Get the [outcome] without [usual pain/time/effort]"
216
-
217
- > "The 5-Minute Morning Routine That Replaced My 2-Hour Gym Sessions"
218
-
219
- ### Hook Type 2: The Secret
220
-
221
- "The [hidden thing] that [impressive result]"
222
-
223
- > "The Pricing Secret That Doubled My Agency's Revenue"
224
-
225
- ### Hook Type 3: The System
226
-
227
- "The [named method] for [specific outcome]"
228
-
229
- > "The PASTOR Framework: Write Sales Pages in 30 Minutes"
230
-
231
- ### Hook Type 4: The Specific Number
232
-
233
- "[Number] [things] to [outcome]"
234
-
235
- > "7 Email Subject Lines That Get 40%+ Open Rates"
236
-
237
- ### Hook Type 5: The Assessment
238
-
239
- "Discover your [type/score/level]"
240
-
241
- > "What's Your Entrepreneur Personality Type? Take the 2-Minute Quiz"
242
-
243
- ### Hook Type 6: The Transformation
244
-
245
- "How to go from [painful current state] to [desired outcome]"
246
-
247
- > "From Stuck at $5k/month to Consistent $20k Months: The Roadmap"
248
-
249
- ### Hook Type 7: The Case Study
250
-
251
- "How [specific person/company] achieved [specific result]"
252
-
253
- > "How Sarah Built a 10,000-Person Email List in 90 Days (And You Can Too)"
254
-
255
- ---
256
-
257
- ## Output format
258
-
259
- When generating lead magnet concepts, deliver this:
260
-
261
- ### Lead Magnet Options for [Product/Offer]
262
-
263
- **Concept 1: [Name]**
264
-
265
- - The concept: [One sentence description]
266
- - Format: [Quiz/PDF/Calculator/Challenge/etc.]
267
- - The hook: "[The headline/promise]"
268
- - The bridge: [How this leads to the paid offer]
269
- - Implementation: [Difficulty + what's needed]
270
-
271
- **Concept 2: [Name]**
272
-
273
- - The concept: [One sentence description]
274
- - Format: [Quiz/PDF/Calculator/Challenge/etc.]
275
- - The hook: "[The headline/promise]"
276
- - The bridge: [How this leads to the paid offer]
277
- - Implementation: [Difficulty + what's needed]
278
-
279
- [Continue for 3-5 total concepts]
280
-
281
- **Recommended starting point:** [Which concept to test first and why]
282
-
283
- ---
284
-
285
- ## Example: Lead magnets for a copywriting course
286
-
287
- ### Context
288
-
289
- - Product: $997 copywriting course for freelancers
290
- - Transformation: Go from struggling writer to $10k+/month copywriter
291
- - Audience: Aspiring or early-stage freelance copywriters
292
- - Business type: Info product
293
-
294
- ### Lead Magnet Options
295
-
296
- **Concept 1: The Headline Swipe File**
297
-
298
- - The concept: Collection of 100+ proven headlines organized by type with analysis of why each works
299
- - Format: PDF swipe file
300
- - The hook: "100 Proven Headlines That Generated Millions (Steal Them)"
301
- - The bridge: Headlines are the first skill taught in the course; demonstrates the "why behind what works" teaching style
302
- - Implementation: Low difficulty; compile and design
303
-
304
- **Concept 2: The Copywriter Income Quiz**
305
-
306
- - The concept: 10-question assessment that diagnoses what's holding them back from higher income
307
- - Format: Interactive quiz
308
- - The hook: "Why Aren't You Making $10k/Month as a Copywriter? Take the 2-Minute Quiz"
309
- - The bridge: Quiz results reveal specific gaps the course addresses; segmentation enables personalized follow-up
310
- - Implementation: Medium difficulty; needs quiz tool (Typeform, ScoreApp)
311
-
312
- **Concept 3: The First Client Framework**
313
-
314
- - The concept: Step-by-step PDF showing exactly how to land the first (or next) $1,000 client
315
- - Format: PDF framework
316
- - The hook: "The 5-Step Framework to Land Your First $1,000 Client This Week"
317
- - The bridge: Getting clients is a key module; this is the "quick start" version that proves the methodology
318
- - Implementation: Low difficulty; write and design
319
-
320
- **Concept 4: The 5-Day Copy Challenge**
321
-
322
- - The concept: Daily email challenge where they write one piece of copy each day with feedback
323
- - Format: Email challenge
324
- - The hook: "5 Days to Better Copy: A Free Challenge for Aspiring Copywriters"
325
- - The bridge: Challenge demonstrates teaching style, builds relationship, ends with course offer
326
- - Implementation: Medium difficulty; needs 5 emails + daily prompts
327
-
328
- **Concept 5: The Pricing Calculator**
329
-
330
- - The concept: Tool that helps them calculate what to charge based on project type, experience, and market
331
- - Format: Interactive calculator/spreadsheet
332
- - The hook: "Stop Undercharging: The Copywriter Pricing Calculator"
333
- - The bridge: Pricing is a major pain point; calculator demonstrates expertise on business side of copywriting
334
- - Implementation: Medium difficulty; needs spreadsheet or simple tool
335
-
336
- **Recommended starting point:** Concept 1 (Headline Swipe File) for fastest implementation with high perceived value, or Concept 2 (Income Quiz) if segmentation and personalized follow-up is a priority.
337
-
338
- ---
339
-
340
- ## How this skill gets invoked
341
-
342
- This skill activates when:
343
-
344
- - User asks "what lead magnet should I create for X"
345
- - User asks "how do I build my email list"
346
- - User asks for "top of funnel ideas" or "freebie ideas"
347
- - User asks "what should I give away for free"
348
- - User needs to grow their audience before launching
349
- - Landing page skill needs a lead magnet offer to convert to
350
- - Email sequence skill needs a lead magnet to deliver
351
-
352
- When another skill needs a lead magnet, this skill can provide the concept that informs downstream work.
353
-
354
- ---
355
-
356
- ## What this skill is NOT
357
-
358
- This skill generates lead magnet CONCEPTS. It does NOT:
359
-
360
- - Write the actual lead magnet content (that's separate work)
361
- - Build the landing page (that's landing-page skill)
362
- - Write the email sequence (that's email-sequence skill)
363
- - Design the visual assets (that's design work)
364
-
365
- The output is strategic direction on WHAT to create, not the creation itself.
366
-
367
- ---
368
-
369
- ## The test
370
-
371
- Before delivering concepts, verify each one:
372
-
373
- 1. **Is it specific?** Vague lead magnets (like "Marketing Tips") fail. Specific ones convert.
374
-
375
- 2. **Does it solve one problem completely?** Not a teaser—a genuine quick win.
376
-
377
- 3. **Is the bridge obvious?** Can you see how consuming this leads to wanting the paid offer?
378
-
379
- 4. **Would the target audience actually want this?** Not "should want"—ACTUALLY want, right now.
380
-
381
- 5. **Is it feasible to create?** Match implementation difficulty to available resources.
382
-
383
- ---
384
-
385
- ## References
386
-
387
- For deeper frameworks, see the `references/` folder:
388
-
389
- - `format-examples.md` — Best-in-class examples by format type
390
- - `info-product-magnets.md` — Russell Brunson, Amy Porterfield, and info product approaches
391
- - `saas-magnets.md` — HubSpot, Ahrefs, and SaaS-specific patterns
392
- - `services-magnets.md` — Agency and consulting lead magnet strategies
393
- - `psychology.md` — The psychology behind why lead magnets convert
1
+ ---
2
+ id: "lead-magnet"
3
+ title: "Lead Magnet Ideation"
4
+ category: "marketing"
5
+ tags: ["lead magnet ideation", "the core job", "the lead magnet framework", "the hook generators", "output format", "how this skill gets invoked", "what this skill is not", "the test", "references"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/lead-magnet"
9
+ ---
10
+
11
+ ---
12
+ name: lead-magnet
13
+ description: 'Generate compelling lead magnet concepts that build lists and convert to paid offers. Use when someone needs top-of-funnel ideas, wants to grow their email list, or asks what should I give away for free. Triggers on: lead magnet ideas for X, how do I build my list, what freebie should I create, top of funnel for X, opt-in ideas, grow my email list. Outputs 3-5 lead magnet concepts with hooks, formats, and clear bridges to the paid offer.'
14
+ ---
15
+
16
+ # Lead Magnet Ideation
17
+
18
+ The best lead magnets aren't about what you want to give away. They're about what your prospect desperately wants to consume—and how that consumption naturally leads them toward your paid offer.
19
+
20
+ This skill generates lead magnet concepts that actually convert.
21
+
22
+ ---
23
+
24
+ ## The core job
25
+
26
+ When someone asks for lead magnet ideas, the goal is to surface **multiple compelling concepts** they can choose from—each with a clear hook, format, and bridge to their paid offer.
27
+
28
+ Every business has several valid lead magnet approaches. The question is which one best matches their audience, business model, and offer.
29
+
30
+ Output format: **3-5 distinct lead magnet concepts**, each with:
31
+
32
+ - The concept (what it is, in one sentence)
33
+ - The format (quiz, PDF, calculator, challenge, template, etc.)
34
+ - The hook (why someone would want this badly enough to give their email)
35
+ - The bridge (how it naturally leads to the paid offer)
36
+ - Implementation notes (difficulty level, resources needed)
37
+
38
+ ---
39
+
40
+ ## Before generating: Understand the context
41
+
42
+ ### Step 1: Identify the business type
43
+
44
+ Different business types have different optimal lead magnet formats:
45
+
46
+ **Info Products (courses, memberships, coaching):**
47
+
48
+ - Quizzes and assessments work exceptionally well
49
+ - Challenges (5-day, 7-day) build momentum and community
50
+ - PDF frameworks that solve one specific problem
51
+ - Video series that demonstrate teaching style
52
+ - Free chapters or modules as taste of full product
53
+
54
+ **SaaS (software, tools, apps):**
55
+
56
+ - Free tools or constrained versions of the product
57
+ - ROI calculators that quantify the value
58
+ - Templates that work with the product
59
+ - Checklists and implementation guides
60
+ - Free trials (not technically a "lead magnet" but same function)
61
+
62
+ **Services (agencies, consultants, freelancers):**
63
+
64
+ - Audits that reveal problems the service solves
65
+ - Assessments that diagnose the prospect's situation
66
+ - Case studies that prove capability
67
+ - Strategy sessions or consultations
68
+ - Templates that showcase methodology
69
+
70
+ ### Step 2: Identify what they sell
71
+
72
+ Not the product. The transformation.
73
+
74
+ What does the customer's life look like AFTER? What pain disappears? What capability appears? What status changes?
75
+
76
+ The lead magnet should deliver a MICRO-VERSION of that same transformation.
77
+
78
+ ### Step 3: Identify who they're targeting
79
+
80
+ - What's the prospect's current situation?
81
+ - What have they already tried?
82
+ - What do they believe about the problem?
83
+ - What would make them say "this is exactly what I needed"?
84
+
85
+ ---
86
+
87
+ ## The lead magnet framework
88
+
89
+ ### The Specificity Principle
90
+
91
+ **Narrow beats broad. Every time.**
92
+
93
+ "5-Step Framework to Land Your First 10 Clients in 30 Days (Even If You Hate Networking)" converts dramatically better than "Marketing Guide for Freelancers."
94
+
95
+ Why? Specificity signals:
96
+
97
+ 1. This was made for someone exactly like me
98
+ 2. The creator deeply understands my situation
99
+ 3. This isn't generic advice I could find anywhere
100
+
101
+ When generating concepts, always push toward specificity:
102
+
103
+ - Specific outcome (not "grow your business" but "add $10k MRR")
104
+ - Specific timeframe (not "eventually" but "in 30 days")
105
+ - Specific audience (not "entrepreneurs" but "B2B SaaS founders")
106
+ - Specific method (not "marketing tips" but "The LinkedIn DM Framework")
107
+
108
+ ### The Bridge Principle
109
+
110
+ **The lead magnet must logically connect to the paid offer.**
111
+
112
+ If someone downloads a lead magnet about Instagram growth and you sell SEO services, there's no bridge. You've attracted people interested in the wrong thing.
113
+
114
+ The best lead magnets are "Step 1" of what you sell:
115
+
116
+ - Course on copywriting → Lead magnet: "The Headline Formula" (first skill taught in course)
117
+ - Agency doing SEO audits → Lead magnet: Free mini-audit (demonstrates what full audit reveals)
118
+ - Coach on productivity → Lead magnet: "Morning Routine Builder" (taste of coaching methodology)
119
+
120
+ The bridge should be obvious: "If you liked this free thing, the paid thing is more/deeper/complete."
121
+
122
+ ### The Quick Win Principle
123
+
124
+ **Solve one specific problem completely.**
125
+
126
+ Prospects want immediate, actionable value. A lead magnet that requires weeks of study before generating results feels like homework, not a gift.
127
+
128
+ The best lead magnets deliver a quick win:
129
+
130
+ - A checklist they can complete in 10 minutes that reveals gaps
131
+ - A template they can customize in an hour for their business
132
+ - An assessment that gives them a score and action items immediately
133
+ - A calculator that shows them their specific numbers right now
134
+
135
+ Quick wins create reciprocity. When someone thinks "I couldn't have created this myself," they're primed to value your paid offer.
136
+
137
+ ### The Value Equation
138
+
139
+ Apply Hormozi's value equation to lead magnet concepts:
140
+
141
+ **Value = (Dream Outcome × Perceived Likelihood) / (Time Delay × Effort)**
142
+
143
+ Maximize:
144
+
145
+ - **Dream Outcome:** What's the transformation this lead magnet promises?
146
+ - **Perceived Likelihood:** Why will THIS work when other things haven't?
147
+
148
+ Minimize:
149
+
150
+ - **Time Delay:** How fast do they see results? (Immediate beats weeks)
151
+ - **Effort:** How easy is it to consume and implement? (5-minute checklist beats 50-page guide)
152
+
153
+ ---
154
+
155
+ ## The format selection framework
156
+
157
+ ### When to use each format:
158
+
159
+ **Quizzes/Assessments**
160
+ Best for: Personalization, segmentation, transformation-focused offers
161
+ Examples: "What's Your Marketing Personality?", "Find Your Ideal Client Avatar"
162
+ Why it works: People love learning about themselves; provides segmentation data
163
+ Difficulty: Medium (needs quiz tool, logic branching)
164
+
165
+ **PDF Guides/Frameworks**
166
+ Best for: Establishing authority, comprehensive solutions, complex topics
167
+ Examples: "The Ultimate Guide to X", "7-Step Framework for Y"
168
+ Why it works: Perceived high value, easy to create, works across all business types
169
+ Difficulty: Low (just need content and design)
170
+
171
+ **Checklists/Templates**
172
+ Best for: Quick wins, immediate utility, showcasing methodology
173
+ Examples: "Launch Day Checklist", "Content Calendar Template"
174
+ Why it works: Immediate actionability, low friction to consume
175
+ Difficulty: Low
176
+
177
+ **Calculators/Tools**
178
+ Best for: SaaS, financial services, ROI-focused offers
179
+ Examples: "ROI Calculator", "Pricing Calculator", "Savings Estimator"
180
+ Why it works: Personalized output, demonstrates tangible value
181
+ Difficulty: Medium-High (needs development)
182
+
183
+ **Challenges (5-day, 7-day, etc.)**
184
+ Best for: Community building, transformation offers, coaching
185
+ Examples: "5-Day List Building Challenge", "7-Day Productivity Sprint"
186
+ Why it works: Creates engagement, builds habit, demonstrates results
187
+ Difficulty: Medium (needs email sequence, possibly community)
188
+
189
+ **Video Series/Mini-Courses**
190
+ Best for: Demonstrating teaching style, complex topics, high-ticket offers
191
+ Examples: "3-Part Video Training", "Free Masterclass"
192
+ Why it works: Builds relationship, showcases expertise deeply
193
+ Difficulty: Medium (needs video production)
194
+
195
+ **Free Audits/Assessments**
196
+ Best for: Services, agencies, consultants
197
+ Examples: "Free Website Audit", "Marketing Assessment"
198
+ Why it works: Reveals problems you solve, demonstrates expertise
199
+ Difficulty: Medium (needs time investment per lead)
200
+
201
+ **Swipe Files/Resource Lists**
202
+ Best for: Creative industries, marketing, copywriting
203
+ Examples: "50 High-Converting Headlines", "The Ultimate Tool Stack"
204
+ Why it works: Massive perceived value, immediately useful
205
+ Difficulty: Low
206
+
207
+ ---
208
+
209
+ ## The hook generators
210
+
211
+ Every lead magnet needs a hook—the reason someone would want it badly enough to give their email.
212
+
213
+ ### Hook Type 1: The Shortcut
214
+
215
+ "Get the [outcome] without [usual pain/time/effort]"
216
+
217
+ > "The 5-Minute Morning Routine That Replaced My 2-Hour Gym Sessions"
218
+
219
+ ### Hook Type 2: The Secret
220
+
221
+ "The [hidden thing] that [impressive result]"
222
+
223
+ > "The Pricing Secret That Doubled My Agency's Revenue"
224
+
225
+ ### Hook Type 3: The System
226
+
227
+ "The [named method] for [specific outcome]"
228
+
229
+ > "The PASTOR Framework: Write Sales Pages in 30 Minutes"
230
+
231
+ ### Hook Type 4: The Specific Number
232
+
233
+ "[Number] [things] to [outcome]"
234
+
235
+ > "7 Email Subject Lines That Get 40%+ Open Rates"
236
+
237
+ ### Hook Type 5: The Assessment
238
+
239
+ "Discover your [type/score/level]"
240
+
241
+ > "What's Your Entrepreneur Personality Type? Take the 2-Minute Quiz"
242
+
243
+ ### Hook Type 6: The Transformation
244
+
245
+ "How to go from [painful current state] to [desired outcome]"
246
+
247
+ > "From Stuck at $5k/month to Consistent $20k Months: The Roadmap"
248
+
249
+ ### Hook Type 7: The Case Study
250
+
251
+ "How [specific person/company] achieved [specific result]"
252
+
253
+ > "How Sarah Built a 10,000-Person Email List in 90 Days (And You Can Too)"
254
+
255
+ ---
256
+
257
+ ## Output format
258
+
259
+ When generating lead magnet concepts, deliver this:
260
+
261
+ ### Lead Magnet Options for [Product/Offer]
262
+
263
+ **Concept 1: [Name]**
264
+
265
+ - The concept: [One sentence description]
266
+ - Format: [Quiz/PDF/Calculator/Challenge/etc.]
267
+ - The hook: "[The headline/promise]"
268
+ - The bridge: [How this leads to the paid offer]
269
+ - Implementation: [Difficulty + what's needed]
270
+
271
+ **Concept 2: [Name]**
272
+
273
+ - The concept: [One sentence description]
274
+ - Format: [Quiz/PDF/Calculator/Challenge/etc.]
275
+ - The hook: "[The headline/promise]"
276
+ - The bridge: [How this leads to the paid offer]
277
+ - Implementation: [Difficulty + what's needed]
278
+
279
+ [Continue for 3-5 total concepts]
280
+
281
+ **Recommended starting point:** [Which concept to test first and why]
282
+
283
+ ---
284
+
285
+ ## Example: Lead magnets for a copywriting course
286
+
287
+ ### Context
288
+
289
+ - Product: $997 copywriting course for freelancers
290
+ - Transformation: Go from struggling writer to $10k+/month copywriter
291
+ - Audience: Aspiring or early-stage freelance copywriters
292
+ - Business type: Info product
293
+
294
+ ### Lead Magnet Options
295
+
296
+ **Concept 1: The Headline Swipe File**
297
+
298
+ - The concept: Collection of 100+ proven headlines organized by type with analysis of why each works
299
+ - Format: PDF swipe file
300
+ - The hook: "100 Proven Headlines That Generated Millions (Steal Them)"
301
+ - The bridge: Headlines are the first skill taught in the course; demonstrates the "why behind what works" teaching style
302
+ - Implementation: Low difficulty; compile and design
303
+
304
+ **Concept 2: The Copywriter Income Quiz**
305
+
306
+ - The concept: 10-question assessment that diagnoses what's holding them back from higher income
307
+ - Format: Interactive quiz
308
+ - The hook: "Why Aren't You Making $10k/Month as a Copywriter? Take the 2-Minute Quiz"
309
+ - The bridge: Quiz results reveal specific gaps the course addresses; segmentation enables personalized follow-up
310
+ - Implementation: Medium difficulty; needs quiz tool (Typeform, ScoreApp)
311
+
312
+ **Concept 3: The First Client Framework**
313
+
314
+ - The concept: Step-by-step PDF showing exactly how to land the first (or next) $1,000 client
315
+ - Format: PDF framework
316
+ - The hook: "The 5-Step Framework to Land Your First $1,000 Client This Week"
317
+ - The bridge: Getting clients is a key module; this is the "quick start" version that proves the methodology
318
+ - Implementation: Low difficulty; write and design
319
+
320
+ **Concept 4: The 5-Day Copy Challenge**
321
+
322
+ - The concept: Daily email challenge where they write one piece of copy each day with feedback
323
+ - Format: Email challenge
324
+ - The hook: "5 Days to Better Copy: A Free Challenge for Aspiring Copywriters"
325
+ - The bridge: Challenge demonstrates teaching style, builds relationship, ends with course offer
326
+ - Implementation: Medium difficulty; needs 5 emails + daily prompts
327
+
328
+ **Concept 5: The Pricing Calculator**
329
+
330
+ - The concept: Tool that helps them calculate what to charge based on project type, experience, and market
331
+ - Format: Interactive calculator/spreadsheet
332
+ - The hook: "Stop Undercharging: The Copywriter Pricing Calculator"
333
+ - The bridge: Pricing is a major pain point; calculator demonstrates expertise on business side of copywriting
334
+ - Implementation: Medium difficulty; needs spreadsheet or simple tool
335
+
336
+ **Recommended starting point:** Concept 1 (Headline Swipe File) for fastest implementation with high perceived value, or Concept 2 (Income Quiz) if segmentation and personalized follow-up is a priority.
337
+
338
+ ---
339
+
340
+ ## How this skill gets invoked
341
+
342
+ This skill activates when:
343
+
344
+ - User asks "what lead magnet should I create for X"
345
+ - User asks "how do I build my email list"
346
+ - User asks for "top of funnel ideas" or "freebie ideas"
347
+ - User asks "what should I give away for free"
348
+ - User needs to grow their audience before launching
349
+ - Landing page skill needs a lead magnet offer to convert to
350
+ - Email sequence skill needs a lead magnet to deliver
351
+
352
+ When another skill needs a lead magnet, this skill can provide the concept that informs downstream work.
353
+
354
+ ---
355
+
356
+ ## What this skill is NOT
357
+
358
+ This skill generates lead magnet CONCEPTS. It does NOT:
359
+
360
+ - Write the actual lead magnet content (that's separate work)
361
+ - Build the landing page (that's landing-page skill)
362
+ - Write the email sequence (that's email-sequence skill)
363
+ - Design the visual assets (that's design work)
364
+
365
+ The output is strategic direction on WHAT to create, not the creation itself.
366
+
367
+ ---
368
+
369
+ ## The test
370
+
371
+ Before delivering concepts, verify each one:
372
+
373
+ 1. **Is it specific?** Vague lead magnets (like "Marketing Tips") fail. Specific ones convert.
374
+
375
+ 2. **Does it solve one problem completely?** Not a teaser—a genuine quick win.
376
+
377
+ 3. **Is the bridge obvious?** Can you see how consuming this leads to wanting the paid offer?
378
+
379
+ 4. **Would the target audience actually want this?** Not "should want"—ACTUALLY want, right now.
380
+
381
+ 5. **Is it feasible to create?** Match implementation difficulty to available resources.
382
+
383
+ ---
384
+
385
+ ## References
386
+
387
+ For deeper frameworks, see the `references/` folder:
388
+
389
+ - `format-examples.md` — Best-in-class examples by format type
390
+ - `info-product-magnets.md` — Russell Brunson, Amy Porterfield, and info product approaches
391
+ - `saas-magnets.md` — HubSpot, Ahrefs, and SaaS-specific patterns
392
+ - `services-magnets.md` — Agency and consulting lead magnet strategies
393
+ - `psychology.md` — The psychology behind why lead magnets convert