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,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
@@ -0,0 +1,106 @@
1
+ ---
2
+ id: "learning-output-style"
3
+ title: "Learning Style Plugin"
4
+ category: "knowledge"
5
+ tags: ["learning style plugin", "what it does", "how it works", "example interaction", "educational insights", "usage", "migration from output styles", "managing changes", "philosophy"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/learning-output-style"
9
+ ---
10
+
11
+ # Learning Style Plugin
12
+
13
+ This plugin combines the unshipped Learning output style with explanatory functionality as a SessionStart hook.
14
+
15
+ **Note:** This plugin differs from the original unshipped Learning output style by also incorporating all functionality from the [explanatory-output-style plugin](https://github.com/anthropics/claude-code/tree/main/plugins/explanatory-output-style), providing both interactive learning and educational insights.
16
+
17
+ WARNING: Do not install this plugin unless you are fine with incurring the token cost of this plugin's additional instructions and the interactive nature of learning mode.
18
+
19
+ ## What it does
20
+
21
+ When enabled, this plugin automatically adds instructions at the start of each session that encourage Claude to:
22
+
23
+ 1. **Learning Mode:** Engage you in active learning by requesting meaningful code contributions at decision points
24
+ 2. **Explanatory Mode:** Provide educational insights about implementation choices and codebase patterns
25
+
26
+ Instead of implementing everything automatically, Claude will:
27
+
28
+ 1. Identify opportunities where you can write 5-10 lines of meaningful code
29
+ 2. Focus on business logic and design choices where your input truly matters
30
+ 3. Prepare the context and location for your contribution
31
+ 4. Explain trade-offs and guide your implementation
32
+ 5. Provide educational insights before and after writing code
33
+
34
+ ## How it works
35
+
36
+ The plugin uses a SessionStart hook to inject additional context into every session. This context instructs Claude to adopt an interactive teaching approach where you actively participate in writing key parts of the code.
37
+
38
+ ## When Claude requests contributions
39
+
40
+ Claude will ask you to write code for:
41
+
42
+ - Business logic with multiple valid approaches
43
+ - Error handling strategies
44
+ - Algorithm implementation choices
45
+ - Data structure decisions
46
+ - User experience decisions
47
+ - Design patterns and architecture choices
48
+
49
+ ## When Claude won't request contributions
50
+
51
+ Claude will implement directly:
52
+
53
+ - Boilerplate or repetitive code
54
+ - Obvious implementations with no meaningful choices
55
+ - Configuration or setup code
56
+ - Simple CRUD operations
57
+
58
+ ## Example interaction
59
+
60
+ **Claude:** I've set up the authentication middleware. The session timeout behavior is a security vs. UX trade-off - should sessions auto-extend on activity, or have a hard timeout?
61
+
62
+ In `auth/middleware.ts`, implement the `handleSessionTimeout()` function to define the timeout behavior.
63
+
64
+ Consider: auto-extending improves UX but may leave sessions open longer; hard timeouts are more secure but might frustrate active users.
65
+
66
+ **You:** [Write 5-10 lines implementing your preferred approach]
67
+
68
+ ## Educational insights
69
+
70
+ In addition to interactive learning, Claude will provide educational insights about implementation choices using this format:
71
+
72
+ ```
73
+ `★ Insight ─────────────────────────────────────`
74
+ [2-3 key educational points about the codebase or implementation]
75
+ `─────────────────────────────────────────────────`
76
+ ```
77
+
78
+ These insights focus on:
79
+
80
+ - Specific implementation choices for your codebase
81
+ - Patterns and conventions in your code
82
+ - Trade-offs and design decisions
83
+ - Codebase-specific details rather than general programming concepts
84
+
85
+ ## Usage
86
+
87
+ Once installed, the plugin activates automatically at the start of every session. No additional configuration is needed.
88
+
89
+ ## Migration from Output Styles
90
+
91
+ This plugin combines the unshipped "Learning" output style with the deprecated "Explanatory" output style. It provides an interactive learning experience where you actively contribute code at meaningful decision points, while also receiving educational insights about implementation choices.
92
+
93
+ If you previously used the explanatory-output-style plugin, this learning plugin includes all of that functionality plus interactive learning features.
94
+
95
+ This SessionStart hook pattern is roughly equivalent to CLAUDE.md, but it is more flexible and allows for distribution through plugins.
96
+
97
+ ## Managing changes
98
+
99
+ - Disable the plugin - keep the code installed on your device
100
+ - Uninstall the plugin - remove the code from your device
101
+ - Update the plugin - create a local copy of this plugin to personalize it
102
+ - Hint: Ask Claude to read https://docs.claude.com/en/docs/claude-code/plugins.md and set it up for you!
103
+
104
+ ## Philosophy
105
+
106
+ Learning by doing is more effective than passive observation. This plugin transforms your interaction with Claude from "watch and learn" to "build and understand," ensuring you develop practical skills through hands-on coding of meaningful logic.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: "linear"
3
+ title: "linear"
4
+ category: "knowledge"
5
+ tags: ["linear"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/linear"
9
+ ---
10
+
11
+ # linear
12
+
13
+ Skill directory: linear
@@ -0,0 +1,47 @@
1
+ ---
2
+ id: "lua-lsp"
3
+ title: "lua-lsp"
4
+ category: "other"
5
+ tags: ["lua-lsp", "supported extensions", "installation", "ubuntu/debian (via snap)", "arch linux", "fedora", "more information"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/lua-lsp"
9
+ ---
10
+
11
+ # lua-lsp
12
+
13
+ Lua language server for Claude Code, providing code intelligence and diagnostics.
14
+
15
+ ## Supported Extensions
16
+
17
+ `.lua`
18
+
19
+ ## Installation
20
+
21
+ ### Via Homebrew (macOS)
22
+
23
+ ```bash
24
+ brew install lua-language-server
25
+ ```
26
+
27
+ ### Via package manager (Linux)
28
+
29
+ ```bash
30
+ # Ubuntu/Debian (via snap)
31
+ sudo snap install lua-language-server --classic
32
+
33
+ # Arch Linux
34
+ sudo pacman -S lua-language-server
35
+
36
+ # Fedora
37
+ sudo dnf install lua-language-server
38
+ ```
39
+
40
+ ### Manual Installation
41
+
42
+ Download pre-built binaries from the [releases page](https://github.com/LuaLS/lua-language-server/releases).
43
+
44
+ ## More Information
45
+
46
+ - [Lua Language Server GitHub](https://github.com/LuaLS/lua-language-server)
47
+ - [Documentation](https://luals.github.io/)