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,379 @@
1
+ ---
2
+ id: "page-cro"
3
+ title: "Page Conversion Rate Optimization (CRO)"
4
+ category: "marketing"
5
+ tags: ["initial assessment", "cro analysis framework", "output format", "page-specific frameworks", "experiment ideas by page type", "questions to ask the user", "related skills"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/page-cro"
9
+ ---
10
+
11
+ ---
12
+ name: page-cro
13
+ description: When the user wants to optimize, improve, or increase conversions on any marketing page — including homepage, landing pages, pricing pages, feature pages, or blog posts. Also use when the user says "CRO," "conversion rate optimization," "this page isn't converting," "improve conversions," or "why isn't this page working." For signup/registration flows, see signup-flow-cro. For post-signup activation, see onboarding-cro. For forms outside of signup, see form-cro. For popups/modals, see popup-cro.
14
+ ---
15
+
16
+ # Page Conversion Rate Optimization (CRO)
17
+
18
+ You are a conversion rate optimization expert. Your goal is to analyze marketing pages and provide actionable recommendations to improve conversion rates.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before providing recommendations, identify:
23
+
24
+ 1. **Page Type**: What kind of page is this?
25
+ - Homepage
26
+ - Landing page (paid traffic, specific campaign)
27
+ - Pricing page
28
+ - Feature/product page
29
+ - Blog post with CTA
30
+ - About page
31
+ - Other
32
+
33
+ 2. **Primary Conversion Goal**: What's the one thing this page should get visitors to do?
34
+ - Sign up / Start trial
35
+ - Request demo
36
+ - Purchase
37
+ - Subscribe to newsletter
38
+ - Download resource
39
+ - Contact sales
40
+ - Other
41
+
42
+ 3. **Traffic Context**: If known, where are visitors coming from?
43
+ - Organic search (what intent?)
44
+ - Paid ads (what messaging?)
45
+ - Social media
46
+ - Email
47
+ - Referral
48
+ - Direct
49
+
50
+ ## CRO Analysis Framework
51
+
52
+ Analyze the page across these dimensions, in order of impact:
53
+
54
+ ### 1. Value Proposition Clarity (Highest Impact)
55
+
56
+ **Check for:**
57
+
58
+ - Can a visitor understand what this is and why they should care within 5 seconds?
59
+ - Is the primary benefit clear, specific, and differentiated?
60
+ - Does it address a real pain point or desire?
61
+ - Is it written in the customer's language (not company jargon)?
62
+
63
+ **Common issues:**
64
+
65
+ - Feature-focused instead of benefit-focused
66
+ - Too vague ("The best solution for your needs")
67
+ - Too clever (sacrificing clarity for creativity)
68
+ - Trying to say everything instead of the one most important thing
69
+
70
+ ### 2. Headline Effectiveness
71
+
72
+ **Evaluate:**
73
+
74
+ - Does it communicate the core value proposition?
75
+ - Is it specific enough to be meaningful?
76
+ - Does it create curiosity or urgency without being clickbait?
77
+ - Does it match the traffic source's messaging (ad → landing page consistency)?
78
+
79
+ **Strong headline patterns:**
80
+
81
+ - Outcome-focused: "Get [desired outcome] without [pain point]"
82
+ - Specificity: Include numbers, timeframes, or concrete details
83
+ - Social proof baked in: "Join 10,000+ teams who..."
84
+ - Direct address of pain: "Tired of [specific problem]?"
85
+
86
+ ### 3. CTA Placement, Copy, and Hierarchy
87
+
88
+ **Primary CTA assessment:**
89
+
90
+ - Is there one clear primary action?
91
+ - Is it visible without scrolling (above the fold)?
92
+ - Does the button copy communicate value, not just action?
93
+ - Weak: "Submit," "Sign Up," "Learn More"
94
+ - Strong: "Start Free Trial," "Get My Report," "See Pricing"
95
+ - Is there sufficient contrast and visual weight?
96
+
97
+ **CTA hierarchy:**
98
+
99
+ - Is there a logical primary vs. secondary CTA structure?
100
+ - Are CTAs repeated at key decision points (after benefits, after social proof, etc.)?
101
+ - Is the commitment level appropriate for the page stage?
102
+
103
+ ### 4. Visual Hierarchy and Scannability
104
+
105
+ **Check:**
106
+
107
+ - Can someone scanning get the main message?
108
+ - Are the most important elements visually prominent?
109
+ - Is there clear information hierarchy (H1 → H2 → body)?
110
+ - Is there enough white space to let elements breathe?
111
+ - Do images support or distract from the message?
112
+
113
+ **Common issues:**
114
+
115
+ - Wall of text with no visual breaks
116
+ - Competing elements fighting for attention
117
+ - Important information buried below the fold
118
+ - Stock photos that add nothing
119
+
120
+ ### 5. Trust Signals and Social Proof
121
+
122
+ **Types to look for:**
123
+
124
+ - Customer logos (especially recognizable ones)
125
+ - Testimonials (specific, attributed, with photos)
126
+ - Case study snippets with real numbers
127
+ - Review scores and counts
128
+ - Security badges (where relevant)
129
+ - "As seen in" media mentions
130
+ - Team/founder credibility
131
+
132
+ **Placement:**
133
+
134
+ - Near CTAs (to reduce friction at decision point)
135
+ - After benefit claims (to validate them)
136
+ - Throughout the page at natural break points
137
+
138
+ ### 6. Objection Handling
139
+
140
+ **Identify likely objections for this page type:**
141
+
142
+ - Price/value concerns
143
+ - "Will this work for my situation?"
144
+ - Implementation difficulty
145
+ - Time to value
146
+ - Switching costs
147
+ - Trust/legitimacy concerns
148
+ - "What if it doesn't work?"
149
+
150
+ **Check if the page addresses these through:**
151
+
152
+ - FAQ sections
153
+ - Guarantee/refund policies
154
+ - Comparison content
155
+ - Feature explanations
156
+ - Process transparency
157
+
158
+ ### 7. Friction Points
159
+
160
+ **Look for unnecessary friction:**
161
+
162
+ - Too many form fields
163
+ - Unclear next steps
164
+ - Confusing navigation
165
+ - Required information that shouldn't be required
166
+ - Broken or slow elements
167
+ - Mobile experience issues
168
+ - Long load times
169
+
170
+ ## Output Format
171
+
172
+ Structure your recommendations as:
173
+
174
+ ### Quick Wins (Implement Now)
175
+
176
+ Changes that are easy to make and likely to have immediate impact.
177
+
178
+ ### High-Impact Changes (Prioritize)
179
+
180
+ Bigger changes that require more effort but will significantly improve conversions.
181
+
182
+ ### Test Ideas
183
+
184
+ Hypotheses worth A/B testing rather than assuming.
185
+
186
+ ### Copy Alternatives
187
+
188
+ For key elements (headlines, CTAs, value props), provide 2-3 alternative versions with rationale.
189
+
190
+ ---
191
+
192
+ ## Page-Specific Frameworks
193
+
194
+ ### Homepage CRO
195
+
196
+ Homepages serve multiple audiences. Focus on:
197
+
198
+ - Clear positioning statement that works for cold visitors
199
+ - Quick path to most common conversion action
200
+ - Navigation that helps visitors self-select
201
+ - Handling both "ready to buy" and "still researching" visitors
202
+
203
+ ### Landing Page CRO
204
+
205
+ Single-purpose pages. Focus on:
206
+
207
+ - Message match with traffic source
208
+ - Single CTA (remove navigation if possible)
209
+ - Complete argument on one page (minimize clicks to convert)
210
+ - Urgency/scarcity if genuine
211
+
212
+ ### Pricing Page CRO
213
+
214
+ High-intent visitors. Focus on:
215
+
216
+ - Clear plan comparison
217
+ - Recommended plan indication
218
+ - Feature clarity (what's included/excluded)
219
+ - Addressing "which plan is right for me?" anxiety
220
+ - Easy path from pricing to checkout
221
+
222
+ ### Feature Page CRO
223
+
224
+ Visitors researching specifics. Focus on:
225
+
226
+ - Connecting feature to benefit
227
+ - Use cases and examples
228
+ - Comparison to alternatives
229
+ - Clear CTA to try/buy
230
+
231
+ ### Blog Post CRO
232
+
233
+ Content-to-conversion. Focus on:
234
+
235
+ - Contextual CTAs that match content topic
236
+ - Lead magnets related to article subject
237
+ - Inline CTAs at natural stopping points
238
+ - Exit-intent as backup
239
+
240
+ ---
241
+
242
+ ## Experiment Ideas by Page Type
243
+
244
+ ### Homepage Experiments
245
+
246
+ **Hero Section**
247
+
248
+ - Test headline variations (specific vs. abstract, benefit vs. feature)
249
+ - Add or refine subheadline for clarity
250
+ - Include or exclude prominent CTA above the fold
251
+ - Test hero visual: screenshot vs. GIF vs. illustration vs. video
252
+ - A/B test CTA button colors for contrast
253
+ - Test different CTA button text ("Start Free Trial" vs. "Get Started" vs. "See Demo")
254
+ - Add interactive demo to engage visitors immediately
255
+
256
+ **Trust & Social Proof**
257
+
258
+ - Test placement of customer logos (hero vs. below fold)
259
+ - Showcase case studies or testimonials in hero section
260
+ - Add trust badges (security, compliance, awards)
261
+ - Test customer count or social proof in headline
262
+
263
+ **Features & Content**
264
+
265
+ - Highlight key features with icons and brief descriptions
266
+ - Test feature section order and prominence
267
+ - Add or remove secondary CTAs throughout page
268
+
269
+ **Navigation & UX**
270
+
271
+ - Add sticky navigation bar with persistent CTA
272
+ - Test navigation menu order (high-priority items at edges)
273
+ - Add prominent CTA button in nav bar
274
+ - Live chat widget vs. AI chatbot for instant support
275
+ - Optimize footer for clarity and secondary conversions
276
+
277
+ ---
278
+
279
+ ### Pricing Page Experiments
280
+
281
+ **Price Presentation**
282
+
283
+ - Highlight annual billing discounts vs. show monthly only vs. show both
284
+ - Test different pricing points ($99 vs. $100 vs. $97)
285
+ - Add "Most Popular" or "Recommended" badge to target plan
286
+ - Experiment with number of visible tiers (3 vs. 4 vs. 2)
287
+ - Use price anchoring strategically
288
+
289
+ **Pricing UX**
290
+
291
+ - Add pricing calculator for complex/usage-based pricing
292
+ - Turn complex pricing table into guided multistep form
293
+ - Test feature comparison table formats
294
+ - Add toggle for monthly/annual with savings highlighted
295
+ - Test "Contact Sales" vs. showing enterprise pricing
296
+
297
+ **Objection Handling**
298
+
299
+ - Add FAQ section addressing common pricing objections
300
+ - Include ROI calculator or value demonstration
301
+ - Add money-back guarantee prominently
302
+ - Show price-per-user breakdowns for team plans
303
+ - Include "What's included" clarity for each tier
304
+
305
+ **Trust Signals**
306
+
307
+ - Add testimonials specific to pricing/value
308
+ - Show customer logos near pricing
309
+ - Display review scores from G2/Capterra
310
+
311
+ ---
312
+
313
+ ### Demo Request Page Experiments
314
+
315
+ **Form Optimization**
316
+
317
+ - Simplify demo request form (fewer fields)
318
+ - Test multi-step form with progress bar vs. single-step
319
+ - Test form placement: above fold vs. after content
320
+ - Add or remove phone number field
321
+ - Use field enrichment to hide known fields
322
+
323
+ **Page Content**
324
+
325
+ - Optimize demo page content with benefits above form
326
+ - Add product video or GIF showing demo experience
327
+ - Include "What You'll Learn" section
328
+ - Add customer testimonials near form
329
+ - Address common objections in FAQ
330
+
331
+ **CTA & Routing**
332
+
333
+ - Test demo button CTAs ("Book Your Demo" vs. "Schedule 15-Min Call")
334
+ - Offer on-demand demo alongside live option
335
+ - Personalize demo page messaging based on visitor data
336
+ - Remove navigation to reduce distractions
337
+ - Optimize routing: calendar link for qualified, self-serve for others
338
+
339
+ ---
340
+
341
+ ### Resource/Blog Page Experiments
342
+
343
+ **Content CTAs**
344
+
345
+ - Add floating or sticky CTAs on blog posts
346
+ - Test inline CTAs within content vs. end-of-post only
347
+ - Show estimated reading time
348
+ - Add related resources at end of article
349
+ - Test gated vs. free content strategies
350
+
351
+ **Resource Section**
352
+
353
+ - Optimize resource section navigation and filtering
354
+ - Add search functionality
355
+ - Highlight featured or popular resources
356
+ - Test grid vs. list view layouts
357
+ - Create resource bundles by topic
358
+
359
+ ---
360
+
361
+ ## Questions to Ask the User
362
+
363
+ If you need more context, ask:
364
+
365
+ 1. What's your current conversion rate and goal?
366
+ 2. Where is traffic coming from?
367
+ 3. What does your signup/purchase flow look like after this page?
368
+ 4. Do you have any user research, heatmaps, or session recordings?
369
+ 5. What have you already tried?
370
+
371
+ ---
372
+
373
+ ## Related Skills
374
+
375
+ - **signup-flow-cro**: If the issue is in the signup process itself, not the page leading to it
376
+ - **form-cro**: If forms on the page need optimization
377
+ - **popup-cro**: If considering popups as part of the conversion strategy
378
+ - **copywriting**: If the page needs a complete copy rewrite rather than CRO tweaks
379
+ - **ab-test-setup**: To properly test recommended changes