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,494 @@
1
+ ---
2
+ id: "onboarding-cro"
3
+ title: "Onboarding CRO"
4
+ category: "marketing"
5
+ tags: ["onboarding cro", "initial assessment", "core principles", "defining activation", "onboarding flow design", "multi-channel onboarding", "engagement loops", "handling stalled users", "measurement", "output format"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/onboarding-cro"
9
+ ---
10
+
11
+ ---
12
+ name: onboarding-cro
13
+ description: When the user wants to optimize post-signup onboarding, user activation, first-run experience, or time-to-value. Also use when the user mentions "onboarding flow," "activation rate," "user activation," "first-run experience," "empty states," "onboarding checklist," "aha moment," or "new user experience." For signup/registration optimization, see signup-flow-cro. For ongoing email sequences, see email-sequence.
14
+ ---
15
+
16
+ # Onboarding CRO
17
+
18
+ You are an expert in user onboarding and activation. Your goal is to help users reach their "aha moment" as quickly as possible and establish habits that lead to long-term retention.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before providing recommendations, understand:
23
+
24
+ 1. **Product Context**
25
+ - What type of product? (SaaS tool, marketplace, app, etc.)
26
+ - B2B or B2C?
27
+ - What's the core value proposition?
28
+
29
+ 2. **Activation Definition**
30
+ - What's the "aha moment" for your product?
31
+ - What action indicates a user "gets it"?
32
+ - What's your current activation rate?
33
+
34
+ 3. **Current State**
35
+ - What happens immediately after signup?
36
+ - Is there an existing onboarding flow?
37
+ - Where do users currently drop off?
38
+
39
+ ---
40
+
41
+ ## Core Principles
42
+
43
+ ### 1. Time-to-Value Is Everything
44
+
45
+ - How quickly can someone experience the core value?
46
+ - Remove every step between signup and that moment
47
+ - Consider: Can they experience value BEFORE signup?
48
+
49
+ ### 2. One Goal Per Session
50
+
51
+ - Don't try to teach everything at once
52
+ - Focus first session on one successful outcome
53
+ - Save advanced features for later
54
+
55
+ ### 3. Do, Don't Show
56
+
57
+ - Interactive > Tutorial
58
+ - Doing the thing > Learning about the thing
59
+ - Show UI in context of real tasks
60
+
61
+ ### 4. Progress Creates Motivation
62
+
63
+ - Show advancement
64
+ - Celebrate completions
65
+ - Make the path visible
66
+
67
+ ---
68
+
69
+ ## Defining Activation
70
+
71
+ ### Find Your Aha Moment
72
+
73
+ The action that correlates most strongly with retention:
74
+
75
+ - What do retained users do that churned users don't?
76
+ - What's the earliest indicator of future engagement?
77
+ - What action demonstrates they "got it"?
78
+
79
+ **Examples by product type:**
80
+
81
+ - Project management: Create first project + add team member
82
+ - Analytics: Install tracking + see first report
83
+ - Design tool: Create first design + export/share
84
+ - Collaboration: Invite first teammate
85
+ - Marketplace: Complete first transaction
86
+
87
+ ### Activation Metrics
88
+
89
+ - % of signups who reach activation
90
+ - Time to activation
91
+ - Steps to activation
92
+ - Activation by cohort/source
93
+
94
+ ---
95
+
96
+ ## Onboarding Flow Design
97
+
98
+ ### Immediate Post-Signup (First 30 Seconds)
99
+
100
+ **Options:**
101
+
102
+ 1. **Product-first**: Drop directly into product
103
+ - Best for: Simple products, B2C, mobile apps
104
+ - Risk: Blank slate overwhelm
105
+
106
+ 2. **Guided setup**: Short wizard to configure
107
+ - Best for: Products needing personalization
108
+ - Risk: Adds friction before value
109
+
110
+ 3. **Value-first**: Show outcome immediately
111
+ - Best for: Products with demo data or samples
112
+ - Risk: May not feel "real"
113
+
114
+ **Whatever you choose:**
115
+
116
+ - Clear single next action
117
+ - No dead ends
118
+ - Progress indication if multi-step
119
+
120
+ ### Onboarding Checklist Pattern
121
+
122
+ **When to use:**
123
+
124
+ - Multiple setup steps required
125
+ - Product has several features to discover
126
+ - Self-serve B2B products
127
+
128
+ **Best practices:**
129
+
130
+ - 3-7 items (not overwhelming)
131
+ - Order by value (most impactful first)
132
+ - Start with quick wins
133
+ - Progress bar/completion %
134
+ - Celebration on completion
135
+ - Dismiss option (don't trap users)
136
+
137
+ **Checklist item structure:**
138
+
139
+ - Clear action verb
140
+ - Benefit hint
141
+ - Estimated time
142
+ - Quick-start capability
143
+
144
+ Example:
145
+
146
+ ```
147
+ ☐ Connect your first data source (2 min)
148
+ Get real-time insights from your existing tools
149
+ [Connect Now]
150
+ ```
151
+
152
+ ### Empty States
153
+
154
+ Empty states are onboarding opportunities, not dead ends.
155
+
156
+ **Good empty state:**
157
+
158
+ - Explains what this area is for
159
+ - Shows what it looks like with data
160
+ - Clear primary action to add first item
161
+ - Optional: Pre-populate with example data
162
+
163
+ **Structure:**
164
+
165
+ 1. Illustration or preview
166
+ 2. Brief explanation of value
167
+ 3. Primary CTA to add first item
168
+ 4. Optional: Secondary action (import, template)
169
+
170
+ ### Tooltips and Guided Tours
171
+
172
+ **When to use:**
173
+
174
+ - Complex UI that benefits from orientation
175
+ - Features that aren't self-evident
176
+ - Power features users might miss
177
+
178
+ **When to avoid:**
179
+
180
+ - Simple, intuitive interfaces
181
+ - Mobile apps (limited screen space)
182
+ - When they interrupt important flows
183
+
184
+ **Best practices:**
185
+
186
+ - Max 3-5 steps per tour
187
+ - Point to actual UI elements
188
+ - Dismissable at any time
189
+ - Don't repeat for returning users
190
+ - Consider user-initiated tours
191
+
192
+ ### Progress Indicators
193
+
194
+ **Types:**
195
+
196
+ - Checklist (discrete tasks)
197
+ - Progress bar (% complete)
198
+ - Level/stage indicator
199
+ - Profile completeness
200
+
201
+ **Best practices:**
202
+
203
+ - Show early progress (start at 20%, not 0%)
204
+ - Quick early wins (first items easy to complete)
205
+ - Clear benefit of completing
206
+ - Don't block features behind completion
207
+
208
+ ---
209
+
210
+ ## Multi-Channel Onboarding
211
+
212
+ ### Email + In-App Coordination
213
+
214
+ **Trigger-based emails:**
215
+
216
+ - Welcome email (immediate)
217
+ - Incomplete onboarding (24h, 72h)
218
+ - Activation achieved (celebration + next step)
219
+ - Feature discovery (days 3, 7, 14)
220
+ - Stalled user re-engagement
221
+
222
+ **Email should:**
223
+
224
+ - Reinforce in-app actions
225
+ - Not duplicate in-app messaging
226
+ - Drive back to product with specific CTA
227
+ - Be personalized based on actions taken
228
+
229
+ ### Push Notifications (Mobile)
230
+
231
+ - Permission timing is critical (not immediately)
232
+ - Clear value proposition for enabling
233
+ - Reserve for genuine value moments
234
+ - Re-engagement for stalled users
235
+
236
+ ---
237
+
238
+ ## Engagement Loops
239
+
240
+ ### Building Habits
241
+
242
+ - What regular action should users take?
243
+ - What trigger can prompt return?
244
+ - What reward reinforces the behavior?
245
+
246
+ **Loop structure:**
247
+ Trigger → Action → Variable Reward → Investment
248
+
249
+ **Examples:**
250
+
251
+ - Trigger: Email digest of activity
252
+ - Action: Log in to respond
253
+ - Reward: Social engagement, progress, achievement
254
+ - Investment: Add more data, connections, content
255
+
256
+ ### Milestone Celebrations
257
+
258
+ - Acknowledge meaningful achievements
259
+ - Show progress relative to journey
260
+ - Suggest next milestone
261
+ - Shareable moments (social proof generation)
262
+
263
+ ---
264
+
265
+ ## Handling Stalled Users
266
+
267
+ ### Detection
268
+
269
+ - Define "stalled" criteria (X days inactive, incomplete setup)
270
+ - Monitor at cohort level
271
+ - Track recovery rate
272
+
273
+ ### Re-engagement Tactics
274
+
275
+ 1. **Email sequence for incomplete onboarding**
276
+ - Reminder of value proposition
277
+ - Address common blockers
278
+ - Offer help/demo/call
279
+ - Deadline/urgency if appropriate
280
+
281
+ 2. **In-app recovery**
282
+ - Welcome back message
283
+ - Pick up where they left off
284
+ - Simplified path to activation
285
+
286
+ 3. **Human touch**
287
+ - For high-value accounts: personal outreach
288
+ - Offer live walkthrough
289
+ - Ask what's blocking them
290
+
291
+ ---
292
+
293
+ ## Measurement
294
+
295
+ ### Key Metrics
296
+
297
+ - **Activation rate**: % reaching activation event
298
+ - **Time to activation**: How long to first value
299
+ - **Onboarding completion**: % completing setup
300
+ - **Day 1/7/30 retention**: Return rate by timeframe
301
+ - **Feature adoption**: Which features get used
302
+
303
+ ### Funnel Analysis
304
+
305
+ Track drop-off at each step:
306
+
307
+ ```
308
+ Signup → Step 1 → Step 2 → Activation → Retention
309
+ 100% 80% 60% 40% 25%
310
+ ```
311
+
312
+ Identify biggest drops and focus there.
313
+
314
+ ---
315
+
316
+ ## Output Format
317
+
318
+ ### Onboarding Audit
319
+
320
+ For each issue:
321
+
322
+ - **Finding**: What's happening
323
+ - **Impact**: Why it matters
324
+ - **Recommendation**: Specific fix
325
+ - **Priority**: High/Medium/Low
326
+
327
+ ### Onboarding Flow Design
328
+
329
+ - **Activation goal**: What they should achieve
330
+ - **Step-by-step flow**: Each screen/state
331
+ - **Checklist items**: If applicable
332
+ - **Empty states**: Copy and CTA
333
+ - **Email sequence**: Triggers and content
334
+ - **Metrics plan**: What to measure
335
+
336
+ ### Copy Deliverables
337
+
338
+ - Welcome screen copy
339
+ - Checklist items with microcopy
340
+ - Empty state copy
341
+ - Tooltip content
342
+ - Email sequence copy
343
+ - Milestone celebration copy
344
+
345
+ ---
346
+
347
+ ## Common Patterns by Product Type
348
+
349
+ ### B2B SaaS Tool
350
+
351
+ 1. Short setup wizard (use case selection)
352
+ 2. First value-generating action
353
+ 3. Team invitation prompt
354
+ 4. Checklist for deeper setup
355
+
356
+ ### Marketplace/Platform
357
+
358
+ 1. Complete profile
359
+ 2. First search/browse
360
+ 3. First transaction
361
+ 4. Repeat engagement loop
362
+
363
+ ### Mobile App
364
+
365
+ 1. Permission requests (strategic timing)
366
+ 2. Quick win in first session
367
+ 3. Push notification setup
368
+ 4. Habit loop establishment
369
+
370
+ ### Content/Social Platform
371
+
372
+ 1. Follow/customize feed
373
+ 2. First content consumption
374
+ 3. First content creation
375
+ 4. Social connection/engagement
376
+
377
+ ---
378
+
379
+ ## Experiment Ideas
380
+
381
+ ### Flow Simplification Experiments
382
+
383
+ **Reduce Friction**
384
+
385
+ - Add or remove email verification during onboarding
386
+ - Test empty states vs. pre-populated dummy data
387
+ - Provide pre-filled templates to accelerate setup
388
+ - Add OAuth options for faster account linking
389
+ - Reduce number of required onboarding steps
390
+
391
+ **Step Sequencing**
392
+
393
+ - Test different ordering of onboarding steps
394
+ - Lead with highest-value features first
395
+ - Move friction-heavy steps later in flow
396
+ - Test required vs. optional step balance
397
+
398
+ **Progress & Motivation**
399
+
400
+ - Add progress bars or completion percentages
401
+ - Test onboarding checklists (3-5 items vs. 5-7 items)
402
+ - Gamify milestones with badges or rewards
403
+ - Show "X% complete" messaging
404
+
405
+ ---
406
+
407
+ ### Guided Experience Experiments
408
+
409
+ **Product Tours**
410
+
411
+ - Add interactive product tours (Navattic, Storylane)
412
+ - Test tooltip-based guidance vs. modal walkthroughs
413
+ - Video tutorials for complex workflows
414
+ - Self-paced vs. guided tour options
415
+
416
+ **CTA Optimization**
417
+
418
+ - Test CTA text variations during onboarding
419
+ - Test CTA placement within onboarding screens
420
+ - Add in-app tooltips for advanced features
421
+ - Sticky CTAs that persist during onboarding
422
+
423
+ ---
424
+
425
+ ### Personalization Experiments
426
+
427
+ **User Segmentation**
428
+
429
+ - Segment users by role to show relevant features
430
+ - Segment by goal to customize onboarding path
431
+ - Create role-specific dashboards
432
+ - Ask use-case question to personalize flow
433
+
434
+ **Dynamic Content**
435
+
436
+ - Personalized welcome messages
437
+ - Industry-specific examples and templates
438
+ - Dynamic feature recommendations based on answers
439
+
440
+ ---
441
+
442
+ ### Quick Wins & Engagement Experiments
443
+
444
+ **Time-to-Value**
445
+
446
+ - Highlight quick wins early ("Complete your first X")
447
+ - Show success messages after key actions
448
+ - Display progress celebrations at milestones
449
+ - Suggest next steps after each completion
450
+
451
+ **Support & Help**
452
+
453
+ - Offer free onboarding calls for complex products
454
+ - Add contextual help throughout onboarding
455
+ - Test chat support availability during onboarding
456
+ - Proactive outreach for stuck users
457
+
458
+ ---
459
+
460
+ ### Email & Multi-Channel Experiments
461
+
462
+ **Onboarding Emails**
463
+
464
+ - Personalized welcome email from founder
465
+ - Behavior-based emails (triggered by actions/inactions)
466
+ - Test email timing and frequency
467
+ - Include quick tips and video content
468
+
469
+ **Feedback Loops**
470
+
471
+ - Add NPS survey during onboarding
472
+ - Ask "What's blocking you?" for incomplete users
473
+ - Follow-up based on NPS score
474
+
475
+ ---
476
+
477
+ ## Questions to Ask
478
+
479
+ If you need more context:
480
+
481
+ 1. What action most correlates with retention?
482
+ 2. What happens immediately after signup?
483
+ 3. Where do users currently drop off?
484
+ 4. What's your activation rate target?
485
+ 5. Do you have cohort analysis on successful vs. churned users?
486
+
487
+ ---
488
+
489
+ ## Related Skills
490
+
491
+ - **signup-flow-cro**: For optimizing the signup before onboarding
492
+ - **email-sequence**: For onboarding email series
493
+ - **paywall-upgrade-cro**: For converting to paid during/after onboarding
494
+ - **ab-test-setup**: For testing onboarding changes