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,795 @@
1
+ ---
2
+ id: "competitor-alternatives"
3
+ title: "Competitor & Alternative Pages"
4
+ category: "marketing"
5
+ tags: ["initial assessment", "core principles", "page formats", "index pages", "find the right tool", "content architecture", "positioning", "pricing", "strengths (be honest)"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/competitor-alternatives"
9
+ ---
10
+
11
+ ---
12
+ name: competitor-alternatives
13
+ description: "When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' or 'competitive landing pages.' Covers four formats: singular alternative, plural alternatives, you vs competitor, and competitor vs competitor. Emphasizes deep research, modular content architecture, and varied section types beyond feature tables."
14
+ ---
15
+
16
+ # Competitor & Alternative Pages
17
+
18
+ You are an expert in creating competitor comparison and alternative pages. Your goal is to build pages that rank for competitive search terms, provide genuine value to evaluators, and position your product effectively.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before creating competitor pages, understand:
23
+
24
+ 1. **Your Product**
25
+ - Core value proposition
26
+ - Key differentiators
27
+ - Ideal customer profile
28
+ - Pricing model
29
+ - Strengths and honest weaknesses
30
+
31
+ 2. **Competitive Landscape**
32
+ - Direct competitors
33
+ - Indirect/adjacent competitors
34
+ - Market positioning of each
35
+ - Search volume for competitor terms
36
+
37
+ 3. **Goals**
38
+ - SEO traffic capture
39
+ - Sales enablement
40
+ - Conversion from competitor users
41
+ - Brand positioning
42
+
43
+ ---
44
+
45
+ ## Core Principles
46
+
47
+ ### 1. Honesty Builds Trust
48
+
49
+ - Acknowledge competitor strengths
50
+ - Be accurate about your limitations
51
+ - Don't misrepresent competitor features
52
+ - Readers are comparing—they'll verify claims
53
+
54
+ ### 2. Depth Over Surface
55
+
56
+ - Go beyond feature checklists
57
+ - Explain _why_ differences matter
58
+ - Include use cases and scenarios
59
+ - Show, don't just tell
60
+
61
+ ### 3. Help Them Decide
62
+
63
+ - Different tools fit different needs
64
+ - Be clear about who you're best for
65
+ - Be clear about who competitor is best for
66
+ - Reduce evaluation friction
67
+
68
+ ### 4. Modular Content Architecture
69
+
70
+ - Competitor data should be centralized
71
+ - Updates propagate to all pages
72
+ - Avoid duplicating research
73
+ - Single source of truth per competitor
74
+
75
+ ---
76
+
77
+ ## Page Formats
78
+
79
+ ### Format 1: [Competitor] Alternative (Singular)
80
+
81
+ **Search intent**: User is actively looking to switch from a specific competitor
82
+
83
+ **URL pattern**: `/alternatives/[competitor]` or `/[competitor]-alternative`
84
+
85
+ **Target keywords**:
86
+
87
+ - "[Competitor] alternative"
88
+ - "alternative to [Competitor]"
89
+ - "switch from [Competitor]"
90
+ - "[Competitor] replacement"
91
+
92
+ **Page structure**:
93
+
94
+ 1. Why people look for alternatives (validate their pain)
95
+ 2. Summary: You as the alternative (quick positioning)
96
+ 3. Detailed comparison (features, service, pricing)
97
+ 4. Who should switch (and who shouldn't)
98
+ 5. Migration path
99
+ 6. Social proof from switchers
100
+ 7. CTA
101
+
102
+ **Tone**: Empathetic to their frustration, helpful guide
103
+
104
+ ---
105
+
106
+ ### Format 2: [Competitor] Alternatives (Plural)
107
+
108
+ **Search intent**: User is researching options, earlier in journey
109
+
110
+ **URL pattern**: `/alternatives/[competitor]-alternatives` or `/best-[competitor]-alternatives`
111
+
112
+ **Target keywords**:
113
+
114
+ - "[Competitor] alternatives"
115
+ - "best [Competitor] alternatives"
116
+ - "tools like [Competitor]"
117
+ - "[Competitor] competitors"
118
+
119
+ **Page structure**:
120
+
121
+ 1. Why people look for alternatives (common pain points)
122
+ 2. What to look for in an alternative (criteria framework)
123
+ 3. List of alternatives (you first, but include real options)
124
+ 4. Comparison table (summary)
125
+ 5. Detailed breakdown of each alternative
126
+ 6. Recommendation by use case
127
+ 7. CTA
128
+
129
+ **Tone**: Objective guide, you're one option among several (but positioned well)
130
+
131
+ **Important**: Include 4-7 real alternatives. Being genuinely helpful builds trust and ranks better.
132
+
133
+ ---
134
+
135
+ ### Format 3: You vs [Competitor]
136
+
137
+ **Search intent**: User is directly comparing you to a specific competitor
138
+
139
+ **URL pattern**: `/vs/[competitor]` or `/compare/[you]-vs-[competitor]`
140
+
141
+ **Target keywords**:
142
+
143
+ - "[You] vs [Competitor]"
144
+ - "[Competitor] vs [You]"
145
+ - "[You] compared to [Competitor]"
146
+ - "[You] or [Competitor]"
147
+
148
+ **Page structure**:
149
+
150
+ 1. TL;DR summary (key differences in 2-3 sentences)
151
+ 2. At-a-glance comparison table
152
+ 3. Detailed comparison by category:
153
+ - Features
154
+ - Pricing
155
+ - Service & support
156
+ - Ease of use
157
+ - Integrations
158
+ 4. Who [You] is best for
159
+ 5. Who [Competitor] is best for (be honest)
160
+ 6. What customers say (testimonials from switchers)
161
+ 7. Migration support
162
+ 8. CTA
163
+
164
+ **Tone**: Confident but fair, acknowledge where competitor excels
165
+
166
+ ---
167
+
168
+ ### Format 4: [Competitor A] vs [Competitor B]
169
+
170
+ **Search intent**: User comparing two competitors (not you directly)
171
+
172
+ **URL pattern**: `/compare/[competitor-a]-vs-[competitor-b]`
173
+
174
+ **Target keywords**:
175
+
176
+ - "[Competitor A] vs [Competitor B]"
177
+ - "[Competitor A] or [Competitor B]"
178
+ - "[Competitor A] compared to [Competitor B]"
179
+
180
+ **Page structure**:
181
+
182
+ 1. Overview of both products
183
+ 2. Comparison by category
184
+ 3. Who each is best for
185
+ 4. The third option (introduce yourself)
186
+ 5. Comparison table (all three)
187
+ 6. CTA
188
+
189
+ **Tone**: Objective analyst, earn trust through fairness, then introduce yourself
190
+
191
+ **Why this works**: Captures search traffic for competitor terms, positions you as knowledgeable, introduces you to qualified audience.
192
+
193
+ ---
194
+
195
+ ## Index Pages
196
+
197
+ Each format needs an index page that lists all pages of that type. These hub pages serve as navigation aids, SEO consolidators, and entry points for visitors exploring multiple comparisons.
198
+
199
+ ### Alternatives Index
200
+
201
+ **URL**: `/alternatives` or `/alternatives/index`
202
+
203
+ **Purpose**: Lists all "[Competitor] Alternative" pages
204
+
205
+ **Page structure**:
206
+
207
+ 1. Headline: "[Your Product] as an Alternative"
208
+ 2. Brief intro on why people switch to you
209
+ 3. List of all alternative pages with:
210
+ - Competitor name/logo
211
+ - One-line summary of key differentiator vs. that competitor
212
+ - Link to full comparison
213
+ 4. Common reasons people switch (aggregated)
214
+ 5. CTA
215
+
216
+ **Example**:
217
+
218
+ ```markdown
219
+ ## Explore [Your Product] as an Alternative
220
+
221
+ Looking to switch? See how [Your Product] compares to the tools you're evaluating:
222
+
223
+ - **[Notion Alternative](/alternatives/notion)** — Better for teams who need [X]
224
+ - **[Airtable Alternative](/alternatives/airtable)** — Better for teams who need [Y]
225
+ - **[Monday Alternative](/alternatives/monday)** — Better for teams who need [Z]
226
+ ```
227
+
228
+ ---
229
+
230
+ ### Alternatives (Plural) Index
231
+
232
+ **URL**: `/alternatives/compare` or `/best-alternatives`
233
+
234
+ **Purpose**: Lists all "[Competitor] Alternatives" roundup pages
235
+
236
+ **Page structure**:
237
+
238
+ 1. Headline: "Software Alternatives & Comparisons"
239
+ 2. Brief intro on your comparison methodology
240
+ 3. List of all alternatives roundup pages with:
241
+ - Competitor name
242
+ - Number of alternatives covered
243
+ - Link to roundup
244
+ 4. CTA
245
+
246
+ **Example**:
247
+
248
+ ```markdown
249
+ ## Find the Right Tool
250
+
251
+ Comparing your options? Our guides cover the top alternatives:
252
+
253
+ - **[Best Notion Alternatives](/alternatives/notion-alternatives)** — 7 tools compared
254
+ - **[Best Airtable Alternatives](/alternatives/airtable-alternatives)** — 6 tools compared
255
+ - **[Best Monday Alternatives](/alternatives/monday-alternatives)** — 5 tools compared
256
+ ```
257
+
258
+ ---
259
+
260
+ ### Vs Comparisons Index
261
+
262
+ **URL**: `/vs` or `/compare`
263
+
264
+ **Purpose**: Lists all "You vs [Competitor]" and "[A] vs [B]" pages
265
+
266
+ **Page structure**:
267
+
268
+ 1. Headline: "Compare [Your Product]"
269
+ 2. Section: "[Your Product] vs Competitors" — list of direct comparisons
270
+ 3. Section: "Head-to-Head Comparisons" — list of [A] vs [B] pages
271
+ 4. Brief methodology note
272
+ 5. CTA
273
+
274
+ **Example**:
275
+
276
+ ```markdown
277
+ ## Compare [Your Product]
278
+
279
+ ### [Your Product] vs. the Competition
280
+
281
+ - **[[Your Product] vs Notion](/vs/notion)** — Best for [differentiator]
282
+ - **[[Your Product] vs Airtable](/vs/airtable)** — Best for [differentiator]
283
+ - **[[Your Product] vs Monday](/vs/monday)** — Best for [differentiator]
284
+
285
+ ### Other Comparisons
286
+
287
+ Evaluating tools we compete with? We've done the research:
288
+
289
+ - **[Notion vs Airtable](/compare/notion-vs-airtable)**
290
+ - **[Notion vs Monday](/compare/notion-vs-monday)**
291
+ - **[Airtable vs Monday](/compare/airtable-vs-monday)**
292
+ ```
293
+
294
+ ---
295
+
296
+ ### Index Page Best Practices
297
+
298
+ **Keep them updated**: When you add a new comparison page, add it to the relevant index.
299
+
300
+ **Internal linking**:
301
+
302
+ - Link from index → individual pages
303
+ - Link from individual pages → back to index
304
+ - Cross-link between related comparisons
305
+
306
+ **SEO value**:
307
+
308
+ - Index pages can rank for broad terms like "project management tool comparisons"
309
+ - Pass link equity to individual comparison pages
310
+ - Help search engines discover all comparison content
311
+
312
+ **Sorting options**:
313
+
314
+ - By popularity (search volume)
315
+ - Alphabetically
316
+ - By category/use case
317
+ - By date added (show freshness)
318
+
319
+ **Include on index pages**:
320
+
321
+ - Last updated date for credibility
322
+ - Number of pages/comparisons available
323
+ - Quick filters if you have many comparisons
324
+
325
+ ---
326
+
327
+ ## Content Architecture
328
+
329
+ ### Centralized Competitor Data
330
+
331
+ Create a single source of truth for each competitor:
332
+
333
+ ```
334
+ competitor_data/
335
+ ├── notion.md
336
+ ├── airtable.md
337
+ ├── monday.md
338
+ └── ...
339
+ ```
340
+
341
+ **Per competitor, document**:
342
+
343
+ ```yaml
344
+ name: Notion
345
+ website: notion.so
346
+ tagline: 'The all-in-one workspace'
347
+ founded: 2016
348
+ headquarters: San Francisco
349
+
350
+ # Positioning
351
+ primary_use_case: 'docs + light databases'
352
+ target_audience: 'teams wanting flexible workspace'
353
+ market_position: 'premium, feature-rich'
354
+
355
+ # Pricing
356
+ pricing_model: per-seat
357
+ free_tier: true
358
+ free_tier_limits: 'limited blocks, 1 user'
359
+ starter_price: $8/user/month
360
+ business_price: $15/user/month
361
+ enterprise: custom
362
+
363
+ # Features (rate 1-5 or describe)
364
+ features:
365
+ documents: 5
366
+ databases: 4
367
+ project_management: 3
368
+ collaboration: 4
369
+ integrations: 3
370
+ mobile_app: 3
371
+ offline_mode: 2
372
+ api: 4
373
+
374
+ # Strengths (be honest)
375
+ strengths:
376
+ - Extremely flexible and customizable
377
+ - Beautiful, modern interface
378
+ - Strong template ecosystem
379
+ - Active community
380
+
381
+ # Weaknesses (be fair)
382
+ weaknesses:
383
+ - Can be slow with large databases
384
+ - Learning curve for advanced features
385
+ - Limited automations compared to dedicated tools
386
+ - Offline mode is limited
387
+
388
+ # Best for
389
+ best_for:
390
+ - Teams wanting all-in-one workspace
391
+ - Content-heavy workflows
392
+ - Documentation-first teams
393
+ - Startups and small teams
394
+
395
+ # Not ideal for
396
+ not_ideal_for:
397
+ - Complex project management needs
398
+ - Large databases (1000s of rows)
399
+ - Teams needing robust offline
400
+ - Enterprise with strict compliance
401
+
402
+ # Common complaints (from reviews)
403
+ common_complaints:
404
+ - 'Gets slow with lots of content'
405
+ - 'Hard to find things as workspace grows'
406
+ - 'Mobile app is clunky'
407
+
408
+ # Migration notes
409
+ migration_from:
410
+ difficulty: medium
411
+ data_export: 'Markdown, CSV, HTML'
412
+ what_transfers: 'Pages, databases'
413
+ what_doesnt: 'Automations, integrations setup'
414
+ time_estimate: '1-3 days for small team'
415
+ ```
416
+
417
+ ### Your Product Data
418
+
419
+ Same structure for yourself—be honest:
420
+
421
+ ```yaml
422
+ name: [Your Product]
423
+ # ... same fields
424
+
425
+ strengths:
426
+ - [Your real strengths]
427
+
428
+ weaknesses:
429
+ - [Your honest weaknesses]
430
+
431
+ best_for:
432
+ - [Your ideal customers]
433
+
434
+ not_ideal_for:
435
+ - [Who should use something else]
436
+ ```
437
+
438
+ ### Page Generation
439
+
440
+ Each page pulls from centralized data:
441
+
442
+ - **[Competitor] Alternative page**: Pulls competitor data + your data
443
+ - **[Competitor] Alternatives page**: Pulls competitor data + your data + other alternatives
444
+ - **You vs [Competitor] page**: Pulls your data + competitor data
445
+ - **[A] vs [B] page**: Pulls both competitor data + your data
446
+
447
+ **Benefits**:
448
+
449
+ - Update competitor pricing once, updates everywhere
450
+ - Add new feature comparison once, appears on all pages
451
+ - Consistent accuracy across pages
452
+ - Easier to maintain at scale
453
+
454
+ ---
455
+
456
+ ## Section Templates
457
+
458
+ ### TL;DR Summary
459
+
460
+ Start every page with a quick summary for scanners:
461
+
462
+ ```markdown
463
+ **TL;DR**: [Competitor] excels at [strength] but struggles with [weakness].
464
+ [Your product] is built for [your focus], offering [key differentiator].
465
+ Choose [Competitor] if [their ideal use case]. Choose [You] if [your ideal use case].
466
+ ```
467
+
468
+ ### Paragraph Comparison (Not Just Tables)
469
+
470
+ For each major dimension, write a paragraph:
471
+
472
+ ```markdown
473
+ ## Features
474
+
475
+ [Competitor] offers [description of their feature approach].
476
+ Their strength is [specific strength], which works well for [use case].
477
+ However, [limitation] can be challenging for [user type].
478
+
479
+ [Your product] takes a different approach with [your approach].
480
+ This means [benefit], though [honest tradeoff].
481
+ Teams who [specific need] often find this more effective.
482
+ ```
483
+
484
+ ### Feature Comparison Section
485
+
486
+ Go beyond checkmarks:
487
+
488
+ ```markdown
489
+ ## Feature Comparison
490
+
491
+ ### [Feature Category]
492
+
493
+ **[Competitor]**: [2-3 sentence description of how they handle this]
494
+
495
+ - Strengths: [specific]
496
+ - Limitations: [specific]
497
+
498
+ **[Your product]**: [2-3 sentence description]
499
+
500
+ - Strengths: [specific]
501
+ - Limitations: [specific]
502
+
503
+ **Bottom line**: Choose [Competitor] if [scenario]. Choose [You] if [scenario].
504
+ ```
505
+
506
+ ### Pricing Comparison Section
507
+
508
+ ```markdown
509
+ ## Pricing
510
+
511
+ | | [Competitor] | [Your Product] |
512
+ | -------------- | ------------ | -------------- |
513
+ | Free tier | [Details] | [Details] |
514
+ | Starting price | $X/user/mo | $X/user/mo |
515
+ | Business tier | $X/user/mo | $X/user/mo |
516
+ | Enterprise | Custom | Custom |
517
+
518
+ **What's included**: [Competitor]'s $X plan includes [features], while
519
+ [Your product]'s $X plan includes [features].
520
+
521
+ **Total cost consideration**: Beyond per-seat pricing, consider [hidden costs,
522
+ add-ons, implementation]. [Competitor] charges extra for [X], while
523
+ [Your product] includes [Y] in base pricing.
524
+
525
+ **Value comparison**: For a 10-person team, [Competitor] costs approximately
526
+ $X/year while [Your product] costs $Y/year, with [key differences in what you get].
527
+ ```
528
+
529
+ ### Service & Support Comparison
530
+
531
+ ```markdown
532
+ ## Service & Support
533
+
534
+ | | [Competitor] | [Your Product] |
535
+ | ---------------- | -------------------- | -------------------- |
536
+ | Documentation | [Quality assessment] | [Quality assessment] |
537
+ | Response time | [SLA if known] | [Your SLA] |
538
+ | Support channels | [List] | [List] |
539
+ | Onboarding | [What they offer] | [What you offer] |
540
+ | CSM included | [At what tier] | [At what tier] |
541
+
542
+ **Support quality**: Based on [G2/Capterra reviews, your research],
543
+ [Competitor] support is described as [assessment]. Common feedback includes
544
+ [quotes or themes].
545
+
546
+ [Your product] offers [your support approach]. [Specific differentiator like
547
+ response time, dedicated CSM, implementation help].
548
+ ```
549
+
550
+ ### Who It's For Section
551
+
552
+ ```markdown
553
+ ## Who Should Choose [Competitor]
554
+
555
+ [Competitor] is the right choice if:
556
+
557
+ - [Specific use case or need]
558
+ - [Team type or size]
559
+ - [Workflow or requirement]
560
+ - [Budget or priority]
561
+
562
+ **Ideal [Competitor] customer**: [Persona description in 1-2 sentences]
563
+
564
+ ## Who Should Choose [Your Product]
565
+
566
+ [Your product] is built for teams who:
567
+
568
+ - [Specific use case or need]
569
+ - [Team type or size]
570
+ - [Workflow or requirement]
571
+ - [Priority or value]
572
+
573
+ **Ideal [Your product] customer**: [Persona description in 1-2 sentences]
574
+ ```
575
+
576
+ ### Migration Section
577
+
578
+ ```markdown
579
+ ## Switching from [Competitor]
580
+
581
+ ### What transfers
582
+
583
+ - [Data type]: [How easily, any caveats]
584
+ - [Data type]: [How easily, any caveats]
585
+
586
+ ### What needs reconfiguration
587
+
588
+ - [Thing]: [Why and effort level]
589
+ - [Thing]: [Why and effort level]
590
+
591
+ ### Migration support
592
+
593
+ We offer [migration support details]:
594
+
595
+ - [Free data import tool / white-glove migration]
596
+ - [Documentation / migration guide]
597
+ - [Timeline expectation]
598
+ - [Support during transition]
599
+
600
+ ### What customers say about switching
601
+
602
+ > "[Quote from customer who switched]"
603
+ > — [Name], [Role] at [Company]
604
+ ```
605
+
606
+ ### Social Proof Section
607
+
608
+ Focus on switchers:
609
+
610
+ ```markdown
611
+ ## What Customers Say
612
+
613
+ ### Switched from [Competitor]
614
+
615
+ > "[Specific quote about why they switched and outcome]"
616
+ > — [Name], [Role] at [Company]
617
+
618
+ > "[Another quote]"
619
+ > — [Name], [Role] at [Company]
620
+
621
+ ### Results after switching
622
+
623
+ - [Company] saw [specific result]
624
+ - [Company] reduced [metric] by [amount]
625
+ ```
626
+
627
+ ---
628
+
629
+ ## Comparison Table Best Practices
630
+
631
+ ### Beyond Checkmarks
632
+
633
+ Instead of:
634
+ | Feature | You | Competitor |
635
+ |---------|-----|-----------|
636
+ | Feature A | ✓ | ✓ |
637
+ | Feature B | ✓ | ✗ |
638
+
639
+ Do this:
640
+ | Feature | You | Competitor |
641
+ |---------|-----|-----------|
642
+ | Feature A | Full support with [detail] | Basic support, [limitation] |
643
+ | Feature B | [Specific capability] | Not available |
644
+
645
+ ### Organize by Category
646
+
647
+ Group features into meaningful categories:
648
+
649
+ - Core functionality
650
+ - Collaboration
651
+ - Integrations
652
+ - Security & compliance
653
+ - Support & service
654
+
655
+ ### Include Ratings Where Useful
656
+
657
+ | Category | You | Competitor | Notes |
658
+ | ------------- | ---------- | ---------- | ------------ |
659
+ | Ease of use | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ | [Brief note] |
660
+ | Feature depth | ⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | [Brief note] |
661
+
662
+ ---
663
+
664
+ ## Research Process
665
+
666
+ ### Deep Competitor Research
667
+
668
+ For each competitor, gather:
669
+
670
+ 1. **Product research**
671
+ - Sign up for free trial
672
+ - Use the product yourself
673
+ - Document features, UX, limitations
674
+ - Take screenshots
675
+
676
+ 2. **Pricing research**
677
+ - Current pricing (check regularly)
678
+ - What's included at each tier
679
+ - Hidden costs, add-ons
680
+ - Contract terms
681
+
682
+ 3. **Review mining**
683
+ - G2, Capterra, TrustRadius reviews
684
+ - Common praise themes
685
+ - Common complaint themes
686
+ - Ratings by category
687
+
688
+ 4. **Customer feedback**
689
+ - Talk to customers who switched
690
+ - Talk to prospects who chose competitor
691
+ - Document real quotes
692
+
693
+ 5. **Content research**
694
+ - Their positioning and messaging
695
+ - Their comparison pages (how do they compare to you?)
696
+ - Their documentation quality
697
+ - Their changelog (recent development)
698
+
699
+ ### Ongoing Updates
700
+
701
+ Competitor pages need maintenance:
702
+
703
+ - **Quarterly**: Verify pricing, check for major feature changes
704
+ - **When notified**: Customer mentions competitor change
705
+ - **Annually**: Full refresh of all competitor data
706
+
707
+ ---
708
+
709
+ ## SEO Considerations
710
+
711
+ ### Keyword Targeting
712
+
713
+ | Format | Primary Keywords | Secondary Keywords |
714
+ | ------------------------ | ------------------------- | --------------------------------------------------------------------------------- |
715
+ | Alternative (singular) | [Competitor] alternative | alternative to [Competitor], switch from [Competitor], [Competitor] replacement |
716
+ | Alternatives (plural) | [Competitor] alternatives | best [Competitor] alternatives, tools like [Competitor], [Competitor] competitors |
717
+ | You vs Competitor | [You] vs [Competitor] | [Competitor] vs [You], [You] compared to [Competitor] |
718
+ | Competitor vs Competitor | [A] vs [B] | [B] vs [A], [A] or [B], [A] compared to [B] |
719
+
720
+ ### Internal Linking
721
+
722
+ - Link between related competitor pages
723
+ - Link from feature pages to relevant comparisons
724
+ - Link from blog posts mentioning competitors
725
+ - Hub page linking to all competitor content
726
+
727
+ ### Schema Markup
728
+
729
+ Consider FAQ schema for common questions:
730
+
731
+ ```json
732
+ {
733
+ "@type": "FAQPage",
734
+ "mainEntity": [
735
+ {
736
+ "@type": "Question",
737
+ "name": "What is the best alternative to [Competitor]?",
738
+ "acceptedAnswer": {
739
+ "@type": "Answer",
740
+ "text": "[Your answer positioning yourself]"
741
+ }
742
+ }
743
+ ]
744
+ }
745
+ ```
746
+
747
+ ---
748
+
749
+ ## Output Format
750
+
751
+ ### Competitor Data File
752
+
753
+ ```yaml
754
+ # [competitor].yaml
755
+ # Complete competitor profile for use across all comparison pages
756
+ ```
757
+
758
+ ### Page Content
759
+
760
+ For each page:
761
+
762
+ - URL and meta tags
763
+ - Full page copy organized by section
764
+ - Comparison tables
765
+ - CTAs
766
+
767
+ ### Page Set Plan
768
+
769
+ Recommended pages to create:
770
+
771
+ 1. [List of alternative pages]
772
+ 2. [List of vs pages]
773
+ 3. Priority order based on search volume
774
+
775
+ ---
776
+
777
+ ## Questions to Ask
778
+
779
+ If you need more context:
780
+
781
+ 1. Who are your top 3-5 competitors?
782
+ 2. What's your core differentiator?
783
+ 3. What are common reasons people switch to you?
784
+ 4. Do you have customer quotes about switching?
785
+ 5. What's your pricing vs. competitors?
786
+ 6. Do you offer migration support?
787
+
788
+ ---
789
+
790
+ ## Related Skills
791
+
792
+ - **programmatic-seo**: For building competitor pages at scale
793
+ - **copywriting**: For writing compelling comparison copy
794
+ - **seo-audit**: For optimizing competitor pages
795
+ - **schema-markup**: For FAQ and comparison schema