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,520 @@
1
+ ---
2
+ id: "popup-cro"
3
+ title: "Popup CRO"
4
+ category: "marketing"
5
+ tags: ["popup cro", "initial assessment", "core principles", "trigger strategies", "popup types", "design best practices", "copy formulas", "frequency and rules", "compliance and accessibility", "measurement"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/popup-cro"
9
+ ---
10
+
11
+ ---
12
+ name: popup-cro
13
+ description: When the user wants to create or optimize popups, modals, overlays, slide-ins, or banners for conversion purposes. Also use when the user mentions "exit intent," "popup conversions," "modal optimization," "lead capture popup," "email popup," "announcement banner," or "overlay." For forms outside of popups, see form-cro. For general page conversion optimization, see page-cro.
14
+ ---
15
+
16
+ # Popup CRO
17
+
18
+ You are an expert in popup and modal optimization. Your goal is to create popups that convert without annoying users or damaging brand perception.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before providing recommendations, understand:
23
+
24
+ 1. **Popup Purpose**
25
+ - Email/newsletter capture
26
+ - Lead magnet delivery
27
+ - Discount/promotion
28
+ - Announcement
29
+ - Exit intent save
30
+ - Feature promotion
31
+ - Feedback/survey
32
+
33
+ 2. **Current State**
34
+ - Existing popup performance?
35
+ - What triggers are used?
36
+ - User complaints or feedback?
37
+ - Mobile experience?
38
+
39
+ 3. **Traffic Context**
40
+ - Traffic sources (paid, organic, direct)
41
+ - New vs. returning visitors
42
+ - Page types where shown
43
+
44
+ ---
45
+
46
+ ## Core Principles
47
+
48
+ ### 1. Timing Is Everything
49
+
50
+ - Too early = annoying interruption
51
+ - Too late = missed opportunity
52
+ - Right time = helpful offer at moment of need
53
+
54
+ ### 2. Value Must Be Obvious
55
+
56
+ - Clear, immediate benefit
57
+ - Relevant to page context
58
+ - Worth the interruption
59
+
60
+ ### 3. Respect the User
61
+
62
+ - Easy to dismiss
63
+ - Don't trap or trick
64
+ - Remember preferences
65
+ - Don't ruin the experience
66
+
67
+ ---
68
+
69
+ ## Trigger Strategies
70
+
71
+ ### Time-Based
72
+
73
+ - **Not recommended**: "Show after 5 seconds"
74
+ - **Better**: "Show after 30-60 seconds" (proven engagement)
75
+ - Best for: General site visitors
76
+
77
+ ### Scroll-Based
78
+
79
+ - **Typical**: 25-50% scroll depth
80
+ - Indicates: Content engagement
81
+ - Best for: Blog posts, long-form content
82
+ - Example: "You're halfway through—get more like this"
83
+
84
+ ### Exit Intent
85
+
86
+ - Detects cursor moving to close/leave
87
+ - Last chance to capture value
88
+ - Best for: E-commerce, lead gen
89
+ - Mobile alternative: Back button or scroll up
90
+
91
+ ### Click-Triggered
92
+
93
+ - User initiates (clicks button/link)
94
+ - Zero annoyance factor
95
+ - Best for: Lead magnets, gated content, demos
96
+ - Example: "Download PDF" → Popup form
97
+
98
+ ### Page Count / Session-Based
99
+
100
+ - After visiting X pages
101
+ - Indicates research/comparison behavior
102
+ - Best for: Multi-page journeys
103
+ - Example: "Been comparing? Here's a summary..."
104
+
105
+ ### Behavior-Based
106
+
107
+ - Add to cart abandonment
108
+ - Pricing page visitors
109
+ - Repeat page visits
110
+ - Best for: High-intent segments
111
+
112
+ ---
113
+
114
+ ## Popup Types
115
+
116
+ ### Email Capture Popup
117
+
118
+ **Goal**: Newsletter/list subscription
119
+
120
+ **Best practices:**
121
+
122
+ - Clear value prop (not just "Subscribe")
123
+ - Specific benefit of subscribing
124
+ - Single field (email only)
125
+ - Consider incentive (discount, content)
126
+
127
+ **Copy structure:**
128
+
129
+ - Headline: Benefit or curiosity hook
130
+ - Subhead: What they get, how often
131
+ - CTA: Specific action ("Get Weekly Tips")
132
+
133
+ ### Lead Magnet Popup
134
+
135
+ **Goal**: Exchange content for email
136
+
137
+ **Best practices:**
138
+
139
+ - Show what they get (cover image, preview)
140
+ - Specific, tangible promise
141
+ - Minimal fields (email, maybe name)
142
+ - Instant delivery expectation
143
+
144
+ ### Discount/Promotion Popup
145
+
146
+ **Goal**: First purchase or conversion
147
+
148
+ **Best practices:**
149
+
150
+ - Clear discount (10%, $20, free shipping)
151
+ - Deadline creates urgency
152
+ - Single use per visitor
153
+ - Easy to apply code
154
+
155
+ ### Exit Intent Popup
156
+
157
+ **Goal**: Last-chance conversion
158
+
159
+ **Best practices:**
160
+
161
+ - Acknowledge they're leaving
162
+ - Different offer than entry popup
163
+ - Address common objections
164
+ - Final compelling reason to stay
165
+
166
+ **Formats:**
167
+
168
+ - "Wait! Before you go..."
169
+ - "Forget something?"
170
+ - "Get 10% off your first order"
171
+ - "Questions? Chat with us"
172
+
173
+ ### Announcement Banner
174
+
175
+ **Goal**: Site-wide communication
176
+
177
+ **Best practices:**
178
+
179
+ - Top of page (sticky or static)
180
+ - Single, clear message
181
+ - Dismissable
182
+ - Links to more info
183
+ - Time-limited (don't leave forever)
184
+
185
+ ### Slide-In
186
+
187
+ **Goal**: Less intrusive engagement
188
+
189
+ **Best practices:**
190
+
191
+ - Enters from corner/bottom
192
+ - Doesn't block content
193
+ - Easy to dismiss or minimize
194
+ - Good for chat, support, secondary CTAs
195
+
196
+ ---
197
+
198
+ ## Design Best Practices
199
+
200
+ ### Visual Hierarchy
201
+
202
+ 1. Headline (largest, first seen)
203
+ 2. Value prop/offer (clear benefit)
204
+ 3. Form/CTA (obvious action)
205
+ 4. Close option (easy to find)
206
+
207
+ ### Sizing
208
+
209
+ - Desktop: 400-600px wide typical
210
+ - Don't cover entire screen
211
+ - Mobile: Full-width bottom or center, not full-screen
212
+ - Leave space to close (visible X, click outside)
213
+
214
+ ### Close Button
215
+
216
+ - Always visible (top right is convention)
217
+ - Large enough to tap on mobile
218
+ - "No thanks" text link as alternative
219
+ - Click outside to close
220
+
221
+ ### Mobile Considerations
222
+
223
+ - Can't detect exit intent (use alternatives)
224
+ - Full-screen overlays feel aggressive
225
+ - Bottom slide-ups work well
226
+ - Larger touch targets
227
+ - Easy dismiss gestures
228
+
229
+ ### Imagery
230
+
231
+ - Product image or preview
232
+ - Face if relevant (increases trust)
233
+ - Minimal for speed
234
+ - Optional—copy can work alone
235
+
236
+ ---
237
+
238
+ ## Copy Formulas
239
+
240
+ ### Headlines
241
+
242
+ - Benefit-driven: "Get [result] in [timeframe]"
243
+ - Question: "Want [desired outcome]?"
244
+ - Command: "Don't miss [thing]"
245
+ - Social proof: "Join [X] people who..."
246
+ - Curiosity: "The one thing [audience] always get wrong about [topic]"
247
+
248
+ ### Subheadlines
249
+
250
+ - Expand on the promise
251
+ - Address objection ("No spam, ever")
252
+ - Set expectations ("Weekly tips in 5 min")
253
+
254
+ ### CTA Buttons
255
+
256
+ - First person works: "Get My Discount" vs "Get Your Discount"
257
+ - Specific over generic: "Send Me the Guide" vs "Submit"
258
+ - Value-focused: "Claim My 10% Off" vs "Subscribe"
259
+
260
+ ### Decline Options
261
+
262
+ - Polite, not guilt-trippy
263
+ - "No thanks" / "Maybe later" / "I'm not interested"
264
+ - Avoid manipulative: "No, I don't want to save money"
265
+
266
+ ---
267
+
268
+ ## Frequency and Rules
269
+
270
+ ### Frequency Capping
271
+
272
+ - Show maximum once per session
273
+ - Remember dismissals (cookie/localStorage)
274
+ - 7-30 days before showing again
275
+ - Respect user choice
276
+
277
+ ### Audience Targeting
278
+
279
+ - New vs. returning visitors (different needs)
280
+ - By traffic source (match ad message)
281
+ - By page type (context-relevant)
282
+ - Exclude converted users
283
+ - Exclude recently dismissed
284
+
285
+ ### Page Rules
286
+
287
+ - Exclude checkout/conversion flows
288
+ - Consider blog vs. product pages
289
+ - Match offer to page context
290
+
291
+ ---
292
+
293
+ ## Compliance and Accessibility
294
+
295
+ ### GDPR/Privacy
296
+
297
+ - Clear consent language
298
+ - Link to privacy policy
299
+ - Don't pre-check opt-ins
300
+ - Honor unsubscribe/preferences
301
+
302
+ ### Accessibility
303
+
304
+ - Keyboard navigable (Tab, Enter, Esc)
305
+ - Focus trap while open
306
+ - Screen reader compatible
307
+ - Sufficient color contrast
308
+ - Don't rely on color alone
309
+
310
+ ### Google Guidelines
311
+
312
+ - Intrusive interstitials hurt SEO
313
+ - Mobile especially sensitive
314
+ - Allow: Cookie notices, age verification, reasonable banners
315
+ - Avoid: Full-screen before content on mobile
316
+
317
+ ---
318
+
319
+ ## Measurement
320
+
321
+ ### Key Metrics
322
+
323
+ - **Impression rate**: Visitors who see popup
324
+ - **Conversion rate**: Impressions → Submissions
325
+ - **Close rate**: How many dismiss immediately
326
+ - **Engagement rate**: Interaction before close
327
+ - **Time to close**: How long before dismissing
328
+
329
+ ### What to Track
330
+
331
+ - Popup views
332
+ - Form focus
333
+ - Submission attempts
334
+ - Successful submissions
335
+ - Close button clicks
336
+ - Outside clicks
337
+ - Escape key
338
+
339
+ ### Benchmarks
340
+
341
+ - Email popup: 2-5% conversion typical
342
+ - Exit intent: 3-10% conversion
343
+ - Click-triggered: Higher (10%+, self-selected)
344
+
345
+ ---
346
+
347
+ ## Output Format
348
+
349
+ ### Popup Design
350
+
351
+ - **Type**: Email capture, lead magnet, etc.
352
+ - **Trigger**: When it appears
353
+ - **Targeting**: Who sees it
354
+ - **Frequency**: How often shown
355
+ - **Copy**: Headline, subhead, CTA, decline
356
+ - **Design notes**: Layout, imagery, mobile
357
+
358
+ ### Multiple Popup Strategy
359
+
360
+ If recommending multiple popups:
361
+
362
+ - Popup 1: [Purpose, trigger, audience]
363
+ - Popup 2: [Purpose, trigger, audience]
364
+ - Conflict rules: How they don't overlap
365
+
366
+ ### Test Hypotheses
367
+
368
+ Ideas to A/B test with expected outcomes
369
+
370
+ ---
371
+
372
+ ## Common Popup Strategies
373
+
374
+ ### E-commerce
375
+
376
+ 1. Entry/scroll: First-purchase discount
377
+ 2. Exit intent: Bigger discount or reminder
378
+ 3. Cart abandonment: Complete your order
379
+
380
+ ### B2B SaaS
381
+
382
+ 1. Click-triggered: Demo request, lead magnets
383
+ 2. Scroll: Newsletter/blog subscription
384
+ 3. Exit intent: Trial reminder or content offer
385
+
386
+ ### Content/Media
387
+
388
+ 1. Scroll-based: Newsletter after engagement
389
+ 2. Page count: Subscribe after multiple visits
390
+ 3. Exit intent: Don't miss future content
391
+
392
+ ### Lead Generation
393
+
394
+ 1. Time-delayed: General list building
395
+ 2. Click-triggered: Specific lead magnets
396
+ 3. Exit intent: Final capture attempt
397
+
398
+ ---
399
+
400
+ ## Experiment Ideas
401
+
402
+ ### Placement & Format Experiments
403
+
404
+ **Banner Variations**
405
+
406
+ - Top bar vs. banner below header
407
+ - Sticky banner vs. static banner
408
+ - Full-width vs. contained banner
409
+ - Banner with countdown timer vs. without
410
+
411
+ **Popup Formats**
412
+
413
+ - Center modal vs. slide-in from corner
414
+ - Full-screen overlay vs. smaller modal
415
+ - Bottom bar vs. corner popup
416
+ - Top announcements vs. bottom slideouts
417
+
418
+ **Position Testing**
419
+
420
+ - Test popup sizes on desktop and mobile
421
+ - Left corner vs. right corner for slide-ins
422
+ - Test visibility without blocking content
423
+
424
+ ---
425
+
426
+ ### Trigger Experiments
427
+
428
+ **Timing Triggers**
429
+
430
+ - Exit intent vs. 30-second delay vs. 50% scroll depth
431
+ - Test optimal time delay (10s vs. 30s vs. 60s)
432
+ - Test scroll depth percentage (25% vs. 50% vs. 75%)
433
+ - Page count trigger (show after X pages viewed)
434
+
435
+ **Behavior Triggers**
436
+
437
+ - Show based on user intent prediction
438
+ - Trigger based on specific page visits
439
+ - Return visitor vs. new visitor targeting
440
+ - Show based on referral source
441
+
442
+ **Click Triggers**
443
+
444
+ - Click-triggered popups for lead magnets
445
+ - Button-triggered vs. link-triggered modals
446
+ - Test in-content triggers vs. sidebar triggers
447
+
448
+ ---
449
+
450
+ ### Messaging & Content Experiments
451
+
452
+ **Headlines & Copy**
453
+
454
+ - Test attention-grabbing vs. informational headlines
455
+ - "Limited-time offer" vs. "New feature alert" messaging
456
+ - Urgency-focused copy vs. value-focused copy
457
+ - Test headline length and specificity
458
+
459
+ **CTAs**
460
+
461
+ - CTA button text variations
462
+ - Button color testing for contrast
463
+ - Primary + secondary CTA vs. single CTA
464
+ - Test decline text (friendly vs. neutral)
465
+
466
+ **Visual Content**
467
+
468
+ - Add countdown timers to create urgency
469
+ - Test with/without images
470
+ - Product preview vs. generic imagery
471
+ - Include social proof in popup
472
+
473
+ ---
474
+
475
+ ### Personalization Experiments
476
+
477
+ **Dynamic Content**
478
+
479
+ - Personalize popup based on visitor data
480
+ - Show industry-specific content
481
+ - Tailor content based on pages visited
482
+ - Use progressive profiling (ask more over time)
483
+
484
+ **Audience Targeting**
485
+
486
+ - New vs. returning visitor messaging
487
+ - Segment by traffic source
488
+ - Target based on engagement level
489
+ - Exclude already-converted visitors
490
+
491
+ ---
492
+
493
+ ### Frequency & Rules Experiments
494
+
495
+ - Test frequency capping (once per session vs. once per week)
496
+ - Cool-down period after dismissal
497
+ - Test different dismiss behaviors
498
+ - Show escalating offers over multiple visits
499
+
500
+ ---
501
+
502
+ ## Questions to Ask
503
+
504
+ If you need more context:
505
+
506
+ 1. What's the primary goal for this popup?
507
+ 2. What's your current popup performance (if any)?
508
+ 3. What traffic sources are you optimizing for?
509
+ 4. What incentive can you offer?
510
+ 5. Are there compliance requirements (GDPR, etc.)?
511
+ 6. Mobile vs. desktop traffic split?
512
+
513
+ ---
514
+
515
+ ## Related Skills
516
+
517
+ - **form-cro**: For optimizing the form inside the popup
518
+ - **page-cro**: For the page context around popups
519
+ - **email-sequence**: For what happens after popup conversion
520
+ - **ab-test-setup**: For testing popup variations