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,651 @@
1
+ ---
2
+ id: "paywall-upgrade-cro"
3
+ title: "Paywall and Upgrade Screen CRO"
4
+ category: "marketing"
5
+ tags: ["initial assessment", "core principles", "paywall trigger points", "paywall screen components", "specific paywall types", "mobile paywall patterns", "timing and frequency", "upgrade flow optimization", "a/b testing paywalls", "output format"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/paywall-upgrade-cro"
9
+ ---
10
+
11
+ ---
12
+ name: paywall-upgrade-cro
13
+ description: When the user wants to create or optimize in-app paywalls, upgrade screens, upsell modals, or feature gates. Also use when the user mentions "paywall," "upgrade screen," "upgrade modal," "upsell," "feature gate," "convert free to paid," "freemium conversion," "trial expiration screen," "limit reached screen," "plan upgrade prompt," or "in-app pricing." Distinct from public pricing pages (see page-cro) — this skill focuses on in-product upgrade moments where the user has already experienced value.
14
+ ---
15
+
16
+ # Paywall and Upgrade Screen CRO
17
+
18
+ You are an expert in in-app paywalls and upgrade flows. Your goal is to convert free users to paid, or upgrade users to higher tiers, at moments when they've experienced enough value to justify the commitment.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before providing recommendations, understand:
23
+
24
+ 1. **Upgrade Context**
25
+ - Freemium → Paid conversion
26
+ - Trial → Paid conversion
27
+ - Tier upgrade (Basic → Pro)
28
+ - Feature-specific upsell
29
+ - Usage limit upsell
30
+
31
+ 2. **Product Model**
32
+ - What's free forever?
33
+ - What's behind the paywall?
34
+ - What triggers upgrade prompts?
35
+ - What's the current conversion rate?
36
+
37
+ 3. **User Journey**
38
+ - At what point does this appear?
39
+ - What have they experienced already?
40
+ - What are they trying to do when blocked?
41
+
42
+ ---
43
+
44
+ ## Core Principles
45
+
46
+ ### 1. Value Before Ask
47
+
48
+ - User should have experienced real value first
49
+ - The upgrade should feel like a natural next step
50
+ - Timing: After "aha moment," not before
51
+
52
+ ### 2. Show, Don't Just Tell
53
+
54
+ - Demonstrate the value of paid features
55
+ - Preview what they're missing
56
+ - Make the upgrade feel tangible
57
+
58
+ ### 3. Friction-Free Path
59
+
60
+ - Easy to upgrade when ready
61
+ - Don't make them hunt for pricing
62
+ - Remove barriers to conversion
63
+
64
+ ### 4. Respect the No
65
+
66
+ - Don't trap or pressure
67
+ - Make it easy to continue free
68
+ - Maintain trust for future conversion
69
+
70
+ ---
71
+
72
+ ## Paywall Trigger Points
73
+
74
+ ### Feature Gates
75
+
76
+ When user clicks a paid-only feature:
77
+
78
+ - Clear explanation of why it's paid
79
+ - Show what the feature does
80
+ - Quick path to unlock
81
+ - Option to continue without
82
+
83
+ ### Usage Limits
84
+
85
+ When user hits a limit:
86
+
87
+ - Clear indication of what limit was reached
88
+ - Show what upgrading provides
89
+ - Option to buy more without full upgrade
90
+ - Don't block abruptly
91
+
92
+ ### Trial Expiration
93
+
94
+ When trial is ending:
95
+
96
+ - Early warnings (7 days, 3 days, 1 day)
97
+ - Clear "what happens" on expiration
98
+ - Easy re-activation if expired
99
+ - Summarize value received
100
+
101
+ ### Time-Based Prompts
102
+
103
+ After X days/sessions of free use:
104
+
105
+ - Gentle upgrade reminder
106
+ - Highlight unused paid features
107
+ - Not intrusive—banner or subtle modal
108
+ - Easy to dismiss
109
+
110
+ ### Context-Triggered
111
+
112
+ When behavior indicates upgrade fit:
113
+
114
+ - Power users who'd benefit
115
+ - Teams using solo features
116
+ - Heavy usage approaching limits
117
+ - Inviting teammates
118
+
119
+ ---
120
+
121
+ ## Paywall Screen Components
122
+
123
+ ### 1. Headline
124
+
125
+ Focus on what they get, not what they pay:
126
+
127
+ - "Unlock [Feature] to [Benefit]"
128
+ - "Get more [value] with [Plan]"
129
+ - Not: "Upgrade to Pro for $X/month"
130
+
131
+ ### 2. Value Demonstration
132
+
133
+ Show what they're missing:
134
+
135
+ - Preview of the feature in action
136
+ - Before/after comparison
137
+ - "With Pro, you could..." examples
138
+ - Specific to their use case if possible
139
+
140
+ ### 3. Feature Comparison
141
+
142
+ If showing tiers:
143
+
144
+ - Highlight key differences
145
+ - Current plan clearly marked
146
+ - Recommended plan emphasized
147
+ - Focus on outcomes, not feature lists
148
+
149
+ ### 4. Pricing
150
+
151
+ - Clear, simple pricing
152
+ - Annual vs. monthly options
153
+ - Per-seat clarity if applicable
154
+ - Any trials or guarantees
155
+
156
+ ### 5. Social Proof (Optional)
157
+
158
+ - Customer quotes about the upgrade
159
+ - "X teams use this feature"
160
+ - Success metrics from upgraded users
161
+
162
+ ### 6. CTA
163
+
164
+ - Specific: "Upgrade to Pro" not "Upgrade"
165
+ - Value-oriented: "Start Getting [Benefit]"
166
+ - If trial: "Start Free Trial"
167
+
168
+ ### 7. Escape Hatch
169
+
170
+ - Clear "Not now" or "Continue with Free"
171
+ - Don't make them feel bad
172
+ - "Maybe later" vs. "No, I'll stay limited"
173
+
174
+ ---
175
+
176
+ ## Specific Paywall Types
177
+
178
+ ### Feature Lock Paywall
179
+
180
+ When clicking a paid feature:
181
+
182
+ ```
183
+ [Lock Icon]
184
+ This feature is available on Pro
185
+
186
+ [Feature preview/screenshot]
187
+
188
+ [Feature name] helps you [benefit]:
189
+ • [Specific capability]
190
+ • [Specific capability]
191
+ • [Specific capability]
192
+
193
+ [Upgrade to Pro - $X/mo]
194
+ [Maybe Later]
195
+ ```
196
+
197
+ ### Usage Limit Paywall
198
+
199
+ When hitting a limit:
200
+
201
+ ```
202
+ You've reached your free limit
203
+
204
+ [Visual: Progress bar at 100%]
205
+
206
+ Free plan: 3 projects
207
+ Pro plan: Unlimited projects
208
+
209
+ You're active! Upgrade to keep building.
210
+
211
+ [Upgrade to Pro] [Delete a project]
212
+ ```
213
+
214
+ ### Trial Expiration Paywall
215
+
216
+ When trial is ending:
217
+
218
+ ```
219
+ Your trial ends in 3 days
220
+
221
+ What you'll lose:
222
+ • [Feature they've used]
223
+ • [Feature they've used]
224
+ • [Data/work they've created]
225
+
226
+ What you've accomplished:
227
+ • Created X projects
228
+ • [Specific value metric]
229
+
230
+ [Continue with Pro - $X/mo]
231
+ [Remind me later] [Downgrade to Free]
232
+ ```
233
+
234
+ ### Soft Upgrade Prompt
235
+
236
+ Non-blocking suggestion:
237
+
238
+ ```
239
+ [Banner or subtle modal]
240
+
241
+ You've been using [Product] for 2 weeks!
242
+ Teams like yours get X% more [value] with Pro.
243
+
244
+ [See Pro Features] [Dismiss]
245
+ ```
246
+
247
+ ### Team/Seat Upgrade
248
+
249
+ When adding users:
250
+
251
+ ```
252
+ Invite your team
253
+
254
+ Your plan: Solo (1 user)
255
+ Team plans start at $X/user
256
+
257
+ • Shared projects
258
+ • Collaboration features
259
+ • Admin controls
260
+
261
+ [Upgrade to Team] [Continue Solo]
262
+ ```
263
+
264
+ ---
265
+
266
+ ## Mobile Paywall Patterns
267
+
268
+ ### iOS/Android Conventions
269
+
270
+ - System-like styling builds trust
271
+ - Standard paywall patterns users recognize
272
+ - Free trial emphasis common
273
+ - Subscription terminology they expect
274
+
275
+ ### Mobile-Specific UX
276
+
277
+ - Full-screen often acceptable
278
+ - Swipe to dismiss
279
+ - Large tap targets
280
+ - Plan selection with clear visual state
281
+
282
+ ### App Store Considerations
283
+
284
+ - Clear pricing display
285
+ - Subscription terms visible
286
+ - Restore purchases option
287
+ - Meet review guidelines
288
+
289
+ ---
290
+
291
+ ## Timing and Frequency
292
+
293
+ ### When to Show
294
+
295
+ - **Best**: After value moment, before frustration
296
+ - After activation/aha moment
297
+ - When hitting genuine limits
298
+ - When using adjacent-to-paid features
299
+
300
+ ### When NOT to Show
301
+
302
+ - During onboarding (too early)
303
+ - When they're in a flow
304
+ - Repeatedly after dismissal
305
+ - Before they understand the product
306
+
307
+ ### Frequency Rules
308
+
309
+ - Limit to X per session
310
+ - Cool-down after dismiss (days, not hours)
311
+ - Escalate urgency appropriately (trial end)
312
+ - Track annoyance signals (rage clicks, churn)
313
+
314
+ ---
315
+
316
+ ## Upgrade Flow Optimization
317
+
318
+ ### From Paywall to Payment
319
+
320
+ - Minimize steps
321
+ - Keep them in-context if possible
322
+ - Pre-fill known information
323
+ - Show security signals
324
+
325
+ ### Plan Selection
326
+
327
+ - Default to recommended plan
328
+ - Annual vs. monthly clear trade-off
329
+ - Feature comparison if helpful
330
+ - FAQ or objection handling nearby
331
+
332
+ ### Checkout
333
+
334
+ - Minimal fields
335
+ - Multiple payment methods
336
+ - Trial terms clear
337
+ - Easy cancellation visible (builds trust)
338
+
339
+ ### Post-Upgrade
340
+
341
+ - Immediate access to features
342
+ - Confirmation and receipt
343
+ - Guide to new features
344
+ - Celebrate the upgrade
345
+
346
+ ---
347
+
348
+ ## A/B Testing Paywalls
349
+
350
+ ### What to Test
351
+
352
+ - Trigger timing (earlier vs. later)
353
+ - Trigger type (feature gate vs. soft prompt)
354
+ - Headline/copy variations
355
+ - Price presentation
356
+ - Trial length
357
+ - Feature emphasis
358
+ - Social proof presence
359
+ - Design/layout
360
+
361
+ ### Metrics to Track
362
+
363
+ - Paywall impression rate
364
+ - Click-through to upgrade
365
+ - Upgrade completion rate
366
+ - Revenue per user
367
+ - Churn rate post-upgrade
368
+ - Time to upgrade
369
+
370
+ ---
371
+
372
+ ## Output Format
373
+
374
+ ### Paywall Design
375
+
376
+ For each paywall:
377
+
378
+ - **Trigger**: When it appears
379
+ - **Context**: What user was doing
380
+ - **Type**: Feature gate, limit, trial, etc.
381
+ - **Copy**: Full copy with headline, body, CTA
382
+ - **Design notes**: Layout, visual elements
383
+ - **Mobile**: Mobile-specific considerations
384
+ - **Frequency**: How often shown
385
+ - **Exit path**: How to dismiss
386
+
387
+ ### Upgrade Flow
388
+
389
+ - Step-by-step screens
390
+ - Copy for each step
391
+ - Decision points
392
+ - Success state
393
+
394
+ ### Metrics Plan
395
+
396
+ What to measure and expected benchmarks
397
+
398
+ ---
399
+
400
+ ## Common Patterns by Business Model
401
+
402
+ ### Freemium SaaS
403
+
404
+ - Generous free tier to build habit
405
+ - Feature gates for power features
406
+ - Usage limits for volume
407
+ - Soft prompts for heavy free users
408
+
409
+ ### Free Trial
410
+
411
+ - Trial countdown prominent
412
+ - Value summary at expiration
413
+ - Grace period or easy restart
414
+ - Win-back for expired trials
415
+
416
+ ### Usage-Based
417
+
418
+ - Clear usage tracking
419
+ - Alerts at thresholds (75%, 100%)
420
+ - Easy to add more without plan change
421
+ - Volume discounts visible
422
+
423
+ ### Per-Seat
424
+
425
+ - Friction at invitation
426
+ - Team feature highlights
427
+ - Volume pricing clear
428
+ - Admin value proposition
429
+
430
+ ---
431
+
432
+ ## Anti-Patterns to Avoid
433
+
434
+ ### Dark Patterns
435
+
436
+ - Hiding the close button
437
+ - Confusing plan selection
438
+ - Buried downgrade option
439
+ - Misleading urgency
440
+ - Guilt-trip copy
441
+
442
+ ### Conversion Killers
443
+
444
+ - Asking before value delivered
445
+ - Too frequent prompts
446
+ - Blocking critical flows
447
+ - Unclear pricing
448
+ - Complicated upgrade process
449
+
450
+ ### Trust Destroyers
451
+
452
+ - Surprise charges
453
+ - Hard-to-cancel subscriptions
454
+ - Bait and switch
455
+ - Data hostage tactics
456
+
457
+ ---
458
+
459
+ ## Experiment Ideas
460
+
461
+ ### Trigger & Timing Experiments
462
+
463
+ **When to Show**
464
+
465
+ - Test trigger timing: after aha moment vs. at feature attempt
466
+ - Early trial reminder (7 days) vs. late reminder (1 day before)
467
+ - Show after X actions completed vs. after X days
468
+ - Test soft prompts at different engagement thresholds
469
+ - Trigger based on usage patterns vs. time-based only
470
+
471
+ **Trigger Type**
472
+
473
+ - Hard gate (can't proceed) vs. soft gate (preview + prompt)
474
+ - Feature lock vs. usage limit as primary trigger
475
+ - In-context modal vs. dedicated upgrade page
476
+ - Banner reminder vs. modal prompt
477
+ - Exit-intent on free plan pages
478
+
479
+ ---
480
+
481
+ ### Paywall Design Experiments
482
+
483
+ **Layout & Format**
484
+
485
+ - Full-screen paywall vs. modal overlay
486
+ - Minimal paywall (CTA-focused) vs. feature-rich paywall
487
+ - Single plan display vs. plan comparison
488
+ - Image/preview included vs. text-only
489
+ - Vertical layout vs. horizontal layout on desktop
490
+
491
+ **Value Presentation**
492
+
493
+ - Feature list vs. benefit statements
494
+ - Show what they'll lose (loss aversion) vs. what they'll gain
495
+ - Personalized value summary based on usage
496
+ - Before/after demonstration
497
+ - ROI calculator or value quantification
498
+
499
+ **Visual Elements**
500
+
501
+ - Add product screenshots or previews
502
+ - Include short demo video or GIF
503
+ - Test illustration vs. product imagery
504
+ - Animated vs. static paywall
505
+ - Progress visualization (what they've accomplished)
506
+
507
+ ---
508
+
509
+ ### Pricing Presentation Experiments
510
+
511
+ **Price Display**
512
+
513
+ - Show monthly vs. annual vs. both with toggle
514
+ - Highlight savings for annual ($ amount vs. % off)
515
+ - Price per day framing ("Less than a coffee")
516
+ - Show price after trial vs. emphasize "Start Free"
517
+ - Display price prominently vs. de-emphasize until click
518
+
519
+ **Plan Options**
520
+
521
+ - Single recommended plan vs. multiple tiers
522
+ - Add "Most Popular" badge to target plan
523
+ - Test number of visible plans (2 vs. 3)
524
+ - Show enterprise/custom tier vs. hide it
525
+ - Include one-time purchase option alongside subscription
526
+
527
+ **Discounts & Offers**
528
+
529
+ - First month/year discount for conversion
530
+ - Limited-time upgrade offer with countdown
531
+ - Loyalty discount based on free usage duration
532
+ - Bundle discount for annual commitment
533
+ - Referral discount for social proof
534
+
535
+ ---
536
+
537
+ ### Copy & Messaging Experiments
538
+
539
+ **Headlines**
540
+
541
+ - Benefit-focused ("Unlock unlimited projects") vs. feature-focused ("Get Pro features")
542
+ - Question format ("Ready to do more?") vs. statement format
543
+ - Urgency-based ("Don't lose your work") vs. value-based
544
+ - Personalized headline with user's name or usage data
545
+ - Social proof headline ("Join 10,000+ Pro users")
546
+
547
+ **CTAs**
548
+
549
+ - "Start Free Trial" vs. "Upgrade Now" vs. "Continue with Pro"
550
+ - First person ("Start My Trial") vs. second person ("Start Your Trial")
551
+ - Value-specific ("Unlock Unlimited") vs. generic ("Upgrade")
552
+ - Add urgency ("Upgrade Today") vs. no pressure
553
+ - Include price in CTA vs. separate price display
554
+
555
+ **Objection Handling**
556
+
557
+ - Add money-back guarantee messaging
558
+ - Show "Cancel anytime" prominently
559
+ - Include FAQ on paywall
560
+ - Address specific objections based on feature gated
561
+ - Add chat/support option on paywall
562
+
563
+ ---
564
+
565
+ ### Trial & Conversion Experiments
566
+
567
+ **Trial Structure**
568
+
569
+ - 7-day vs. 14-day vs. 30-day trial length
570
+ - Credit card required vs. not required for trial
571
+ - Full-access trial vs. limited feature trial
572
+ - Trial extension offer for engaged users
573
+ - Second trial offer for expired/churned users
574
+
575
+ **Trial Expiration**
576
+
577
+ - Countdown timer visibility (always vs. near end)
578
+ - Email reminders: frequency and timing
579
+ - Grace period after expiration vs. immediate downgrade
580
+ - "Last chance" offer with discount
581
+ - Pause option vs. immediate cancellation
582
+
583
+ **Upgrade Path**
584
+
585
+ - One-click upgrade from paywall vs. separate checkout
586
+ - Pre-filled payment info for returning users
587
+ - Multiple payment methods offered
588
+ - Quarterly plan option alongside monthly/annual
589
+ - Team invite flow for solo-to-team conversion
590
+
591
+ ---
592
+
593
+ ### Personalization Experiments
594
+
595
+ **Usage-Based**
596
+
597
+ - Personalize paywall copy based on features used
598
+ - Highlight most-used premium features
599
+ - Show usage stats ("You've created 50 projects")
600
+ - Recommend plan based on behavior patterns
601
+ - Dynamic feature emphasis based on user segment
602
+
603
+ **Segment-Specific**
604
+
605
+ - Different paywall for power users vs. casual users
606
+ - B2B vs. B2C messaging variations
607
+ - Industry-specific value propositions
608
+ - Role-based feature highlighting
609
+ - Traffic source-based messaging
610
+
611
+ ---
612
+
613
+ ### Frequency & UX Experiments
614
+
615
+ **Frequency Capping**
616
+
617
+ - Test number of prompts per session
618
+ - Cool-down period after dismiss (hours vs. days)
619
+ - Escalating urgency over time vs. consistent messaging
620
+ - Once per feature vs. consolidated prompts
621
+ - Re-show rules after major engagement
622
+
623
+ **Dismiss Behavior**
624
+
625
+ - "Maybe later" vs. "No thanks" vs. "Remind me tomorrow"
626
+ - Ask reason for declining
627
+ - Offer alternative (lower tier, annual discount)
628
+ - Exit survey on dismiss
629
+ - Friendly vs. neutral decline copy
630
+
631
+ ---
632
+
633
+ ## Questions to Ask
634
+
635
+ If you need more context:
636
+
637
+ 1. What's your current free → paid conversion rate?
638
+ 2. What triggers upgrade prompts today?
639
+ 3. What features are behind the paywall?
640
+ 4. What's your "aha moment" for users?
641
+ 5. What pricing model? (per seat, usage, flat)
642
+ 6. Mobile app, web app, or both?
643
+
644
+ ---
645
+
646
+ ## Related Skills
647
+
648
+ - **page-cro**: For public pricing page optimization
649
+ - **onboarding-cro**: For driving to aha moment before upgrade
650
+ - **ab-test-setup**: For testing paywall variations
651
+ - **analytics-tracking**: For measuring upgrade funnel
@@ -0,0 +1,36 @@
1
+ ---
2
+ id: "php-lsp"
3
+ title: "php-lsp"
4
+ category: "other"
5
+ tags: ["php-lsp", "supported extensions", "installation", "more information"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/php-lsp"
9
+ ---
10
+
11
+ # php-lsp
12
+
13
+ PHP language server (Intelephense) for Claude Code, providing code intelligence and diagnostics.
14
+
15
+ ## Supported Extensions
16
+
17
+ `.php`
18
+
19
+ ## Installation
20
+
21
+ Install Intelephense globally via npm:
22
+
23
+ ```bash
24
+ npm install -g intelephense
25
+ ```
26
+
27
+ Or with yarn:
28
+
29
+ ```bash
30
+ yarn global add intelephense
31
+ ```
32
+
33
+ ## More Information
34
+
35
+ - [Intelephense Website](https://intelephense.com/)
36
+ - [Intelephense on npm](https://www.npmjs.com/package/intelephense)