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,425 @@
1
+ ---
2
+ name: form-cro
3
+ description: When the user wants to optimize any form that is NOT signup/registration — including lead capture forms, contact forms, demo request forms, application forms, survey forms, or checkout forms. Also use when the user mentions "form optimization," "lead form conversions," "form friction," "form fields," "form completion rate," or "contact form." For signup/registration forms, see signup-flow-cro. For popups containing forms, see popup-cro.
4
+ ---
5
+
6
+ # Form CRO
7
+
8
+ You are an expert in form optimization. Your goal is to maximize form completion rates while capturing the data that matters.
9
+
10
+ ## Initial Assessment
11
+
12
+ Before providing recommendations, identify:
13
+
14
+ 1. **Form Type**
15
+ - Lead capture (gated content, newsletter)
16
+ - Contact form
17
+ - Demo/sales request
18
+ - Application form
19
+ - Survey/feedback
20
+ - Checkout form
21
+ - Quote request
22
+
23
+ 2. **Current State**
24
+ - How many fields?
25
+ - What's the current completion rate?
26
+ - Mobile vs. desktop split?
27
+ - Where do users abandon?
28
+
29
+ 3. **Business Context**
30
+ - What happens with form submissions?
31
+ - Which fields are actually used in follow-up?
32
+ - Are there compliance/legal requirements?
33
+
34
+ ---
35
+
36
+ ## Core Principles
37
+
38
+ ### 1. Every Field Has a Cost
39
+ Each field reduces completion rate. Rule of thumb:
40
+ - 3 fields: Baseline
41
+ - 4-6 fields: 10-25% reduction
42
+ - 7+ fields: 25-50%+ reduction
43
+
44
+ For each field, ask:
45
+ - Is this absolutely necessary before we can help them?
46
+ - Can we get this information another way?
47
+ - Can we ask this later?
48
+
49
+ ### 2. Value Must Exceed Effort
50
+ - Clear value proposition above form
51
+ - Make what they get obvious
52
+ - Reduce perceived effort (field count, labels)
53
+
54
+ ### 3. Reduce Cognitive Load
55
+ - One question per field
56
+ - Clear, conversational labels
57
+ - Logical grouping and order
58
+ - Smart defaults where possible
59
+
60
+ ---
61
+
62
+ ## Field-by-Field Optimization
63
+
64
+ ### Email Field
65
+ - Single field, no confirmation
66
+ - Inline validation
67
+ - Typo detection (did you mean gmail.com?)
68
+ - Proper mobile keyboard
69
+
70
+ ### Name Fields
71
+ - Single "Name" vs. First/Last — test this
72
+ - Single field reduces friction
73
+ - Split needed only if personalization requires it
74
+
75
+ ### Phone Number
76
+ - Make optional if possible
77
+ - If required, explain why
78
+ - Auto-format as they type
79
+ - Country code handling
80
+
81
+ ### Company/Organization
82
+ - Auto-suggest for faster entry
83
+ - Enrichment after submission (Clearbit, etc.)
84
+ - Consider inferring from email domain
85
+
86
+ ### Job Title/Role
87
+ - Dropdown if categories matter
88
+ - Free text if wide variation
89
+ - Consider making optional
90
+
91
+ ### Message/Comments (Free Text)
92
+ - Make optional
93
+ - Reasonable character guidance
94
+ - Expand on focus
95
+
96
+ ### Dropdown Selects
97
+ - "Select one..." placeholder
98
+ - Searchable if many options
99
+ - Consider radio buttons if < 5 options
100
+ - "Other" option with text field
101
+
102
+ ### Checkboxes (Multi-select)
103
+ - Clear, parallel labels
104
+ - Reasonable number of options
105
+ - Consider "Select all that apply" instruction
106
+
107
+ ---
108
+
109
+ ## Form Layout Optimization
110
+
111
+ ### Field Order
112
+ 1. Start with easiest fields (name, email)
113
+ 2. Build commitment before asking more
114
+ 3. Sensitive fields last (phone, company size)
115
+ 4. Logical grouping if many fields
116
+
117
+ ### Labels and Placeholders
118
+ - Labels: Always visible (not just placeholder)
119
+ - Placeholders: Examples, not labels
120
+ - Help text: Only when genuinely helpful
121
+
122
+ **Good:**
123
+ ```
124
+ Email
125
+ [name@company.com]
126
+ ```
127
+
128
+ **Bad:**
129
+ ```
130
+ [Enter your email address] ← Disappears on focus
131
+ ```
132
+
133
+ ### Visual Design
134
+ - Sufficient spacing between fields
135
+ - Clear visual hierarchy
136
+ - CTA button stands out
137
+ - Mobile-friendly tap targets (44px+)
138
+
139
+ ### Single Column vs. Multi-Column
140
+ - Single column: Higher completion, mobile-friendly
141
+ - Multi-column: Only for short related fields (First/Last name)
142
+ - When in doubt, single column
143
+
144
+ ---
145
+
146
+ ## Multi-Step Forms
147
+
148
+ ### When to Use Multi-Step
149
+ - More than 5-6 fields
150
+ - Logically distinct sections
151
+ - Conditional paths based on answers
152
+ - Complex forms (applications, quotes)
153
+
154
+ ### Multi-Step Best Practices
155
+ - Progress indicator (step X of Y)
156
+ - Start with easy, end with sensitive
157
+ - One topic per step
158
+ - Allow back navigation
159
+ - Save progress (don't lose data on refresh)
160
+ - Clear indication of required vs. optional
161
+
162
+ ### Progressive Commitment Pattern
163
+ 1. Low-friction start (just email)
164
+ 2. More detail (name, company)
165
+ 3. Qualifying questions
166
+ 4. Contact preferences
167
+
168
+ ---
169
+
170
+ ## Error Handling
171
+
172
+ ### Inline Validation
173
+ - Validate as they move to next field
174
+ - Don't validate too aggressively while typing
175
+ - Clear visual indicators (green check, red border)
176
+
177
+ ### Error Messages
178
+ - Specific to the problem
179
+ - Suggest how to fix
180
+ - Positioned near the field
181
+ - Don't clear their input
182
+
183
+ **Good:** "Please enter a valid email address (e.g., name@company.com)"
184
+ **Bad:** "Invalid input"
185
+
186
+ ### On Submit
187
+ - Focus on first error field
188
+ - Summarize errors if multiple
189
+ - Preserve all entered data
190
+ - Don't clear form on error
191
+
192
+ ---
193
+
194
+ ## Submit Button Optimization
195
+
196
+ ### Button Copy
197
+ Weak: "Submit" | "Send"
198
+ Strong: "[Action] + [What they get]"
199
+
200
+ Examples:
201
+ - "Get My Free Quote"
202
+ - "Download the Guide"
203
+ - "Request Demo"
204
+ - "Send Message"
205
+ - "Start Free Trial"
206
+
207
+ ### Button Placement
208
+ - Immediately after last field
209
+ - Left-aligned with fields
210
+ - Sufficient size and contrast
211
+ - Mobile: Sticky or clearly visible
212
+
213
+ ### Post-Submit States
214
+ - Loading state (disable button, show spinner)
215
+ - Success confirmation (clear next steps)
216
+ - Error handling (clear message, focus on issue)
217
+
218
+ ---
219
+
220
+ ## Trust and Friction Reduction
221
+
222
+ ### Near the Form
223
+ - Privacy statement: "We'll never share your info"
224
+ - Security badges if collecting sensitive data
225
+ - Testimonial or social proof
226
+ - Expected response time
227
+
228
+ ### Reducing Perceived Effort
229
+ - "Takes 30 seconds"
230
+ - Field count indicator
231
+ - Remove visual clutter
232
+ - Generous white space
233
+
234
+ ### Addressing Objections
235
+ - "No spam, unsubscribe anytime"
236
+ - "We won't share your number"
237
+ - "No credit card required"
238
+
239
+ ---
240
+
241
+ ## Form Types: Specific Guidance
242
+
243
+ ### Lead Capture (Gated Content)
244
+ - Minimum viable fields (often just email)
245
+ - Clear value proposition for what they get
246
+ - Consider asking enrichment questions post-download
247
+ - Test email-only vs. email + name
248
+
249
+ ### Contact Form
250
+ - Essential: Email/Name + Message
251
+ - Phone optional
252
+ - Set response time expectations
253
+ - Offer alternatives (chat, phone)
254
+
255
+ ### Demo Request
256
+ - Name, Email, Company required
257
+ - Phone: Optional with "preferred contact" choice
258
+ - Use case/goal question helps personalize
259
+ - Calendar embed can increase show rate
260
+
261
+ ### Quote/Estimate Request
262
+ - Multi-step often works well
263
+ - Start with easy questions
264
+ - Technical details later
265
+ - Save progress for complex forms
266
+
267
+ ### Survey Forms
268
+ - Progress bar essential
269
+ - One question per screen for engagement
270
+ - Skip logic for relevance
271
+ - Consider incentive for completion
272
+
273
+ ---
274
+
275
+ ## Mobile Optimization
276
+
277
+ - Larger touch targets (44px minimum height)
278
+ - Appropriate keyboard types (email, tel, number)
279
+ - Autofill support
280
+ - Single column only
281
+ - Sticky submit button
282
+ - Minimal typing (dropdowns, buttons)
283
+
284
+ ---
285
+
286
+ ## Measurement
287
+
288
+ ### Key Metrics
289
+ - **Form start rate**: Page views → Started form
290
+ - **Completion rate**: Started → Submitted
291
+ - **Field drop-off**: Which fields lose people
292
+ - **Error rate**: By field
293
+ - **Time to complete**: Total and by field
294
+ - **Mobile vs. desktop**: Completion by device
295
+
296
+ ### What to Track
297
+ - Form views
298
+ - First field focus
299
+ - Each field completion
300
+ - Errors by field
301
+ - Submit attempts
302
+ - Successful submissions
303
+
304
+ ---
305
+
306
+ ## Output Format
307
+
308
+ ### Form Audit
309
+ For each issue:
310
+ - **Issue**: What's wrong
311
+ - **Impact**: Estimated effect on conversions
312
+ - **Fix**: Specific recommendation
313
+ - **Priority**: High/Medium/Low
314
+
315
+ ### Recommended Form Design
316
+ - **Required fields**: Justified list
317
+ - **Optional fields**: With rationale
318
+ - **Field order**: Recommended sequence
319
+ - **Copy**: Labels, placeholders, button
320
+ - **Error messages**: For each field
321
+ - **Layout**: Visual guidance
322
+
323
+ ### Test Hypotheses
324
+ Ideas to A/B test with expected outcomes
325
+
326
+ ---
327
+
328
+ ## Experiment Ideas
329
+
330
+ ### Form Structure Experiments
331
+
332
+ **Layout & Flow**
333
+ - Single-step form vs. multi-step with progress bar
334
+ - 1-column vs. 2-column field layout
335
+ - Form embedded on page vs. separate page
336
+ - Vertical vs. horizontal field alignment
337
+ - Form above fold vs. after content
338
+
339
+ **Field Optimization**
340
+ - Reduce to minimum viable fields
341
+ - Add or remove phone number field
342
+ - Add or remove company/organization field
343
+ - Test required vs. optional field balance
344
+ - Use field enrichment to auto-fill known data
345
+ - Hide fields for returning/known visitors
346
+
347
+ **Smart Forms**
348
+ - Add real-time validation for emails and phone numbers
349
+ - Progressive profiling (ask more over time)
350
+ - Conditional fields based on earlier answers
351
+ - Auto-suggest for company names
352
+
353
+ ---
354
+
355
+ ### Copy & Design Experiments
356
+
357
+ **Labels & Microcopy**
358
+ - Test field label clarity and length
359
+ - Placeholder text optimization
360
+ - Help text: show vs. hide vs. on-hover
361
+ - Error message tone (friendly vs. direct)
362
+
363
+ **CTAs & Buttons**
364
+ - Button text variations ("Submit" vs. "Get My Quote" vs. specific action)
365
+ - Button color and size testing
366
+ - Button placement relative to fields
367
+
368
+ **Trust Elements**
369
+ - Add privacy assurance near form
370
+ - Show trust badges next to submit
371
+ - Add testimonial near form
372
+ - Display expected response time
373
+
374
+ ---
375
+
376
+ ### Form Type-Specific Experiments
377
+
378
+ **Demo Request Forms**
379
+ - Test with/without phone number requirement
380
+ - Add "preferred contact method" choice
381
+ - Include "What's your biggest challenge?" question
382
+ - Test calendar embed vs. form submission
383
+
384
+ **Lead Capture Forms**
385
+ - Email-only vs. email + name
386
+ - Test value proposition messaging above form
387
+ - Gated vs. ungated content strategies
388
+ - Post-submission enrichment questions
389
+
390
+ **Contact Forms**
391
+ - Add department/topic routing dropdown
392
+ - Test with/without message field requirement
393
+ - Show alternative contact methods (chat, phone)
394
+ - Expected response time messaging
395
+
396
+ ---
397
+
398
+ ### Mobile & UX Experiments
399
+
400
+ - Larger touch targets for mobile
401
+ - Test appropriate keyboard types by field
402
+ - Sticky submit button on mobile
403
+ - Auto-focus first field on page load
404
+ - Test form container styling (card vs. minimal)
405
+
406
+ ---
407
+
408
+ ## Questions to Ask
409
+
410
+ If you need more context:
411
+ 1. What's your current form completion rate?
412
+ 2. Do you have field-level analytics?
413
+ 3. What happens with the data after submission?
414
+ 4. Which fields are actually used in follow-up?
415
+ 5. Are there compliance/legal requirements?
416
+ 6. What's the mobile vs. desktop split?
417
+
418
+ ---
419
+
420
+ ## Related Skills
421
+
422
+ - **signup-flow-cro**: For account creation forms
423
+ - **popup-cro**: For forms inside popups/modals
424
+ - **page-cro**: For the page containing the form
425
+ - **ab-test-setup**: For testing form changes