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,559 @@
1
+ ---
2
+ id: "keyword-research"
3
+ title: "Keyword Research"
4
+ category: "marketing"
5
+ tags: ["keyword research", "the core job", "the process", "output format", "top opportunities", "long-term plays (6-12 months)"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/keyword-research"
9
+ ---
10
+
11
+ ---
12
+ name: keyword-research
13
+ description: 'Strategic keyword research without expensive tools. Use when someone needs content strategy, topic ideas, SEO planning, or asks what should I write about. Uses the 6 Circles Method to expand from seed keywords, clusters into content pillars, and maps to a prioritized content plan. Triggers on: keyword research for X, content strategy for X, what topics should I cover, SEO strategy, content calendar, topic clusters. Outputs prioritized keyword clusters with content recommendations.'
14
+ ---
15
+
16
+ # Keyword Research
17
+
18
+ Most keyword research is backwards. People start with tools, get overwhelmed by data, and end up with a spreadsheet they never use.
19
+
20
+ This skill starts with strategy. What does your business need? Who are you trying to reach? What would make them find you? Then it builds a content plan that actually makes sense.
21
+
22
+ No expensive tools required. Just systematic thinking.
23
+
24
+ ---
25
+
26
+ ## The core job
27
+
28
+ Transform a business context into a **prioritized content plan** with:
29
+
30
+ - Keyword clusters organized by topic
31
+ - Priority ranking based on opportunity
32
+ - Content type recommendations
33
+ - A clear "start here" action
34
+
35
+ **Output format:** Clustered keywords mapped to content pieces, prioritized by business value and opportunity.
36
+
37
+ ---
38
+
39
+ ## The process
40
+
41
+ ```
42
+ SEED → EXPAND → CLUSTER → PRIORITIZE → MAP
43
+ ```
44
+
45
+ 1. **Seed** — Generate initial keywords from business context
46
+ 2. **Expand** — Use the 6 Circles Method to build comprehensive list
47
+ 3. **Cluster** — Group related keywords into content pillars
48
+ 4. **Prioritize** — Score by opportunity and business value
49
+ 5. **Map** — Assign clusters to specific content pieces
50
+
51
+ ---
52
+
53
+ ## Before starting: Gather context
54
+
55
+ Get these inputs before generating anything:
56
+
57
+ 1. **What do you sell/offer?** (1-2 sentences)
58
+ 2. **Who are you trying to reach?** (Be specific)
59
+ 3. **What's your website?** (To understand current content)
60
+ 4. **Who are 2-3 competitors?** (Or help identify them)
61
+ 5. **What's the goal?** (Traffic? Leads? Sales? Authority?)
62
+ 6. **Timeline?** (Quick wins or long-term plays?)
63
+
64
+ ---
65
+
66
+ ## Phase 1: Seed Generation
67
+
68
+ From the business context, generate 20-30 seed keywords covering:
69
+
70
+ **Direct terms** — What you actually sell
71
+
72
+ > "AI marketing automation", "fractional CMO", "marketing workflows"
73
+
74
+ **Problem terms** — What pain you solve
75
+
76
+ > "can't keep up with content", "marketing team too small", "don't understand AI"
77
+
78
+ **Outcome terms** — What results you deliver
79
+
80
+ > "faster campaign execution", "10x content production", "marketing ROI"
81
+
82
+ **Category terms** — Broader industry terms
83
+
84
+ > "marketing automation", "AI marketing", "growth marketing"
85
+
86
+ ---
87
+
88
+ ## Phase 2: Expand (The 6 Circles Method)
89
+
90
+ For each seed keyword, expand using 6 different lenses:
91
+
92
+ ### Circle 1: What You Sell
93
+
94
+ Products, services, and solutions you offer directly.
95
+
96
+ > Example: "AI marketing automation", "marketing workflow templates", "fractional CMO services"
97
+
98
+ ### Circle 2: Problems You Solve
99
+
100
+ Pain points and challenges your audience faces.
101
+
102
+ > Example: "marketing team overwhelmed", "can't measure marketing ROI", "content takes too long"
103
+
104
+ ### Circle 3: Outcomes You Deliver
105
+
106
+ Results and transformations customers achieve.
107
+
108
+ > Example: "automated lead generation", "consistent content publishing", "marketing that runs itself"
109
+
110
+ ### Circle 4: Your Unique Positioning
111
+
112
+ What makes you different from alternatives.
113
+
114
+ > Example: "no-code marketing", "AI-first approach", "community-driven marketing"
115
+
116
+ ### Circle 5: Adjacent Topics
117
+
118
+ Related areas where your audience spends time.
119
+
120
+ > Example: "startup growth", "indie hackers", "solopreneur tools", "productivity systems"
121
+
122
+ ### Circle 6: Entities to Associate With
123
+
124
+ People, tools, frameworks, concepts you want to be connected to.
125
+
126
+ > Example: "Claude AI", "n8n automation", specific thought leaders, industry frameworks
127
+
128
+ ### Expansion techniques
129
+
130
+ For each seed, find variations using:
131
+
132
+ **Question patterns:**
133
+
134
+ - What is [keyword]?
135
+ - How to [keyword]?
136
+ - Why [keyword]?
137
+ - Best [keyword]?
138
+ - [keyword] vs [alternative]?
139
+ - [keyword] examples
140
+ - [keyword] for [audience]
141
+
142
+ **Modifier patterns:**
143
+
144
+ - [keyword] tools
145
+ - [keyword] templates
146
+ - [keyword] guide
147
+ - [keyword] strategy
148
+ - [keyword] 2025
149
+ - [keyword] for beginners
150
+ - [keyword] for [industry]
151
+
152
+ **Comparison patterns:**
153
+
154
+ - [keyword A] vs [keyword B]
155
+ - best [category]
156
+ - [tool] alternatives
157
+ - [tool] review
158
+
159
+ **Output:** Expanded list of 100-200 keywords from seed terms
160
+
161
+ ---
162
+
163
+ ## Phase 3: Cluster
164
+
165
+ Group expanded keywords into content pillars using the hub-and-spoke model:
166
+
167
+ ```
168
+ [PILLAR]
169
+ Main Topic Area
170
+ |
171
+ +-------------+-------------+
172
+ | | |
173
+ [CLUSTER 1] [CLUSTER 2] [CLUSTER 3]
174
+ Subtopic Subtopic Subtopic
175
+ | | |
176
+ Keywords Keywords Keywords
177
+ ```
178
+
179
+ ### Identifying pillars (5-10 per business)
180
+
181
+ A pillar is a major topic area that could support:
182
+
183
+ - One comprehensive guide (3,000-8,000 words)
184
+ - 3-7 supporting articles
185
+ - Ongoing content expansion
186
+
187
+ Ask: "Could this be a complete guide that thoroughly covers the topic?"
188
+
189
+ ### Pillar Validation (Critical Step)
190
+
191
+ **Before finalizing pillars, run these 4 checks:**
192
+
193
+ Most keyword research fails because pillars are chosen based on what the business WANTS to talk about, not what the market ACTUALLY searches for.
194
+
195
+ **1. Search Volume Test**
196
+ Does this pillar have >1,000 monthly searches across its keyword cluster?
197
+
198
+ - If YES: Valid pillar
199
+ - If NO: Not a pillar. It may be a single article or shouldn't be created at all.
200
+
201
+ Example failure: "Claude marketing" (zero search volume) chosen as pillar because the product uses Claude. Market searches "AI marketing" instead.
202
+
203
+ **2. Product vs. Market Test**
204
+ Is this pillar something the MARKET searches for, or something YOU want to talk about?
205
+
206
+ | Product-Centric (Wrong) | Market-Centric (Right) |
207
+ | ---------------------------- | -------------------------- |
208
+ | "Our methodology" | "Marketing automation" |
209
+ | "[Your tool name] tutorials" | "[Category] tutorials" |
210
+ | "Why we're different" | "[Problem] solutions" |
211
+ | Features of your product | Outcomes people search for |
212
+
213
+ The market doesn't search for your product name (unless you're famous). They search for solutions to their problems.
214
+
215
+ **3. Competitive Reality Test**
216
+ Can you actually win here?
217
+
218
+ Check the top 3 results for the pillar keyword:
219
+
220
+ - All DR 80+ sites (Forbes, HubSpot, etc.)? Find adjacent pillar.
221
+ - Mix of authority and smaller sites? Winnable with great content.
222
+ - Thin content from unknown sites? High opportunity.
223
+
224
+ Don't choose pillars where you have no realistic path to page 1.
225
+
226
+ **4. Proprietary Advantage Test**
227
+ Do you have unique content, data, or expertise for this pillar?
228
+
229
+ | Advantage | Priority |
230
+ | ---------------------------------------------------- | ----------------- |
231
+ | Proprietary data others don't have | Prioritize highly |
232
+ | Unique methodology or framework | Prioritize highly |
233
+ | Practitioner experience (done it, not read about it) | Prioritize |
234
+ | Same info everyone else has | Deprioritize |
235
+
236
+ If you have 2,589 marketing workflows and nobody else does, "marketing workflows" should be a pillar. If you're writing about "AI marketing" with no unique angle, you're competing on equal footing with everyone.
237
+
238
+ **Validation Output:**
239
+
240
+ For each proposed pillar, document:
241
+
242
+ ```
243
+ Pillar: [Name]
244
+ Search volume test: PASS/FAIL — [evidence]
245
+ Market-centric test: PASS/FAIL — [evidence]
246
+ Competitive test: PASS/FAIL — [evidence]
247
+ Proprietary advantage: YES/NO — [what advantage]
248
+ VERDICT: VALID PILLAR / DEMOTE TO CLUSTER / REMOVE
249
+ ```
250
+
251
+ **If a pillar fails 2+ tests, it's not a pillar.** Either demote it to a single article within another pillar, or remove it entirely.
252
+
253
+ ### Clustering process
254
+
255
+ 1. **Group by semantic similarity** — Keywords that mean similar things
256
+ 2. **Group by search intent** — Keywords with same user goal
257
+ 3. **Identify the pillar keyword** — The broadest term in each group
258
+ 4. **Identify supporting keywords** — More specific variations
259
+
260
+ ### Example cluster
261
+
262
+ **Pillar:** AI Marketing Automation
263
+
264
+ **Clusters:**
265
+
266
+ - What is AI marketing automation (definitional)
267
+ - AI marketing tools (commercial/comparison)
268
+ - AI marketing examples (proof/validation)
269
+ - Building AI marketing workflows (how-to)
270
+ - AI vs traditional automation (comparison)
271
+
272
+ ---
273
+
274
+ ## Phase 4: Prioritize
275
+
276
+ Not all keywords are equal. Score each cluster by:
277
+
278
+ ### Business Value (High / Medium / Low)
279
+
280
+ **High:** Direct path to revenue
281
+
282
+ - Commercial intent keywords
283
+ - Close to purchase decision
284
+ - Your core offering
285
+
286
+ **Medium:** Indirect path
287
+
288
+ - Builds trust and authority
289
+ - Captures leads
290
+ - Educational content
291
+
292
+ **Low:** Brand awareness only
293
+
294
+ - Top of funnel
295
+ - Tangentially related
296
+ - Nice to have
297
+
298
+ ### Opportunity (High / Medium / Low)
299
+
300
+ **High opportunity signals:**
301
+
302
+ - No good content exists (you'd define the category)
303
+ - Existing content is outdated (2+ years old)
304
+ - Existing content is thin (surface-level, generic)
305
+ - You have unique angle competitors miss
306
+ - Growing trend (check Google Trends)
307
+
308
+ **Low opportunity signals:**
309
+
310
+ - Dominated by major authority sites
311
+ - Excellent comprehensive content already exists
312
+ - Highly competitive commercial terms
313
+ - Declining interest
314
+
315
+ ### Speed to Win (Fast / Medium / Long)
316
+
317
+ **Fast (3 months):**
318
+
319
+ - Low competition
320
+ - You have unique expertise/data
321
+ - Content gap is clear
322
+
323
+ **Medium (6 months):**
324
+
325
+ - Moderate competition
326
+ - Requires comprehensive content
327
+ - Differentiation path exists
328
+
329
+ **Long (9-12 months):**
330
+
331
+ - High competition
332
+ - Requires authority building
333
+ - May need link building
334
+
335
+ ### Priority Matrix
336
+
337
+ | Business Value | Opportunity | Speed | Priority |
338
+ | -------------- | ----------- | ------ | ------------- |
339
+ | High | High | Fast | **DO FIRST** |
340
+ | High | High | Medium | **DO SECOND** |
341
+ | High | Medium | Fast | **DO THIRD** |
342
+ | Medium | High | Fast | **QUICK WIN** |
343
+ | High | Low | Any | **LONG PLAY** |
344
+ | Low | Any | Any | **BACKLOG** |
345
+
346
+ ---
347
+
348
+ ## Phase 5: Map to Content
349
+
350
+ For each priority cluster, assign:
351
+
352
+ ### Content type
353
+
354
+ | Type | When to Use | Word Count |
355
+ | ------------------- | ----------------------------- | ----------- |
356
+ | **Pillar Guide** | Comprehensive topic coverage | 5,000-8,000 |
357
+ | **How-To Tutorial** | Step-by-step instructions | 2,000-3,000 |
358
+ | **Comparison** | X vs Y, Best [category] | 2,500-4,000 |
359
+ | **Listicle** | Tools, examples, tips | 2,000-3,000 |
360
+ | **Use Case** | Industry or scenario specific | 1,500-2,500 |
361
+ | **Definition** | What is [term] | 1,500-2,500 |
362
+
363
+ ### Intent matching
364
+
365
+ | Intent | Keyword Signals | Content Approach | CTA Type |
366
+ | ----------------- | ------------------------- | ------------------ | -------------------- |
367
+ | **Informational** | what, how, why, guide | Educate thoroughly | Newsletter, resource |
368
+ | **Commercial** | best, vs, review, compare | Help them decide | Free trial, demo |
369
+ | **Transactional** | buy, pricing, get, hire | Make it easy | Purchase, contact |
370
+
371
+ ### Content calendar placement
372
+
373
+ **Tier 1 (Publish in weeks 1-4):** Highest priority, category-defining
374
+ **Tier 2 (Publish in weeks 5-8):** High priority, supporting pillars
375
+ **Tier 3 (Publish in weeks 9-12):** Medium priority, depth content
376
+ **Tier 4 (Backlog):** Lower priority, future opportunities
377
+
378
+ ---
379
+
380
+ ## Output format
381
+
382
+ ### Executive Summary
383
+
384
+ ```
385
+ # Keyword Research: [Business Name]
386
+
387
+ ## Top Opportunities
388
+ 1. [Keyword/cluster] — [Why it's an opportunity]
389
+ 2. [Keyword/cluster] — [Why it's an opportunity]
390
+ 3. [Keyword/cluster] — [Why it's an opportunity]
391
+
392
+ ## Quick Wins (3-month potential)
393
+ - [Keyword] — [Why quick]
394
+ - [Keyword] — [Why quick]
395
+
396
+ ## Long-Term Plays (6-12 months)
397
+ - [Keyword] — [Strategy needed]
398
+
399
+ ## Start Here
400
+ [Specific first piece of content to create and why]
401
+ ```
402
+
403
+ ### Pillar Overview
404
+
405
+ ```
406
+ ## Pillar: [Topic Name]
407
+ **Priority:** [Critical / High / Medium / Low]
408
+ **Content pieces:** [Number]
409
+
410
+ | Cluster | Priority | Intent | Content Type | Target |
411
+ |---------|----------|--------|--------------|--------|
412
+ | [name] | [H/M/L] | [type] | [format] | [date] |
413
+ ```
414
+
415
+ ### 90-Day Content Calendar
416
+
417
+ ```
418
+ ## Month 1
419
+ - Week 1-2: [Flagship piece] — [Target keyword cluster]
420
+ - Week 3: [Supporting piece] — [Target keyword cluster]
421
+ - Week 4: [Supporting piece] — [Target keyword cluster]
422
+
423
+ ## Month 2
424
+ - Week 5-6: [Second pillar piece] — [Target keyword cluster]
425
+ ...
426
+ ```
427
+
428
+ ---
429
+
430
+ ## Example: Keyword research for "AI Marketing Consultant"
431
+
432
+ ### Context gathered
433
+
434
+ - **Business:** AI marketing consulting for startups
435
+ - **Audience:** Funded startups, 10-50 employees, no marketing hire yet
436
+ - **Goal:** Leads for consulting engagements
437
+ - **Timeline:** Mix of quick wins and authority building
438
+
439
+ ### Seed keywords generated
440
+
441
+ - AI marketing consultant
442
+ - AI marketing strategy
443
+ - Marketing automation
444
+ - Startup marketing
445
+ - Fractional CMO
446
+ - AI marketing tools
447
+
448
+ ### Expanded via 6 Circles (sample)
449
+
450
+ **Circle 1 (What you sell):** AI marketing consultant, AI marketing strategy, AI marketing audit, marketing automation setup
451
+
452
+ **Circle 2 (Problems):** startup marketing overwhelm, no time for marketing, marketing not working, can't hire marketing team
453
+
454
+ **Circle 3 (Outcomes):** automated lead generation, consistent content, marketing ROI, scalable marketing
455
+
456
+ **Circle 4 (Positioning):** AI-first marketing, no-code marketing, startup-focused marketing
457
+
458
+ **Circle 5 (Adjacent):** startup growth strategies, product-led growth, indie hacker marketing
459
+
460
+ **Circle 6 (Entities):** Claude AI marketing, n8n marketing automation, HubSpot alternatives
461
+
462
+ ### Clustered into pillars
463
+
464
+ **Pillar 1: AI Marketing Strategy** (Priority: Critical)
465
+
466
+ - What is AI marketing
467
+ - AI marketing examples
468
+ - AI marketing tools
469
+ - AI marketing for startups
470
+
471
+ **Pillar 2: Marketing Automation** (Priority: High)
472
+
473
+ - Marketing automation for startups
474
+ - No-code marketing automation
475
+ - n8n vs Zapier for marketing
476
+ - Marketing workflow templates
477
+
478
+ **Pillar 3: Fractional Marketing** (Priority: Medium)
479
+
480
+ - What is a fractional CMO
481
+ - Fractional CMO vs agency
482
+ - When to hire fractional marketing
483
+
484
+ ### Top 3 recommendations
485
+
486
+ **1. "What is AI Marketing?" (Do First)**
487
+
488
+ - Category definition opportunity
489
+ - Growing search trend
490
+ - Weak competition (thin content dominates)
491
+ - You have practitioner expertise
492
+ - Pillar guide, 5,000+ words
493
+
494
+ **2. "AI Marketing Tools 2025" (Do Second)**
495
+
496
+ - Commercial intent, close to purchase
497
+ - Existing content is generic/outdated
498
+ - Unique angle: practitioner reviews
499
+ - Comparison listicle, 3,000+ words
500
+
501
+ **3. "Marketing Automation for Startups" (Quick Win)**
502
+
503
+ - Specific audience match
504
+ - Less competitive than broad term
505
+ - Clear differentiation path
506
+ - How-to guide, 2,500+ words
507
+
508
+ ---
509
+
510
+ ## What this skill does NOT do
511
+
512
+ This skill provides **strategic direction**, not:
513
+
514
+ - Live search volume data (use free tools if needed)
515
+ - Automated SERP analysis (manual review required)
516
+ - Content writing (use direct-response-copy skill)
517
+ - Technical SEO audits (different skill set)
518
+
519
+ The output is a prioritized plan. Execution is separate.
520
+
521
+ ---
522
+
523
+ ## Free tools to supplement
524
+
525
+ If the user needs data validation:
526
+
527
+ - **Google Trends** (trends.google.com) — Trend direction, seasonality
528
+ - **Google Search** — SERP analysis, autocomplete, "People Also Ask"
529
+ - **AnswerThePublic** (free tier) — Question-based keywords
530
+ - **AlsoAsked** (free tier) — PAA relationship mapping
531
+ - **Reddit/Quora search** — Real user questions and language
532
+
533
+ ---
534
+
535
+ ## How this connects to other skills
536
+
537
+ **keyword-research** identifies WHAT to write about.
538
+
539
+ Then:
540
+
541
+ - **positioning-angles** → finds the angle for each piece
542
+ - **brand-voice** → ensures consistent voice across content
543
+ - **direct-response-copy** → writes the actual content
544
+
545
+ The keyword research creates the content strategy. Other skills execute it.
546
+
547
+ ---
548
+
549
+ ## The test
550
+
551
+ A good keyword research output:
552
+
553
+ 1. **Actionable** — Clear "start here" recommendation
554
+ 2. **Prioritized** — Not just a list, but ranked by opportunity
555
+ 3. **Realistic** — Acknowledges competition and timelines
556
+ 4. **Strategic** — Connects to business goals, not just traffic
557
+ 5. **Specific** — Content types and angles, not just keywords
558
+
559
+ If the output is "here's 500 keywords, good luck" — it failed.
@@ -0,0 +1,28 @@
1
+ ---
2
+ id: "kotlin-lsp"
3
+ title: "Kotlin Lsp"
4
+ category: "other"
5
+ tags: ["supported extensions", "installation", "more information"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/kotlin-lsp"
9
+ ---
10
+
11
+ Kotlin language server for Claude Code, providing code intelligence, refactoring, and analysis.
12
+
13
+ ## Supported Extensions
14
+
15
+ `.kt`
16
+ `.kts`
17
+
18
+ ## Installation
19
+
20
+ Install the Kotlin LSP CLI.
21
+
22
+ ```bash
23
+ brew install JetBrains/utils/kotlin-lsp
24
+ ```
25
+
26
+ ## More Information
27
+
28
+ - [kotlin LSP](https://github.com/Kotlin/kotlin-lsp)
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: "laravel-boost"
3
+ title: "laravel-boost"
4
+ category: "other"
5
+ tags: ["laravel-boost"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/laravel-boost"
9
+ ---
10
+
11
+ # laravel-boost
12
+
13
+ Skill directory: laravel-boost