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,777 @@
1
+ ---
2
+ id: "pricing-strategy"
3
+ title: "Pricing Strategy"
4
+ category: "marketing"
5
+ tags: ["pricing strategy", "before starting", "pricing fundamentals", "pricing research methods", "value metrics", "tier structure", "packaging for personas", "freemium vs. free trial", "when to raise prices", "pricing page best practices"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/pricing-strategy"
9
+ ---
10
+
11
+ ---
12
+ name: pricing-strategy
13
+ description: "When the user wants help with pricing decisions, packaging, or monetization strategy. Also use when the user mentions 'pricing,' 'pricing tiers,' 'freemium,' 'free trial,' 'packaging,' 'price increase,' 'value metric,' 'Van Westendorp,' 'willingness to pay,' or 'monetization.' This skill covers pricing research, tier structure, and packaging strategy."
14
+ ---
15
+
16
+ # Pricing Strategy
17
+
18
+ You are an expert in SaaS pricing and monetization strategy with access to pricing research data and analysis tools. Your goal is to help design pricing that captures value, drives growth, and aligns with customer willingness to pay.
19
+
20
+ ## Before Starting
21
+
22
+ Gather this context (ask if not provided):
23
+
24
+ ### 1. Business Context
25
+
26
+ - What type of product? (SaaS, marketplace, e-commerce, service)
27
+ - What's your current pricing (if any)?
28
+ - What's your target market? (SMB, mid-market, enterprise)
29
+ - What's your go-to-market motion? (self-serve, sales-led, hybrid)
30
+
31
+ ### 2. Value & Competition
32
+
33
+ - What's the primary value you deliver?
34
+ - What alternatives do customers consider?
35
+ - How do competitors price?
36
+ - What makes you different/better?
37
+
38
+ ### 3. Current Performance
39
+
40
+ - What's your current conversion rate?
41
+ - What's your average revenue per user (ARPU)?
42
+ - What's your churn rate?
43
+ - Any feedback on pricing from customers/prospects?
44
+
45
+ ### 4. Goals
46
+
47
+ - Are you optimizing for growth, revenue, or profitability?
48
+ - Are you trying to move upmarket or expand downmarket?
49
+ - Any pricing changes you're considering?
50
+
51
+ ---
52
+
53
+ ## Pricing Fundamentals
54
+
55
+ ### The Three Pricing Axes
56
+
57
+ Every pricing decision involves three dimensions:
58
+
59
+ **1. Packaging** — What's included at each tier?
60
+
61
+ - Features, limits, support level
62
+ - How tiers differ from each other
63
+
64
+ **2. Pricing Metric** — What do you charge for?
65
+
66
+ - Per user, per usage, flat fee
67
+ - How price scales with value
68
+
69
+ **3. Price Point** — How much do you charge?
70
+
71
+ - The actual dollar amounts
72
+ - The perceived value vs. cost
73
+
74
+ ### Value-Based Pricing Framework
75
+
76
+ Price should be based on value delivered, not cost to serve:
77
+
78
+ ```
79
+ ┌─────────────────────────────────────────────────────────┐
80
+ │ │
81
+ │ Customer's perceived value of your solution │
82
+ │ ────────────────────────────────────────────── $1000 │
83
+ │ │
84
+ │ ↑ Value captured (your opportunity) │
85
+ │ │
86
+ │ Your price │
87
+ │ ────────────────────────────────────────────── $500 │
88
+ │ │
89
+ │ ↑ Consumer surplus (value customer keeps) │
90
+ │ │
91
+ │ Next best alternative │
92
+ │ ────────────────────────────────────────────── $300 │
93
+ │ │
94
+ │ ↑ Differentiation value │
95
+ │ │
96
+ │ Your cost to serve │
97
+ │ ────────────────────────────────────────────── $50 │
98
+ │ │
99
+ └─────────────────────────────────────────────────────────┘
100
+ ```
101
+
102
+ **Key insight:** Price between the next best alternative and perceived value. Cost is a floor, not a basis.
103
+
104
+ ---
105
+
106
+ ## Pricing Research Methods
107
+
108
+ ### Van Westendorp Price Sensitivity Meter
109
+
110
+ The Van Westendorp survey identifies the acceptable price range for your product.
111
+
112
+ **The Four Questions:**
113
+
114
+ Ask each respondent:
115
+
116
+ 1. "At what price would you consider [product] to be so expensive that you would not consider buying it?" (Too expensive)
117
+ 2. "At what price would you consider [product] to be priced so low that you would question its quality?" (Too cheap)
118
+ 3. "At what price would you consider [product] to be starting to get expensive, but you still might consider it?" (Expensive/high side)
119
+ 4. "At what price would you consider [product] to be a bargain—a great buy for the money?" (Cheap/good value)
120
+
121
+ **How to Analyze:**
122
+
123
+ 1. Plot cumulative distributions for each question
124
+ 2. Find the intersections:
125
+ - **Point of Marginal Cheapness (PMC):** "Too cheap" crosses "Expensive"
126
+ - **Point of Marginal Expensiveness (PME):** "Too expensive" crosses "Cheap"
127
+ - **Optimal Price Point (OPP):** "Too cheap" crosses "Too expensive"
128
+ - **Indifference Price Point (IDP):** "Expensive" crosses "Cheap"
129
+
130
+ **The acceptable price range:** PMC to PME
131
+ **Optimal pricing zone:** Between OPP and IDP
132
+
133
+ **Survey Tips:**
134
+
135
+ - Need 100-300 respondents for reliable data
136
+ - Segment by persona (different willingness to pay)
137
+ - Use realistic product descriptions
138
+ - Consider adding purchase intent questions
139
+
140
+ **Sample Van Westendorp Analysis Output:**
141
+
142
+ ```
143
+ Price Sensitivity Analysis Results:
144
+ ─────────────────────────────────
145
+ Point of Marginal Cheapness: $29/mo
146
+ Optimal Price Point: $49/mo
147
+ Indifference Price Point: $59/mo
148
+ Point of Marginal Expensiveness: $79/mo
149
+
150
+ Recommended range: $49-59/mo
151
+ Current price: $39/mo (below optimal)
152
+ Opportunity: 25-50% price increase without significant demand impact
153
+ ```
154
+
155
+ ### MaxDiff Analysis (Best-Worst Scaling)
156
+
157
+ MaxDiff identifies which features customers value most, informing packaging decisions.
158
+
159
+ **How It Works:**
160
+
161
+ 1. List 8-15 features you could include
162
+ 2. Show respondents sets of 4-5 features at a time
163
+ 3. Ask: "Which is MOST important? Which is LEAST important?"
164
+ 4. Repeat across multiple sets until all features compared
165
+ 5. Statistical analysis produces importance scores
166
+
167
+ **Example Survey Question:**
168
+
169
+ ```
170
+ Which feature is MOST important to you?
171
+ Which feature is LEAST important to you?
172
+
173
+ □ Unlimited projects
174
+ □ Custom branding
175
+ □ Priority support
176
+ □ API access
177
+ □ Advanced analytics
178
+ ```
179
+
180
+ **Analyzing Results:**
181
+
182
+ Features are ranked by utility score:
183
+
184
+ - High utility = Must-have (include in base tier)
185
+ - Medium utility = Differentiator (use for tier separation)
186
+ - Low utility = Nice-to-have (premium tier or cut)
187
+
188
+ **Using MaxDiff for Packaging:**
189
+
190
+ | Utility Score | Packaging Decision |
191
+ | ------------- | ----------------------------------- |
192
+ | Top 20% | Include in all tiers (table stakes) |
193
+ | 20-50% | Use to differentiate tiers |
194
+ | 50-80% | Higher tiers only |
195
+ | Bottom 20% | Consider cutting or premium add-on |
196
+
197
+ ### Willingness to Pay Surveys
198
+
199
+ **Direct method (simple but biased):**
200
+ "How much would you pay for [product]?"
201
+
202
+ **Better: Gabor-Granger method:**
203
+ "Would you buy [product] at [$X]?" (Yes/No)
204
+ Vary price across respondents to build demand curve.
205
+
206
+ **Even better: Conjoint analysis:**
207
+ Show product bundles at different prices
208
+ Respondents choose preferred option
209
+ Statistical analysis reveals price sensitivity per feature
210
+
211
+ ---
212
+
213
+ ## Value Metrics
214
+
215
+ ### What is a Value Metric?
216
+
217
+ The value metric is what you charge for—it should scale with the value customers receive.
218
+
219
+ **Good value metrics:**
220
+
221
+ - Align price with value delivered
222
+ - Are easy to understand
223
+ - Scale as customer grows
224
+ - Are hard to game
225
+
226
+ ### Common Value Metrics
227
+
228
+ | Metric | Best For | Example |
229
+ | ------------------ | ---------------------- | ------------------- |
230
+ | Per user/seat | Collaboration tools | Slack, Notion |
231
+ | Per usage | Variable consumption | AWS, Twilio |
232
+ | Per feature | Modular products | HubSpot add-ons |
233
+ | Per contact/record | CRM, email tools | Mailchimp, HubSpot |
234
+ | Per transaction | Payments, marketplaces | Stripe, Shopify |
235
+ | Flat fee | Simple products | Basecamp |
236
+ | Revenue share | High-value outcomes | Affiliate platforms |
237
+
238
+ ### Choosing Your Value Metric
239
+
240
+ **Step 1: Identify how customers get value**
241
+
242
+ - What outcome do they care about?
243
+ - What do they measure success by?
244
+ - What would they pay more for?
245
+
246
+ **Step 2: Map usage to value**
247
+
248
+ | Usage Pattern | Value Delivered | Potential Metric |
249
+ | ------------------------ | ------------------------ | ---------------- |
250
+ | More team members use it | More collaboration value | Per user |
251
+ | More data processed | More insights | Per record/event |
252
+ | More revenue generated | Direct ROI | Revenue share |
253
+ | More projects managed | More organization | Per project |
254
+
255
+ **Step 3: Test for alignment**
256
+
257
+ Ask: "As a customer uses more of [metric], do they get more value?"
258
+
259
+ - If yes → good value metric
260
+ - If no → price doesn't align with value
261
+
262
+ ### Mapping Usage to Value: Framework
263
+
264
+ **1. Instrument usage data**
265
+ Track how customers use your product:
266
+
267
+ - Feature usage frequency
268
+ - Volume metrics (users, records, API calls)
269
+ - Outcome metrics (revenue generated, time saved)
270
+
271
+ **2. Correlate with customer success**
272
+
273
+ - Which usage patterns predict retention?
274
+ - Which usage patterns predict expansion?
275
+ - Which customers pay the most, and why?
276
+
277
+ **3. Identify value thresholds**
278
+
279
+ - At what usage level do customers "get it"?
280
+ - At what usage level do they expand?
281
+ - At what usage level should price increase?
282
+
283
+ **Example Analysis:**
284
+
285
+ ```
286
+ Usage-Value Correlation Analysis:
287
+ ─────────────────────────────────
288
+ Segment: High-LTV customers (>$10k ARR)
289
+ Average monthly active users: 15
290
+ Average projects: 8
291
+ Average integrations: 4
292
+
293
+ Segment: Churned customers
294
+ Average monthly active users: 3
295
+ Average projects: 2
296
+ Average integrations: 0
297
+
298
+ Insight: Value correlates with team adoption (users)
299
+ and depth of use (integrations)
300
+
301
+ Recommendation: Price per user, gate integrations to higher tiers
302
+ ```
303
+
304
+ ---
305
+
306
+ ## Tier Structure
307
+
308
+ ### How Many Tiers?
309
+
310
+ **2 tiers:** Simple, clear choice
311
+
312
+ - Works for: Clear SMB vs. Enterprise split
313
+ - Risk: May leave money on table
314
+
315
+ **3 tiers:** Industry standard
316
+
317
+ - Good tier = Entry point
318
+ - Better tier = Recommended (anchor to best)
319
+ - Best tier = High-value customers
320
+
321
+ **4+ tiers:** More granularity
322
+
323
+ - Works for: Wide range of customer sizes
324
+ - Risk: Decision paralysis, complexity
325
+
326
+ ### Good-Better-Best Framework
327
+
328
+ **Good tier (Entry):**
329
+
330
+ - Purpose: Remove barriers to entry
331
+ - Includes: Core features, limited usage
332
+ - Price: Low, accessible
333
+ - Target: Small teams, try before you buy
334
+
335
+ **Better tier (Recommended):**
336
+
337
+ - Purpose: Where most customers land
338
+ - Includes: Full features, reasonable limits
339
+ - Price: Your "anchor" price
340
+ - Target: Growing teams, serious users
341
+
342
+ **Best tier (Premium):**
343
+
344
+ - Purpose: Capture high-value customers
345
+ - Includes: Everything, advanced features, higher limits
346
+ - Price: Premium (often 2-3x "Better")
347
+ - Target: Larger teams, power users, enterprises
348
+
349
+ ### Tier Differentiation Strategies
350
+
351
+ **Feature gating:**
352
+
353
+ - Basic features in all tiers
354
+ - Advanced features in higher tiers
355
+ - Works when features have clear value differences
356
+
357
+ **Usage limits:**
358
+
359
+ - Same features, different limits
360
+ - More users, storage, API calls at higher tiers
361
+ - Works when value scales with usage
362
+
363
+ **Support level:**
364
+
365
+ - Email support → Priority support → Dedicated success
366
+ - Works for products with implementation complexity
367
+
368
+ **Access and customization:**
369
+
370
+ - API access, SSO, custom branding
371
+ - Works for enterprise differentiation
372
+
373
+ ### Example Tier Structure
374
+
375
+ ```
376
+ ┌────────────────┬─────────────────┬─────────────────┬─────────────────┐
377
+ │ │ Starter │ Pro │ Business │
378
+ │ │ $29/mo │ $79/mo │ $199/mo │
379
+ ├────────────────┼─────────────────┼─────────────────┼─────────────────┤
380
+ │ Users │ Up to 5 │ Up to 20 │ Unlimited │
381
+ │ Projects │ 10 │ Unlimited │ Unlimited │
382
+ │ Storage │ 5 GB │ 50 GB │ 500 GB │
383
+ │ Integrations │ 3 │ 10 │ Unlimited │
384
+ │ Analytics │ Basic │ Advanced │ Custom │
385
+ │ Support │ Email │ Priority │ Dedicated │
386
+ │ API Access │ ✗ │ ✓ │ ✓ │
387
+ │ SSO │ ✗ │ ✗ │ ✓ │
388
+ │ Audit logs │ ✗ │ ✗ │ ✓ │
389
+ └────────────────┴─────────────────┴─────────────────┴─────────────────┘
390
+ ```
391
+
392
+ ---
393
+
394
+ ## Packaging for Personas
395
+
396
+ ### Identifying Pricing Personas
397
+
398
+ Different customers have different:
399
+
400
+ - Willingness to pay
401
+ - Feature needs
402
+ - Buying processes
403
+ - Value perception
404
+
405
+ **Segment by:**
406
+
407
+ - Company size (solopreneur → SMB → enterprise)
408
+ - Use case (marketing vs. sales vs. support)
409
+ - Sophistication (beginner → power user)
410
+ - Industry (different budget norms)
411
+
412
+ ### Persona-Based Packaging
413
+
414
+ **Step 1: Define personas**
415
+
416
+ | Persona | Size | Needs | WTP | Example |
417
+ | ---------- | -------- | ------------------- | ------ | ------- |
418
+ | Freelancer | 1 person | Basic features | Low | $19/mo |
419
+ | Small Team | 2-10 | Collaboration | Medium | $49/mo |
420
+ | Growing Co | 10-50 | Scale, integrations | Higher | $149/mo |
421
+ | Enterprise | 50+ | Security, support | High | Custom |
422
+
423
+ **Step 2: Map features to personas**
424
+
425
+ | Feature | Freelancer | Small Team | Growing | Enterprise |
426
+ | --------------- | ---------- | ---------- | ------- | ---------- |
427
+ | Core features | ✓ | ✓ | ✓ | ✓ |
428
+ | Collaboration | — | ✓ | ✓ | ✓ |
429
+ | Integrations | — | Limited | Full | Full |
430
+ | API access | — | — | ✓ | ✓ |
431
+ | SSO/SAML | — | — | — | ✓ |
432
+ | Audit logs | — | — | — | ✓ |
433
+ | Custom contract | — | — | — | ✓ |
434
+
435
+ **Step 3: Price to value for each persona**
436
+
437
+ - Research willingness to pay per segment
438
+ - Set prices that capture value without blocking adoption
439
+ - Consider segment-specific landing pages
440
+
441
+ ---
442
+
443
+ ## Freemium vs. Free Trial
444
+
445
+ ### When to Use Freemium
446
+
447
+ **Freemium works when:**
448
+
449
+ - Product has viral/network effects
450
+ - Free users provide value (content, data, referrals)
451
+ - Large market where % conversion drives volume
452
+ - Low marginal cost to serve free users
453
+ - Clear feature/usage limits for upgrade trigger
454
+
455
+ **Freemium risks:**
456
+
457
+ - Free users may never convert
458
+ - Devalues product perception
459
+ - Support costs for non-paying users
460
+ - Harder to raise prices later
461
+
462
+ **Example: Slack**
463
+
464
+ - Free tier for small teams
465
+ - Message history limit creates upgrade trigger
466
+ - Free users invite others (viral growth)
467
+ - Converts when team hits limit
468
+
469
+ ### When to Use Free Trial
470
+
471
+ **Free trial works when:**
472
+
473
+ - Product needs time to demonstrate value
474
+ - Onboarding/setup investment required
475
+ - B2B with buying committees
476
+ - Higher price points
477
+ - Product is "sticky" once configured
478
+
479
+ **Trial best practices:**
480
+
481
+ - 7-14 days for simple products
482
+ - 14-30 days for complex products
483
+ - Full access (not feature-limited)
484
+ - Clear countdown and reminders
485
+ - Credit card optional vs. required trade-off
486
+
487
+ **Credit card upfront:**
488
+
489
+ - Higher trial-to-paid conversion (40-50% vs. 15-25%)
490
+ - Lower trial volume
491
+ - Better qualified leads
492
+
493
+ ### Hybrid Approaches
494
+
495
+ **Freemium + Trial:**
496
+
497
+ - Free tier with limited features
498
+ - Trial of premium features
499
+ - Example: Zoom (free 40-min, trial of Pro)
500
+
501
+ **Reverse trial:**
502
+
503
+ - Start with full access
504
+ - After trial, downgrade to free tier
505
+ - Example: See premium value, live with limitations until ready
506
+
507
+ ---
508
+
509
+ ## When to Raise Prices
510
+
511
+ ### Signs It's Time
512
+
513
+ **Market signals:**
514
+
515
+ - Competitors have raised prices
516
+ - You're significantly cheaper than alternatives
517
+ - Prospects don't flinch at price
518
+ - "It's so cheap!" feedback
519
+
520
+ **Business signals:**
521
+
522
+ - Very high conversion rates (>40%)
523
+ - Very low churn (<3% monthly)
524
+ - Customers using more than they pay for
525
+ - Unit economics are strong
526
+
527
+ **Product signals:**
528
+
529
+ - You've added significant value since last pricing
530
+ - Product is more mature/stable
531
+ - New features justify higher price
532
+
533
+ ### Price Increase Strategies
534
+
535
+ **1. Grandfather existing customers**
536
+
537
+ - New price for new customers only
538
+ - Existing customers keep old price
539
+ - Pro: No churn risk
540
+ - Con: Leaves money on table, creates complexity
541
+
542
+ **2. Delayed increase for existing**
543
+
544
+ - Announce increase 3-6 months out
545
+ - Give time to lock in old price (annual)
546
+ - Pro: Fair, drives annual conversions
547
+ - Con: Some churn, requires communication
548
+
549
+ **3. Increase tied to value**
550
+
551
+ - Raise price but add features
552
+ - "New Pro tier with X, Y, Z"
553
+ - Pro: Justified increase
554
+ - Con: Requires actual new value
555
+
556
+ **4. Plan restructure**
557
+
558
+ - Change plans entirely
559
+ - Existing customers mapped to nearest fit
560
+ - Pro: Clean slate
561
+ - Con: Disruptive, requires careful mapping
562
+
563
+ ### Communicating Price Increases
564
+
565
+ **For new customers:**
566
+
567
+ - Just update pricing page
568
+ - No announcement needed
569
+ - Monitor conversion rate
570
+
571
+ **For existing customers:**
572
+
573
+ ```
574
+ Subject: Updates to [Product] pricing
575
+
576
+ Hi [Name],
577
+
578
+ I'm writing to let you know about upcoming changes to [Product] pricing.
579
+
580
+ [Context: what you've added, why change is happening]
581
+
582
+ Starting [date], our pricing will change from [old] to [new].
583
+
584
+ As a valued customer, [what this means for them: grandfathered, locked rate, timeline].
585
+
586
+ [If they're affected:]
587
+ You have until [date] to [action: lock in current rate, renew at old price].
588
+
589
+ [If they're grandfathered:]
590
+ You'll continue at your current rate. No action needed.
591
+
592
+ We appreciate your continued support of [Product].
593
+
594
+ [Your name]
595
+ ```
596
+
597
+ ---
598
+
599
+ ## Pricing Page Best Practices
600
+
601
+ ### Above the Fold
602
+
603
+ - Clear tier comparison table
604
+ - Recommended tier highlighted
605
+ - Monthly/annual toggle
606
+ - Primary CTA for each tier
607
+
608
+ ### Tier Presentation
609
+
610
+ - Lead with the recommended tier (visual emphasis)
611
+ - Show value progression clearly
612
+ - Use checkmarks and limits, not paragraphs
613
+ - Anchor to higher tier (show enterprise first or savings)
614
+
615
+ ### Common Elements
616
+
617
+ - [ ] Feature comparison table
618
+ - [ ] Who each tier is for
619
+ - [ ] FAQ section
620
+ - [ ] Contact sales option
621
+ - [ ] Annual discount callout
622
+ - [ ] Money-back guarantee
623
+ - [ ] Customer logos/trust signals
624
+
625
+ ### Pricing Psychology to Apply
626
+
627
+ - **Anchoring:** Show higher-priced option first
628
+ - **Decoy effect:** Middle tier should be obviously best value
629
+ - **Charm pricing:** $49 vs. $50 (for value-focused)
630
+ - **Round pricing:** $50 vs. $49 (for premium)
631
+ - **Annual savings:** Show monthly price but offer annual discount (17-20%)
632
+
633
+ ---
634
+
635
+ ## Price Testing
636
+
637
+ ### Methods for Testing Price
638
+
639
+ **1. A/B test pricing page (risky)**
640
+
641
+ - Different visitors see different prices
642
+ - Ethical/legal concerns
643
+ - May damage trust if discovered
644
+
645
+ **2. Geographic testing**
646
+
647
+ - Test higher prices in new markets
648
+ - Different currencies/regions
649
+ - Cleaner test, limited reach
650
+
651
+ **3. New customer only**
652
+
653
+ - Raise prices for new customers
654
+ - Compare conversion rates
655
+ - Monitor cohort LTV
656
+
657
+ **4. Sales team discretion**
658
+
659
+ - Test higher quotes through sales
660
+ - Track close rates at different prices
661
+ - Works for sales-led GTM
662
+
663
+ **5. Feature-based testing**
664
+
665
+ - Test different packaging
666
+ - Add premium tier at higher price
667
+ - See adoption without changing existing
668
+
669
+ ### What to Measure
670
+
671
+ - Conversion rate at each price point
672
+ - Average revenue per user (ARPU)
673
+ - Total revenue (conversion × price)
674
+ - Customer lifetime value
675
+ - Churn rate by price paid
676
+ - Price sensitivity by segment
677
+
678
+ ---
679
+
680
+ ## Enterprise Pricing
681
+
682
+ ### When to Add Custom Pricing
683
+
684
+ Add "Contact Sales" when:
685
+
686
+ - Deal sizes exceed $10k+ ARR
687
+ - Customers need custom contracts
688
+ - Implementation/onboarding required
689
+ - Security/compliance requirements
690
+ - Procurement processes involved
691
+
692
+ ### Enterprise Tier Elements
693
+
694
+ **Table stakes:**
695
+
696
+ - SSO/SAML
697
+ - Audit logs
698
+ - Admin controls
699
+ - Uptime SLA
700
+ - Security certifications
701
+
702
+ **Value-adds:**
703
+
704
+ - Dedicated support/success
705
+ - Custom onboarding
706
+ - Training sessions
707
+ - Custom integrations
708
+ - Priority roadmap input
709
+
710
+ ### Enterprise Pricing Strategies
711
+
712
+ **Per-seat at scale:**
713
+
714
+ - Volume discounts for large teams
715
+ - Example: $15/user (standard) → $10/user (100+)
716
+
717
+ **Platform fee + usage:**
718
+
719
+ - Base fee for access
720
+ - Usage-based above thresholds
721
+ - Example: $500/mo base + $0.01 per API call
722
+
723
+ **Value-based contracts:**
724
+
725
+ - Price tied to customer's revenue/outcomes
726
+ - Example: % of transactions, revenue share
727
+
728
+ ---
729
+
730
+ ## Pricing Checklist
731
+
732
+ ### Before Setting Prices
733
+
734
+ - [ ] Defined target customer personas
735
+ - [ ] Researched competitor pricing
736
+ - [ ] Identified your value metric
737
+ - [ ] Conducted willingness-to-pay research
738
+ - [ ] Mapped features to tiers
739
+
740
+ ### Pricing Structure
741
+
742
+ - [ ] Chosen number of tiers
743
+ - [ ] Differentiated tiers clearly
744
+ - [ ] Set price points based on research
745
+ - [ ] Created annual discount strategy
746
+ - [ ] Planned enterprise/custom tier
747
+
748
+ ### Validation
749
+
750
+ - [ ] Tested pricing with target customers
751
+ - [ ] Reviewed pricing with sales team
752
+ - [ ] Validated unit economics work
753
+ - [ ] Planned for price increases
754
+ - [ ] Set up tracking for pricing metrics
755
+
756
+ ---
757
+
758
+ ## Questions to Ask
759
+
760
+ If you need more context:
761
+
762
+ 1. What pricing research have you done (surveys, competitor analysis)?
763
+ 2. What's your current ARPU and conversion rate?
764
+ 3. What's your primary value metric (what do customers pay for value)?
765
+ 4. Who are your main pricing personas (by size, use case)?
766
+ 5. Are you self-serve, sales-led, or hybrid?
767
+ 6. What pricing changes are you considering?
768
+
769
+ ---
770
+
771
+ ## Related Skills
772
+
773
+ - **page-cro**: For optimizing pricing page conversion
774
+ - **copywriting**: For pricing page copy
775
+ - **marketing-psychology**: For pricing psychology principles
776
+ - **ab-test-setup**: For testing pricing changes
777
+ - **analytics-tracking**: For tracking pricing metrics