mover-os 4.0.0

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.

Potentially problematic release.


This version of mover-os might be problematic. Click here for more details.

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