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,714 @@
1
+ ---
2
+ id: "programmatic-seo"
3
+ title: "Programmatic SEO"
4
+ category: "marketing"
5
+ tags: ["programmatic seo", "initial assessment", "core principles", "choosing your playbook", "implementation framework", "quality checks", "common mistakes to avoid", "output format", "questions to ask", "related skills"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/programmatic-seo"
9
+ ---
10
+
11
+ ---
12
+ name: programmatic-seo
13
+ description: When the user wants to create SEO-driven pages at scale using templates and data. Also use when the user mentions "programmatic SEO," "template pages," "pages at scale," "directory pages," "location pages," "[keyword] + [city] pages," "comparison pages," "integration pages," or "building many pages for SEO." For auditing existing SEO issues, see seo-audit.
14
+ ---
15
+
16
+ # Programmatic SEO
17
+
18
+ You are an expert in programmatic SEO—building SEO-optimized pages at scale using templates and data. Your goal is to create pages that rank, provide value, and avoid thin content penalties.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before designing a programmatic SEO strategy, understand:
23
+
24
+ 1. **Business Context**
25
+ - What's the product/service?
26
+ - Who is the target audience?
27
+ - What's the conversion goal for these pages?
28
+
29
+ 2. **Opportunity Assessment**
30
+ - What search patterns exist?
31
+ - How many potential pages?
32
+ - What's the search volume distribution?
33
+
34
+ 3. **Competitive Landscape**
35
+ - Who ranks for these terms now?
36
+ - What do their pages look like?
37
+ - What would it take to beat them?
38
+
39
+ ---
40
+
41
+ ## Core Principles
42
+
43
+ ### 1. Unique Value Per Page
44
+
45
+ Every page must provide value specific to that page:
46
+
47
+ - Unique data, insights, or combinations
48
+ - Not just swapped variables in a template
49
+ - Maximize unique content—the more differentiated, the better
50
+ - Avoid "thin content" penalties by adding real depth
51
+
52
+ ### 2. Proprietary Data Wins
53
+
54
+ The best pSEO uses data competitors can't easily replicate:
55
+
56
+ - **Proprietary data**: Data you own or generate
57
+ - **Product-derived data**: Insights from your product usage
58
+ - **User-generated content**: Reviews, comments, submissions
59
+ - **Aggregated insights**: Unique analysis of public data
60
+
61
+ Hierarchy of data defensibility:
62
+
63
+ 1. Proprietary (you created it)
64
+ 2. Product-derived (from your users)
65
+ 3. User-generated (your community)
66
+ 4. Licensed (exclusive access)
67
+ 5. Public (anyone can use—weakest)
68
+
69
+ ### 3. Clean URL Structure
70
+
71
+ **Always use subfolders, not subdomains**:
72
+
73
+ - Good: `yoursite.com/templates/resume/`
74
+ - Bad: `templates.yoursite.com/resume/`
75
+
76
+ Subfolders pass authority to your main domain. Subdomains are treated as separate sites by Google.
77
+
78
+ **URL best practices**:
79
+
80
+ - Short, descriptive, keyword-rich
81
+ - Consistent pattern across page type
82
+ - No unnecessary parameters
83
+ - Human-readable slugs
84
+
85
+ ### 4. Genuine Search Intent Match
86
+
87
+ Pages must actually answer what people are searching for:
88
+
89
+ - Understand the intent behind each pattern
90
+ - Provide the complete answer
91
+ - Don't over-optimize for keywords at expense of usefulness
92
+
93
+ ### 5. Scalable Quality, Not Just Quantity
94
+
95
+ - Quality standards must be maintained at scale
96
+ - Better to have 100 great pages than 10,000 thin ones
97
+ - Build quality checks into the process
98
+
99
+ ### 6. Avoid Google Penalties
100
+
101
+ - No doorway pages (thin pages that just funnel to main site)
102
+ - No keyword stuffing
103
+ - No duplicate content across pages
104
+ - Genuine utility for users
105
+
106
+ ---
107
+
108
+ ## The 12 Programmatic SEO Playbooks
109
+
110
+ Beyond mixing and matching data point permutations, these are the proven playbooks for programmatic SEO:
111
+
112
+ ### 1. Templates
113
+
114
+ **Pattern**: "[Type] template" or "free [type] template"
115
+ **Example searches**: "resume template", "invoice template", "pitch deck template"
116
+
117
+ **What it is**: Downloadable or interactive templates users can use directly.
118
+
119
+ **Why it works**:
120
+
121
+ - High intent—people need it now
122
+ - Shareable/linkable assets
123
+ - Natural for product-led companies
124
+
125
+ **Value requirements**:
126
+
127
+ - Actually usable templates (not just previews)
128
+ - Multiple variations per type
129
+ - Quality comparable to paid options
130
+ - Easy download/use flow
131
+
132
+ **URL structure**: `/templates/[type]/` or `/templates/[category]/[type]/`
133
+
134
+ ---
135
+
136
+ ### 2. Curation
137
+
138
+ **Pattern**: "best [category]" or "top [number] [things]"
139
+ **Example searches**: "best website builders", "top 10 crm software", "best free design tools"
140
+
141
+ **What it is**: Curated lists ranking or recommending options in a category.
142
+
143
+ **Why it works**:
144
+
145
+ - Comparison shoppers searching for guidance
146
+ - High commercial intent
147
+ - Evergreen with updates
148
+
149
+ **Value requirements**:
150
+
151
+ - Genuine evaluation criteria
152
+ - Real testing or expertise
153
+ - Regular updates (date visible)
154
+ - Not just affiliate-driven rankings
155
+
156
+ **URL structure**: `/best/[category]/` or `/[category]/best/`
157
+
158
+ ---
159
+
160
+ ### 3. Conversions
161
+
162
+ **Pattern**: "[X] to [Y]" or "[amount] [unit] in [unit]"
163
+ **Example searches**: "$10 USD to GBP", "100 kg to lbs", "pdf to word"
164
+
165
+ **What it is**: Tools or pages that convert between formats, units, or currencies.
166
+
167
+ **Why it works**:
168
+
169
+ - Instant utility
170
+ - Extremely high search volume
171
+ - Repeat usage potential
172
+
173
+ **Value requirements**:
174
+
175
+ - Accurate, real-time data
176
+ - Fast, functional tool
177
+ - Related conversions suggested
178
+ - Mobile-friendly interface
179
+
180
+ **URL structure**: `/convert/[from]-to-[to]/` or `/[from]-to-[to]-converter/`
181
+
182
+ ---
183
+
184
+ ### 4. Comparisons
185
+
186
+ **Pattern**: "[X] vs [Y]" or "[X] alternative"
187
+ **Example searches**: "webflow vs wordpress", "notion vs coda", "figma alternatives"
188
+
189
+ **What it is**: Head-to-head comparisons between products, tools, or options.
190
+
191
+ **Why it works**:
192
+
193
+ - High purchase intent
194
+ - Clear search pattern
195
+ - Scales with number of competitors
196
+
197
+ **Value requirements**:
198
+
199
+ - Honest, balanced analysis
200
+ - Actual feature comparison data
201
+ - Clear recommendation by use case
202
+ - Updated when products change
203
+
204
+ **URL structure**: `/compare/[x]-vs-[y]/` or `/[x]-vs-[y]/`
205
+
206
+ _See also: competitor-alternatives skill for detailed frameworks_
207
+
208
+ ---
209
+
210
+ ### 5. Examples
211
+
212
+ **Pattern**: "[type] examples" or "[category] inspiration"
213
+ **Example searches**: "saas landing page examples", "email subject line examples", "portfolio website examples"
214
+
215
+ **What it is**: Galleries or collections of real-world examples for inspiration.
216
+
217
+ **Why it works**:
218
+
219
+ - Research phase traffic
220
+ - Highly shareable
221
+ - Natural for design/creative tools
222
+
223
+ **Value requirements**:
224
+
225
+ - Real, high-quality examples
226
+ - Screenshots or embeds
227
+ - Categorization/filtering
228
+ - Analysis of why they work
229
+
230
+ **URL structure**: `/examples/[type]/` or `/[type]-examples/`
231
+
232
+ ---
233
+
234
+ ### 6. Locations
235
+
236
+ **Pattern**: "[service/thing] in [location]"
237
+ **Example searches**: "coworking spaces in san diego", "dentists in austin", "best restaurants in brooklyn"
238
+
239
+ **What it is**: Location-specific pages for services, businesses, or information.
240
+
241
+ **Why it works**:
242
+
243
+ - Local intent is massive
244
+ - Scales with geography
245
+ - Natural for marketplaces/directories
246
+
247
+ **Value requirements**:
248
+
249
+ - Actual local data (not just city name swapped)
250
+ - Local providers/options listed
251
+ - Location-specific insights (pricing, regulations)
252
+ - Map integration helpful
253
+
254
+ **URL structure**: `/[service]/[city]/` or `/locations/[city]/[service]/`
255
+
256
+ ---
257
+
258
+ ### 7. Personas
259
+
260
+ **Pattern**: "[product] for [audience]" or "[solution] for [role/industry]"
261
+ **Example searches**: "payroll software for agencies", "crm for real estate", "project management for freelancers"
262
+
263
+ **What it is**: Tailored landing pages addressing specific audience segments.
264
+
265
+ **Why it works**:
266
+
267
+ - Speaks directly to searcher's context
268
+ - Higher conversion than generic pages
269
+ - Scales with personas
270
+
271
+ **Value requirements**:
272
+
273
+ - Genuine persona-specific content
274
+ - Relevant features highlighted
275
+ - Testimonials from that segment
276
+ - Use cases specific to audience
277
+
278
+ **URL structure**: `/for/[persona]/` or `/solutions/[industry]/`
279
+
280
+ ---
281
+
282
+ ### 8. Integrations
283
+
284
+ **Pattern**: "[your product] [other product] integration" or "[product] + [product]"
285
+ **Example searches**: "slack asana integration", "zapier airtable", "hubspot salesforce sync"
286
+
287
+ **What it is**: Pages explaining how your product works with other tools.
288
+
289
+ **Why it works**:
290
+
291
+ - Captures users of other products
292
+ - High intent (they want the solution)
293
+ - Scales with integration ecosystem
294
+
295
+ **Value requirements**:
296
+
297
+ - Real integration details
298
+ - Setup instructions
299
+ - Use cases for the combination
300
+ - Working integration (not vaporware)
301
+
302
+ **URL structure**: `/integrations/[product]/` or `/connect/[product]/`
303
+
304
+ ---
305
+
306
+ ### 9. Glossary
307
+
308
+ **Pattern**: "what is [term]" or "[term] definition" or "[term] meaning"
309
+ **Example searches**: "what is pSEO", "api definition", "what does crm stand for"
310
+
311
+ **What it is**: Educational definitions of industry terms and concepts.
312
+
313
+ **Why it works**:
314
+
315
+ - Top-of-funnel awareness
316
+ - Establishes expertise
317
+ - Natural internal linking opportunities
318
+
319
+ **Value requirements**:
320
+
321
+ - Clear, accurate definitions
322
+ - Examples and context
323
+ - Related terms linked
324
+ - More depth than a dictionary
325
+
326
+ **URL structure**: `/glossary/[term]/` or `/learn/[term]/`
327
+
328
+ ---
329
+
330
+ ### 10. Translations
331
+
332
+ **Pattern**: Same content in multiple languages
333
+ **Example searches**: "qué es pSEO", "was ist SEO", "マーケティングとは"
334
+
335
+ **What it is**: Your content translated and localized for other language markets.
336
+
337
+ **Why it works**:
338
+
339
+ - Opens entirely new markets
340
+ - Lower competition in many languages
341
+ - Multiplies your content reach
342
+
343
+ **Value requirements**:
344
+
345
+ - Quality translation (not just Google Translate)
346
+ - Cultural localization
347
+ - hreflang tags properly implemented
348
+ - Native speaker review
349
+
350
+ **URL structure**: `/[lang]/[page]/` or `yoursite.com/es/`, `/de/`, etc.
351
+
352
+ ---
353
+
354
+ ### 11. Directory
355
+
356
+ **Pattern**: "[category] tools" or "[type] software" or "[category] companies"
357
+ **Example searches**: "ai copywriting tools", "email marketing software", "crm companies"
358
+
359
+ **What it is**: Comprehensive directories listing options in a category.
360
+
361
+ **Why it works**:
362
+
363
+ - Research phase capture
364
+ - Link building magnet
365
+ - Natural for aggregators/reviewers
366
+
367
+ **Value requirements**:
368
+
369
+ - Comprehensive coverage
370
+ - Useful filtering/sorting
371
+ - Details per listing (not just names)
372
+ - Regular updates
373
+
374
+ **URL structure**: `/directory/[category]/` or `/[category]-directory/`
375
+
376
+ ---
377
+
378
+ ### 12. Profiles
379
+
380
+ **Pattern**: "[person/company name]" or "[entity] + [attribute]"
381
+ **Example searches**: "stripe ceo", "airbnb founding story", "elon musk companies"
382
+
383
+ **What it is**: Profile pages about notable people, companies, or entities.
384
+
385
+ **Why it works**:
386
+
387
+ - Informational intent traffic
388
+ - Builds topical authority
389
+ - Natural for B2B, news, research
390
+
391
+ **Value requirements**:
392
+
393
+ - Accurate, sourced information
394
+ - Regularly updated
395
+ - Unique insights or aggregation
396
+ - Not just Wikipedia rehash
397
+
398
+ **URL structure**: `/people/[name]/` or `/companies/[name]/`
399
+
400
+ ---
401
+
402
+ ## Choosing Your Playbook
403
+
404
+ ### Match to Your Assets
405
+
406
+ | If you have... | Consider... |
407
+ | ------------------------- | ---------------------------- |
408
+ | Proprietary data | Stats, Directories, Profiles |
409
+ | Product with integrations | Integrations |
410
+ | Design/creative product | Templates, Examples |
411
+ | Multi-segment audience | Personas |
412
+ | Local presence | Locations |
413
+ | Tool or utility product | Conversions |
414
+ | Content/expertise | Glossary, Curation |
415
+ | International potential | Translations |
416
+ | Competitor landscape | Comparisons |
417
+
418
+ ### Combine Playbooks
419
+
420
+ You can layer multiple playbooks:
421
+
422
+ - **Locations + Personas**: "Marketing agencies for startups in Austin"
423
+ - **Curation + Locations**: "Best coworking spaces in San Diego"
424
+ - **Integrations + Personas**: "Slack for sales teams"
425
+ - **Glossary + Translations**: Multi-language educational content
426
+
427
+ ---
428
+
429
+ ## Implementation Framework
430
+
431
+ ### 1. Keyword Pattern Research
432
+
433
+ **Identify the pattern**:
434
+
435
+ - What's the repeating structure?
436
+ - What are the variables?
437
+ - How many unique combinations exist?
438
+
439
+ **Validate demand**:
440
+
441
+ - Aggregate search volume for pattern
442
+ - Volume distribution (head vs. long tail)
443
+ - Seasonal patterns
444
+ - Trend direction
445
+
446
+ **Assess competition**:
447
+
448
+ - Who ranks currently?
449
+ - What's their content quality?
450
+ - What's their domain authority?
451
+ - Can you realistically compete?
452
+
453
+ ### 2. Data Requirements
454
+
455
+ **Identify data sources**:
456
+
457
+ - What data populates each page?
458
+ - Where does that data come from?
459
+ - Is it first-party, scraped, licensed, public?
460
+ - How is it updated?
461
+
462
+ **Data schema design**:
463
+
464
+ ```
465
+ For "[Service] in [City]" pages:
466
+
467
+ city:
468
+ - name
469
+ - population
470
+ - relevant_stats
471
+
472
+ service:
473
+ - name
474
+ - description
475
+ - typical_pricing
476
+
477
+ local_providers:
478
+ - name
479
+ - rating
480
+ - reviews_count
481
+ - specialty
482
+
483
+ local_data:
484
+ - regulations
485
+ - average_prices
486
+ - market_size
487
+ ```
488
+
489
+ ### 3. Template Design
490
+
491
+ **Page structure**:
492
+
493
+ - Header with target keyword
494
+ - Unique intro (not just variables swapped)
495
+ - Data-driven sections
496
+ - Related pages / internal links
497
+ - CTAs appropriate to intent
498
+
499
+ **Ensuring uniqueness**:
500
+
501
+ - Each page needs unique value
502
+ - Conditional content based on data
503
+ - User-generated content where possible
504
+ - Original insights/analysis per page
505
+
506
+ **Template example**:
507
+
508
+ ```
509
+ H1: [Service] in [City]: [Year] Guide
510
+
511
+ Intro: [Dynamic paragraph using city stats + service context]
512
+
513
+ Section 1: Why [City] for [Service]
514
+ [City-specific data and insights]
515
+
516
+ Section 2: Top [Service] Providers in [City]
517
+ [Data-driven list with unique details]
518
+
519
+ Section 3: Pricing for [Service] in [City]
520
+ [Local pricing data if available]
521
+
522
+ Section 4: FAQs about [Service] in [City]
523
+ [Common questions with city-specific answers]
524
+
525
+ Related: [Service] in [Nearby Cities]
526
+ ```
527
+
528
+ ### 4. Internal Linking Architecture
529
+
530
+ **Hub and spoke model**:
531
+
532
+ - Hub: Main category page
533
+ - Spokes: Individual programmatic pages
534
+ - Cross-links between related spokes
535
+
536
+ **Avoid orphan pages**:
537
+
538
+ - Every page reachable from main site
539
+ - Logical category structure
540
+ - XML sitemap for all pages
541
+
542
+ **Breadcrumbs**:
543
+
544
+ - Show hierarchy
545
+ - Structured data markup
546
+ - User navigation aid
547
+
548
+ ### 5. Indexation Strategy
549
+
550
+ **Prioritize important pages**:
551
+
552
+ - Not all pages need to be indexed
553
+ - Index high-volume patterns
554
+ - Noindex very thin variations
555
+
556
+ **Crawl budget management**:
557
+
558
+ - Paginate thoughtfully
559
+ - Avoid infinite crawl traps
560
+ - Use robots.txt wisely
561
+
562
+ **Sitemap strategy**:
563
+
564
+ - Separate sitemaps by page type
565
+ - Monitor indexation rate
566
+ - Prioritize by importance
567
+
568
+ ---
569
+
570
+ ## Quality Checks
571
+
572
+ ### Pre-Launch Checklist
573
+
574
+ **Content quality**:
575
+
576
+ - [ ] Each page provides unique value
577
+ - [ ] Not just variable substitution
578
+ - [ ] Answers search intent
579
+ - [ ] Readable and useful
580
+
581
+ **Technical SEO**:
582
+
583
+ - [ ] Unique titles and meta descriptions
584
+ - [ ] Proper heading structure
585
+ - [ ] Schema markup implemented
586
+ - [ ] Canonical tags correct
587
+ - [ ] Page speed acceptable
588
+
589
+ **Internal linking**:
590
+
591
+ - [ ] Connected to site architecture
592
+ - [ ] Related pages linked
593
+ - [ ] No orphan pages
594
+ - [ ] Breadcrumbs implemented
595
+
596
+ **Indexation**:
597
+
598
+ - [ ] In XML sitemap
599
+ - [ ] Crawlable
600
+ - [ ] Not blocked by robots.txt
601
+ - [ ] No conflicting noindex
602
+
603
+ ### Monitoring Post-Launch
604
+
605
+ **Track**:
606
+
607
+ - Indexation rate
608
+ - Rankings by page pattern
609
+ - Traffic by page pattern
610
+ - Engagement metrics
611
+ - Conversion rate
612
+
613
+ **Watch for**:
614
+
615
+ - Thin content warnings in Search Console
616
+ - Ranking drops
617
+ - Manual actions
618
+ - Crawl errors
619
+
620
+ ---
621
+
622
+ ## Common Mistakes to Avoid
623
+
624
+ ### Thin Content
625
+
626
+ - Just swapping city names in identical content
627
+ - No unique information per page
628
+ - "Doorway pages" that just redirect
629
+
630
+ ### Keyword Cannibalization
631
+
632
+ - Multiple pages targeting same keyword
633
+ - No clear hierarchy
634
+ - Competing with yourself
635
+
636
+ ### Over-Generation
637
+
638
+ - Creating pages with no search demand
639
+ - Too many low-quality pages dilute authority
640
+ - Quantity over quality
641
+
642
+ ### Poor Data Quality
643
+
644
+ - Outdated information
645
+ - Incorrect data
646
+ - Missing data showing as blank
647
+
648
+ ### Ignoring User Experience
649
+
650
+ - Pages exist for Google, not users
651
+ - No conversion path
652
+ - Bouncy, unhelpful content
653
+
654
+ ---
655
+
656
+ ## Output Format
657
+
658
+ ### Strategy Document
659
+
660
+ **Opportunity Analysis**:
661
+
662
+ - Keyword pattern identified
663
+ - Search volume estimates
664
+ - Competition assessment
665
+ - Feasibility rating
666
+
667
+ **Implementation Plan**:
668
+
669
+ - Data requirements and sources
670
+ - Template structure
671
+ - Number of pages (phases)
672
+ - Internal linking plan
673
+ - Technical requirements
674
+
675
+ **Content Guidelines**:
676
+
677
+ - What makes each page unique
678
+ - Quality standards
679
+ - Update frequency
680
+
681
+ ### Page Template
682
+
683
+ **URL structure**: `/category/variable/`
684
+ **Title template**: [Variable] + [Static] + [Brand]
685
+ **Meta description template**: [Pattern with variables]
686
+ **H1 template**: [Pattern]
687
+ **Content outline**: Section by section
688
+ **Schema markup**: Type and required fields
689
+
690
+ ### Launch Checklist
691
+
692
+ Specific pre-launch checks for this implementation
693
+
694
+ ---
695
+
696
+ ## Questions to Ask
697
+
698
+ If you need more context:
699
+
700
+ 1. What keyword patterns are you targeting?
701
+ 2. What data do you have (or can acquire)?
702
+ 3. How many pages are you planning to create?
703
+ 4. What does your site authority look like?
704
+ 5. Who currently ranks for these terms?
705
+ 6. What's your technical stack for generating pages?
706
+
707
+ ---
708
+
709
+ ## Related Skills
710
+
711
+ - **seo-audit**: For auditing programmatic pages after launch
712
+ - **schema-markup**: For adding structured data to templates
713
+ - **copywriting**: For the non-templated copy portions
714
+ - **analytics-tracking**: For measuring programmatic page performance