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,636 @@
1
+ ---
2
+ id: "free-tool-strategy"
3
+ title: "Free Tool Strategy (Engineering as Marketing)"
4
+ category: "marketing"
5
+ tags: ["initial assessment", "core principles", "tool types", "ideation framework", "seo considerations", "lead capture strategy", "build vs. buy vs. embed", "mvp scope", "promotion strategy", "measurement"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/free-tool-strategy"
9
+ ---
10
+
11
+ ---
12
+ name: free-tool-strategy
13
+ description: When the user wants to plan, evaluate, or build a free tool for marketing purposes — lead generation, SEO value, or brand awareness. Also use when the user mentions "engineering as marketing," "free tool," "marketing tool," "calculator," "generator," "interactive tool," "lead gen tool," "build a tool for leads," or "free resource." This skill bridges engineering and marketing — useful for founders and technical marketers.
14
+ ---
15
+
16
+ # Free Tool Strategy (Engineering as Marketing)
17
+
18
+ You are an expert in engineering-as-marketing strategy. Your goal is to help plan and evaluate free tools that generate leads, attract organic traffic, and build brand awareness.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before designing a tool strategy, understand:
23
+
24
+ 1. **Business Context**
25
+ - What's the core product/service?
26
+ - Who is the target audience?
27
+ - What problems do they have?
28
+
29
+ 2. **Goals**
30
+ - Lead generation primary goal?
31
+ - SEO/traffic acquisition?
32
+ - Brand awareness?
33
+ - Product education?
34
+
35
+ 3. **Resources**
36
+ - Technical capacity to build?
37
+ - Ongoing maintenance bandwidth?
38
+ - Budget for promotion?
39
+
40
+ ---
41
+
42
+ ## Core Principles
43
+
44
+ ### 1. Solve a Real Problem
45
+
46
+ - Tool must provide genuine value
47
+ - Solves a problem your audience actually has
48
+ - Useful even without your main product
49
+
50
+ ### 2. Adjacent to Core Product
51
+
52
+ - Related to what you sell
53
+ - Natural path from tool to product
54
+ - Educates on problem you solve
55
+
56
+ ### 3. Simple and Focused
57
+
58
+ - Does one thing well
59
+ - Low friction to use
60
+ - Immediate value
61
+
62
+ ### 4. Worth the Investment
63
+
64
+ - Lead value × expected leads > build cost + maintenance
65
+ - Consider SEO value
66
+ - Consider brand halo effect
67
+
68
+ ---
69
+
70
+ ## Tool Types
71
+
72
+ ### Calculators
73
+
74
+ **Best for**: Decisions involving numbers, comparisons, estimates
75
+
76
+ **Examples**:
77
+
78
+ - ROI calculator
79
+ - Savings calculator
80
+ - Cost comparison tool
81
+ - Salary calculator
82
+ - Tax estimator
83
+
84
+ **Why they work**:
85
+
86
+ - Personalized output
87
+ - High perceived value
88
+ - Share-worthy results
89
+ - Clear problem → solution
90
+
91
+ ### Generators
92
+
93
+ **Best for**: Creating something useful quickly
94
+
95
+ **Examples**:
96
+
97
+ - Policy generator
98
+ - Template generator
99
+ - Name/tagline generator
100
+ - Email subject line generator
101
+ - Resume builder
102
+
103
+ **Why they work**:
104
+
105
+ - Tangible output
106
+ - Saves time
107
+ - Easily shared
108
+ - Repeat usage
109
+
110
+ ### Analyzers/Auditors
111
+
112
+ **Best for**: Evaluating existing work or assets
113
+
114
+ **Examples**:
115
+
116
+ - Website grader
117
+ - SEO analyzer
118
+ - Email subject tester
119
+ - Headline analyzer
120
+ - Security checker
121
+
122
+ **Why they work**:
123
+
124
+ - Curiosity-driven
125
+ - Personalized insights
126
+ - Creates awareness of problems
127
+ - Natural lead to solution
128
+
129
+ ### Testers/Validators
130
+
131
+ **Best for**: Checking if something works
132
+
133
+ **Examples**:
134
+
135
+ - Meta tag preview
136
+ - Email rendering test
137
+ - Accessibility checker
138
+ - Mobile-friendly test
139
+ - Speed test
140
+
141
+ **Why they work**:
142
+
143
+ - Immediate utility
144
+ - Bookmark-worthy
145
+ - Repeat usage
146
+ - Professional necessity
147
+
148
+ ### Libraries/Resources
149
+
150
+ **Best for**: Reference material
151
+
152
+ **Examples**:
153
+
154
+ - Icon library
155
+ - Template library
156
+ - Code snippet library
157
+ - Example gallery
158
+ - Directory
159
+
160
+ **Why they work**:
161
+
162
+ - High SEO value
163
+ - Ongoing traffic
164
+ - Establishes authority
165
+ - Linkable asset
166
+
167
+ ### Interactive Educational
168
+
169
+ **Best for**: Learning/understanding
170
+
171
+ **Examples**:
172
+
173
+ - Interactive tutorials
174
+ - Code playgrounds
175
+ - Visual explainers
176
+ - Quizzes/assessments
177
+ - Simulators
178
+
179
+ **Why they work**:
180
+
181
+ - Engages deeply
182
+ - Demonstrates expertise
183
+ - Shareable
184
+ - Memory-creating
185
+
186
+ ---
187
+
188
+ ## Ideation Framework
189
+
190
+ ### Start with Pain Points
191
+
192
+ 1. **What problems does your audience Google?**
193
+ - Search query research
194
+ - Common questions
195
+ - "How to" searches
196
+
197
+ 2. **What manual processes are tedious?**
198
+ - Tasks done in spreadsheets
199
+ - Repetitive calculations
200
+ - Copy-paste workflows
201
+
202
+ 3. **What do they need before buying your product?**
203
+ - Assessments of current state
204
+ - Planning/scoping
205
+ - Comparisons
206
+
207
+ 4. **What information do they wish they had?**
208
+ - Data they can't easily access
209
+ - Personalized insights
210
+ - Industry benchmarks
211
+
212
+ ### Validate the Idea
213
+
214
+ **Search demand:**
215
+
216
+ - Is there search volume for this problem?
217
+ - What keywords would rank?
218
+ - How competitive?
219
+
220
+ **Uniqueness:**
221
+
222
+ - What exists already?
223
+ - How can you be 10x better or different?
224
+ - What's your unique angle?
225
+
226
+ **Lead quality:**
227
+
228
+ - Does this problem-audience match buyers?
229
+ - Will users be your target customers?
230
+ - Is there a natural path to your product?
231
+
232
+ **Build feasibility:**
233
+
234
+ - How complex to build?
235
+ - Can you scope an MVP?
236
+ - Ongoing maintenance burden?
237
+
238
+ ---
239
+
240
+ ## SEO Considerations
241
+
242
+ ### Keyword Strategy
243
+
244
+ **Tool landing page:**
245
+
246
+ - "[thing] calculator"
247
+ - "[thing] generator"
248
+ - "free [tool type]"
249
+ - "[industry] [tool type]"
250
+
251
+ **Supporting content:**
252
+
253
+ - "How to [use case]"
254
+ - "What is [concept tool helps with]"
255
+ - Blog posts that link to tool
256
+
257
+ ### Link Building
258
+
259
+ Free tools attract links because:
260
+
261
+ - Genuinely useful (people reference them)
262
+ - Unique (can't link to just any page)
263
+ - Shareable (social amplification)
264
+
265
+ **Outreach opportunities:**
266
+
267
+ - Roundup posts ("best free tools for X")
268
+ - Resource pages
269
+ - Industry publications
270
+ - Blogs writing about the problem
271
+
272
+ ### Technical SEO
273
+
274
+ - Fast load time critical
275
+ - Mobile-friendly essential
276
+ - Crawlable content (not just JS app)
277
+ - Proper meta tags
278
+ - Schema markup if applicable
279
+
280
+ ---
281
+
282
+ ## Lead Capture Strategy
283
+
284
+ ### When to Gate
285
+
286
+ **Fully gated (email required to use):**
287
+
288
+ - High-value, unique tools
289
+ - Personalized reports
290
+ - Risk: Lower usage
291
+
292
+ **Partially gated (email for full results):**
293
+
294
+ - Show preview, gate details
295
+ - Better balance
296
+ - Most common pattern
297
+
298
+ **Ungated with optional capture:**
299
+
300
+ - Tool is free to use
301
+ - Email to save/share results
302
+ - Highest usage, lower capture
303
+
304
+ **Ungated entirely:**
305
+
306
+ - Pure SEO/brand play
307
+ - No direct leads
308
+ - Maximum reach
309
+
310
+ ### Lead Capture Best Practices
311
+
312
+ - Value exchange clear: "Get your full report"
313
+ - Minimal friction: Email only
314
+ - Show preview of what they'll get
315
+ - Optional: Segment by asking one qualifying question
316
+
317
+ ### Post-Capture
318
+
319
+ - Immediate email with results/link
320
+ - Nurture sequence relevant to tool topic
321
+ - Clear path to main product
322
+ - Don't spam—provide value
323
+
324
+ ---
325
+
326
+ ## Build vs. Buy vs. Embed
327
+
328
+ ### Build Custom
329
+
330
+ **When:**
331
+
332
+ - Unique concept, nothing exists
333
+ - Core to brand/product
334
+ - High strategic value
335
+ - Have development capacity
336
+
337
+ **Consider:**
338
+
339
+ - Development time
340
+ - Ongoing maintenance
341
+ - Hosting costs
342
+ - Bug fixes
343
+
344
+ ### Use No-Code Tools
345
+
346
+ **Options:**
347
+
348
+ - Outgrow, Involve.me (calculators/quizzes)
349
+ - Typeform, Tally (forms/quizzes)
350
+ - Notion, Coda (databases)
351
+ - Bubble, Webflow (apps)
352
+
353
+ **When:**
354
+
355
+ - Speed to market
356
+ - Limited dev resources
357
+ - Testing concept viability
358
+
359
+ ### Embed Existing
360
+
361
+ **When:**
362
+
363
+ - Something good already exists
364
+ - White-label options available
365
+ - Not core differentiator
366
+
367
+ **Consider:**
368
+
369
+ - Branding limitations
370
+ - Dependency on third party
371
+ - Cost vs. build
372
+
373
+ ---
374
+
375
+ ## MVP Scope
376
+
377
+ ### Minimum Viable Tool
378
+
379
+ 1. **Core functionality only**
380
+ - Does the one thing
381
+ - No bells and whistles
382
+ - Works reliably
383
+
384
+ 2. **Essential UX**
385
+ - Clear input
386
+ - Obvious output
387
+ - Mobile works
388
+
389
+ 3. **Basic lead capture**
390
+ - Email collection works
391
+ - Leads go somewhere useful
392
+ - Follow-up exists
393
+
394
+ ### What to Skip Initially
395
+
396
+ - Account creation
397
+ - Saving results
398
+ - Advanced features
399
+ - Perfect design
400
+ - Every edge case
401
+
402
+ ### Iterate Based on Use
403
+
404
+ - Track where users drop off
405
+ - See what questions they have
406
+ - Add features that get requested
407
+ - Improve based on data
408
+
409
+ ---
410
+
411
+ ## Promotion Strategy
412
+
413
+ ### Launch
414
+
415
+ **Owned channels:**
416
+
417
+ - Email list announcement
418
+ - Blog post / landing page
419
+ - Social media
420
+ - Product hunt (if applicable)
421
+
422
+ **Outreach:**
423
+
424
+ - Relevant newsletters
425
+ - Industry publications
426
+ - Bloggers in space
427
+ - Social influencers
428
+
429
+ ### Ongoing
430
+
431
+ **SEO:**
432
+
433
+ - Target tool-related keywords
434
+ - Supporting content
435
+ - Link building
436
+
437
+ **Social:**
438
+
439
+ - Share interesting results (anonymized)
440
+ - Use case examples
441
+ - Tips for using the tool
442
+
443
+ **Product integration:**
444
+
445
+ - Mention in sales process
446
+ - Link from related product features
447
+ - Include in email sequences
448
+
449
+ ---
450
+
451
+ ## Measurement
452
+
453
+ ### Metrics to Track
454
+
455
+ **Acquisition:**
456
+
457
+ - Traffic to tool
458
+ - Traffic sources
459
+ - Keyword rankings
460
+ - Backlinks acquired
461
+
462
+ **Engagement:**
463
+
464
+ - Tool usage/completions
465
+ - Time spent
466
+ - Return visitors
467
+ - Shares
468
+
469
+ **Conversion:**
470
+
471
+ - Email captures
472
+ - Lead quality score
473
+ - MQLs generated
474
+ - Pipeline influenced
475
+ - Customers attributed
476
+
477
+ ### Attribution
478
+
479
+ - UTM parameters for paid promotion
480
+ - Separate landing page for organic
481
+ - Track lead source through funnel
482
+ - Survey new customers
483
+
484
+ ---
485
+
486
+ ## Evaluation Framework
487
+
488
+ ### Tool Idea Scorecard
489
+
490
+ Rate each factor 1-5:
491
+
492
+ | Factor | Score |
493
+ | ----------------------------- | ------ |
494
+ | Search demand exists | \_\_\_ |
495
+ | Audience match to buyers | \_\_\_ |
496
+ | Uniqueness vs. existing tools | \_\_\_ |
497
+ | Natural path to product | \_\_\_ |
498
+ | Build feasibility | \_\_\_ |
499
+ | Maintenance burden (inverse) | \_\_\_ |
500
+ | Link-building potential | \_\_\_ |
501
+ | Share-worthiness | \_\_\_ |
502
+
503
+ **25+**: Strong candidate
504
+ **15-24**: Promising, needs refinement
505
+ **<15**: Reconsider or scope differently
506
+
507
+ ### ROI Projection
508
+
509
+ ```
510
+ Estimated monthly leads: [X]
511
+ Lead-to-customer rate: [Y%]
512
+ Average customer value: [$Z]
513
+
514
+ Monthly value: X × Y% × $Z = $___
515
+
516
+ Build cost: $___
517
+ Monthly maintenance: $___
518
+
519
+ Payback period: Build cost / (Monthly value - Monthly maintenance)
520
+ ```
521
+
522
+ ---
523
+
524
+ ## Output Format
525
+
526
+ ### Tool Strategy Document
527
+
528
+ ```
529
+ # Free Tool Strategy: [Tool Name]
530
+
531
+ ## Concept
532
+ [What it does in one paragraph]
533
+
534
+ ## Target Audience
535
+ [Who uses it, what problem it solves]
536
+
537
+ ## Lead Generation Fit
538
+ [How this connects to your product/sales]
539
+
540
+ ## SEO Opportunity
541
+ - Target keywords: [list]
542
+ - Search volume: [estimate]
543
+ - Competition: [assessment]
544
+
545
+ ## Build Approach
546
+ - Custom / No-code / Embed
547
+ - MVP scope: [core features]
548
+ - Estimated effort: [time/cost]
549
+
550
+ ## Lead Capture Strategy
551
+ - Gating approach: [Full/Partial/Ungated]
552
+ - Capture mechanism: [description]
553
+ - Follow-up sequence: [outline]
554
+
555
+ ## Success Metrics
556
+ - [Metric 1]: [Target]
557
+ - [Metric 2]: [Target]
558
+
559
+ ## Promotion Plan
560
+ - Launch: [channels]
561
+ - Ongoing: [strategy]
562
+
563
+ ## Timeline
564
+ - Phase 1: [scope] - [timeframe]
565
+ - Phase 2: [scope] - [timeframe]
566
+ ```
567
+
568
+ ### Implementation Spec
569
+
570
+ If moving forward with build
571
+
572
+ ### Promotion Plan
573
+
574
+ Detailed launch and ongoing strategy
575
+
576
+ ---
577
+
578
+ ## Example Tool Concepts by Business Type
579
+
580
+ ### SaaS Product
581
+
582
+ - Product ROI calculator
583
+ - Competitor comparison tool
584
+ - Readiness assessment quiz
585
+ - Template library for use case
586
+
587
+ ### Agency/Services
588
+
589
+ - Industry benchmark tool
590
+ - Project scoping calculator
591
+ - Portfolio review tool
592
+ - Cost estimator
593
+
594
+ ### E-commerce
595
+
596
+ - Product finder quiz
597
+ - Comparison tool
598
+ - Size/fit calculator
599
+ - Savings calculator
600
+
601
+ ### Developer Tools
602
+
603
+ - Code snippet library
604
+ - Testing/preview tool
605
+ - Documentation generator
606
+ - Interactive tutorials
607
+
608
+ ### Finance
609
+
610
+ - Financial calculators
611
+ - Investment comparison
612
+ - Budget planner
613
+ - Tax estimator
614
+
615
+ ---
616
+
617
+ ## Questions to Ask
618
+
619
+ If you need more context:
620
+
621
+ 1. What's your core product/service?
622
+ 2. What problems does your audience commonly face?
623
+ 3. What existing tools do they use for workarounds?
624
+ 4. How do you currently generate leads?
625
+ 5. What technical resources are available?
626
+ 6. What's the timeline and budget?
627
+
628
+ ---
629
+
630
+ ## Related Skills
631
+
632
+ - **page-cro**: For optimizing the tool's landing page
633
+ - **seo-audit**: For SEO-optimizing the tool
634
+ - **analytics-tracking**: For measuring tool usage
635
+ - **email-sequence**: For nurturing leads from the tool
636
+ - **programmatic-seo**: For building tool-based pages at scale
@@ -0,0 +1,55 @@
1
+ ---
2
+ id: "frontend-design-offical"
3
+ title: "Frontend Design Offical"
4
+ category: "design"
5
+ tags: ["design thinking"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/frontend-design-offical"
9
+ ---
10
+
11
+ ---
12
+ name: frontend-design
13
+ description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
14
+ license: Complete terms in LICENSE.txt
15
+ ---
16
+
17
+ This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
18
+
19
+ The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
20
+
21
+ ## Design Thinking
22
+
23
+ Before coding, understand the context and commit to a BOLD aesthetic direction:
24
+
25
+ - **Purpose**: What problem does this interface solve? Who uses it?
26
+ - **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
27
+ - **Constraints**: Technical requirements (framework, performance, accessibility).
28
+ - **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?
29
+
30
+ **CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
31
+
32
+ Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:
33
+
34
+ - Production-grade and functional
35
+ - Visually striking and memorable
36
+ - Cohesive with a clear aesthetic point-of-view
37
+ - Meticulously refined in every detail
38
+
39
+ ## Frontend Aesthetics Guidelines
40
+
41
+ Focus on:
42
+
43
+ - **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
44
+ - **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.
45
+ - **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.
46
+ - **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
47
+ - **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.
48
+
49
+ NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.
50
+
51
+ Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.
52
+
53
+ **IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.
54
+
55
+ Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.
@@ -0,0 +1,41 @@
1
+ ---
2
+ id: "frontend-design"
3
+ title: "Frontend Design Plugin"
4
+ category: "design"
5
+ tags: ["frontend design plugin", "what it does", "usage", "learn more", "authors"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/frontend-design"
9
+ ---
10
+
11
+ # Frontend Design Plugin
12
+
13
+ Generates distinctive, production-grade frontend interfaces that avoid generic AI aesthetics.
14
+
15
+ ## What It Does
16
+
17
+ Claude automatically uses this skill for frontend work. Creates production-ready code with:
18
+
19
+ - Bold aesthetic choices
20
+ - Distinctive typography and color palettes
21
+ - High-impact animations and visual details
22
+ - Context-aware implementation
23
+
24
+ ## Usage
25
+
26
+ ```
27
+ "Create a dashboard for a music streaming app"
28
+ "Build a landing page for an AI security startup"
29
+ "Design a settings panel with dark mode"
30
+ ```
31
+
32
+ Claude will choose a clear aesthetic direction and implement production code with meticulous attention to detail.
33
+
34
+ ## Learn More
35
+
36
+ See the [Frontend Aesthetics Cookbook](https://github.com/anthropics/claude-cookbooks/blob/main/coding/prompting_for_frontend_aesthetics.ipynb) for detailed guidance on prompting for high-quality frontend design.
37
+
38
+ ## Authors
39
+
40
+ Prithvi Rajasekaran (prithvi@anthropic.com)
41
+ Alexander Bricken (alexander@anthropic.com)