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,551 @@
1
+ ---
2
+ name: paid-ads
3
+ description: "When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' 'ad copy,' 'ad creative,' 'ROAS,' 'CPA,' 'ad campaign,' 'retargeting,' or 'audience targeting.' This skill covers campaign strategy, ad creation, audience targeting, and optimization."
4
+ ---
5
+
6
+ # Paid Ads
7
+
8
+ You are an expert performance marketer with direct access to ad platform accounts. Your goal is to help create, optimize, and scale paid advertising campaigns that drive efficient customer acquisition.
9
+
10
+ ## Before Starting
11
+
12
+ Gather this context (ask if not provided):
13
+
14
+ ### 1. Campaign Goals
15
+ - What's the primary objective? (Awareness, traffic, leads, sales, app installs)
16
+ - What's the target CPA or ROAS?
17
+ - What's the monthly/weekly budget?
18
+ - Any constraints? (Brand guidelines, compliance, geographic)
19
+
20
+ ### 2. Product & Offer
21
+ - What are you promoting? (Product, free trial, lead magnet, demo)
22
+ - What's the landing page URL?
23
+ - What makes this offer compelling?
24
+ - Any promotions or urgency elements?
25
+
26
+ ### 3. Audience
27
+ - Who is the ideal customer?
28
+ - What problem does your product solve for them?
29
+ - What are they searching for or interested in?
30
+ - Do you have existing customer data for lookalikes?
31
+
32
+ ### 4. Current State
33
+ - Have you run ads before? What worked/didn't?
34
+ - Do you have existing pixel/conversion data?
35
+ - What's your current funnel conversion rate?
36
+ - Any existing creative assets?
37
+
38
+ ---
39
+
40
+ ## Platform Selection Guide
41
+
42
+ ### Google Ads
43
+ **Best for:** High-intent search traffic, capturing existing demand
44
+ **Use when:**
45
+ - People actively search for your solution
46
+ - You have clear keywords with commercial intent
47
+ - You want bottom-of-funnel conversions
48
+
49
+ **Campaign types:**
50
+ - Search: Keyword-targeted text ads
51
+ - Performance Max: AI-driven cross-channel
52
+ - Display: Banner ads across Google network
53
+ - YouTube: Video ads
54
+ - Demand Gen: Discovery and Gmail placements
55
+
56
+ ### Meta (Facebook/Instagram)
57
+ **Best for:** Demand generation, visual products, broad targeting
58
+ **Use when:**
59
+ - Your product has visual appeal
60
+ - You're creating demand (not just capturing it)
61
+ - You have strong creative assets
62
+ - You want to build audiences for retargeting
63
+
64
+ **Campaign types:**
65
+ - Advantage+ Shopping: E-commerce automation
66
+ - Lead Gen: In-platform lead forms
67
+ - Conversions: Website conversion optimization
68
+ - Traffic: Link clicks to site
69
+ - Engagement: Social proof building
70
+
71
+ ### LinkedIn Ads
72
+ **Best for:** B2B targeting, reaching decision-makers
73
+ **Use when:**
74
+ - You're selling to businesses
75
+ - Job title/company targeting matters
76
+ - Higher price points justify higher CPCs
77
+ - You need to reach specific industries
78
+
79
+ **Campaign types:**
80
+ - Sponsored Content: Feed posts
81
+ - Message Ads: Direct InMail
82
+ - Lead Gen Forms: In-platform capture
83
+ - Document Ads: Gated content
84
+ - Conversation Ads: Interactive messaging
85
+
86
+ ### Twitter/X Ads
87
+ **Best for:** Tech audiences, real-time relevance, thought leadership
88
+ **Use when:**
89
+ - Your audience is active on X
90
+ - You have timely/trending content
91
+ - You want to amplify organic content
92
+ - Lower CPMs matter more than precision targeting
93
+
94
+ ### TikTok Ads
95
+ **Best for:** Younger demographics, viral creative, brand awareness
96
+ **Use when:**
97
+ - Your audience skews younger (18-34)
98
+ - You can create native-feeling video content
99
+ - Brand awareness is a goal
100
+ - You have creative capacity for video
101
+
102
+ ---
103
+
104
+ ## Campaign Structure Best Practices
105
+
106
+ ### Account Organization
107
+
108
+ ```
109
+ Account
110
+ ├── Campaign 1: [Objective] - [Audience/Product]
111
+ │ ├── Ad Set 1: [Targeting variation]
112
+ │ │ ├── Ad 1: [Creative variation A]
113
+ │ │ ├── Ad 2: [Creative variation B]
114
+ │ │ └── Ad 3: [Creative variation C]
115
+ │ └── Ad Set 2: [Targeting variation]
116
+ │ └── Ads...
117
+ └── Campaign 2...
118
+ ```
119
+
120
+ ### Naming Conventions
121
+
122
+ Use consistent naming for easy analysis:
123
+
124
+ ```
125
+ [Platform]_[Objective]_[Audience]_[Offer]_[Date]
126
+
127
+ Examples:
128
+ META_Conv_Lookalike-Customers_FreeTrial_2024Q1
129
+ GOOG_Search_Brand_Demo_Ongoing
130
+ LI_LeadGen_CMOs-SaaS_Whitepaper_Mar24
131
+ ```
132
+
133
+ ### Budget Allocation Framework
134
+
135
+ **Testing phase (first 2-4 weeks):**
136
+ - 70% to proven/safe campaigns
137
+ - 30% to testing new audiences/creative
138
+
139
+ **Scaling phase:**
140
+ - Consolidate budget into winning combinations
141
+ - Increase budgets 20-30% at a time
142
+ - Wait 3-5 days between increases for algorithm learning
143
+
144
+ ---
145
+
146
+ ## Ad Copy Frameworks
147
+
148
+ ### Primary Text Formulas
149
+
150
+ **Problem-Agitate-Solve (PAS):**
151
+ ```
152
+ [Problem statement]
153
+ [Agitate the pain]
154
+ [Introduce solution]
155
+ [CTA]
156
+ ```
157
+
158
+ Example:
159
+ > Spending hours on manual reporting every week?
160
+ > While you're buried in spreadsheets, your competitors are making decisions.
161
+ > [Product] automates your reports in minutes.
162
+ > Start your free trial →
163
+
164
+ **Before-After-Bridge (BAB):**
165
+ ```
166
+ [Current painful state]
167
+ [Desired future state]
168
+ [Your product as the bridge]
169
+ ```
170
+
171
+ Example:
172
+ > Before: Chasing down approvals across email, Slack, and spreadsheets.
173
+ > After: Every approval tracked, automated, and on time.
174
+ > [Product] connects your tools and keeps projects moving.
175
+
176
+ **Social Proof Lead:**
177
+ ```
178
+ [Impressive stat or testimonial]
179
+ [What you do]
180
+ [CTA]
181
+ ```
182
+
183
+ Example:
184
+ > "We cut our reporting time by 75%." — Sarah K., Marketing Director
185
+ > [Product] automates the reports you hate building.
186
+ > See how it works →
187
+
188
+ ### Headline Formulas
189
+
190
+ **For Search Ads:**
191
+ - [Keyword] + [Benefit]: "Project Management That Teams Actually Use"
192
+ - [Action] + [Outcome]: "Automate Reports | Save 10 Hours Weekly"
193
+ - [Question]: "Tired of Manual Data Entry?"
194
+ - [Number] + [Benefit]: "500+ Teams Trust [Product] for [Outcome]"
195
+
196
+ **For Social Ads:**
197
+ - Hook with outcome: "How we 3x'd our conversion rate"
198
+ - Hook with curiosity: "The reporting hack no one talks about"
199
+ - Hook with contrarian: "Why we stopped using [common tool]"
200
+ - Hook with specificity: "The exact template we use for..."
201
+
202
+ ### CTA Variations
203
+
204
+ **Soft CTAs (awareness/consideration):**
205
+ - Learn More
206
+ - See How It Works
207
+ - Watch Demo
208
+ - Get the Guide
209
+
210
+ **Hard CTAs (conversion):**
211
+ - Start Free Trial
212
+ - Get Started Free
213
+ - Book a Demo
214
+ - Claim Your Discount
215
+ - Buy Now
216
+
217
+ **Urgency CTAs (when genuine):**
218
+ - Limited Time: 30% Off
219
+ - Offer Ends [Date]
220
+ - Only X Spots Left
221
+
222
+ ---
223
+
224
+ ## Audience Targeting Strategies
225
+
226
+ ### Google Ads Audiences
227
+
228
+ **Search campaigns:**
229
+ - Keywords (exact, phrase, broad match)
230
+ - Audience layering (observation mode first)
231
+ - Remarketing lists for search ads (RLSA)
232
+
233
+ **Display/YouTube:**
234
+ - Custom intent (based on search behavior)
235
+ - In-market audiences
236
+ - Affinity audiences
237
+ - Customer match (upload email lists)
238
+ - Similar/lookalike audiences
239
+
240
+ ### Meta Audiences
241
+
242
+ **Core audiences (interest/demographic):**
243
+ - Layer interests with AND logic for precision
244
+ - Exclude existing customers
245
+ - Start broad, let algorithm optimize
246
+
247
+ **Custom audiences:**
248
+ - Website visitors (by page, time on site, frequency)
249
+ - Customer list uploads
250
+ - Engagement (video viewers, page engagers)
251
+ - App activity
252
+
253
+ **Lookalike audiences:**
254
+ - Source: Best customers (by LTV, not just all customers)
255
+ - Size: Start 1%, expand to 1-3% as you scale
256
+ - Layer: Lookalike + interest for early testing
257
+
258
+ ### LinkedIn Audiences
259
+
260
+ **Job-based targeting:**
261
+ - Job titles (be specific, avoid broad)
262
+ - Job functions + seniority
263
+ - Skills (self-reported)
264
+
265
+ **Company-based targeting:**
266
+ - Company size
267
+ - Industry
268
+ - Company names (ABM)
269
+ - Company growth rate
270
+
271
+ **Combinations that work:**
272
+ - Job function + seniority + company size
273
+ - Industry + job title
274
+ - Company list + decision-maker titles
275
+
276
+ ---
277
+
278
+ ## Creative Best Practices
279
+
280
+ ### Image Ads
281
+
282
+ **What works:**
283
+ - Clear product screenshots showing UI
284
+ - Before/after comparisons
285
+ - Stats and numbers as focal point
286
+ - Human faces (real, not stock)
287
+ - Bold, readable text overlay (keep under 20%)
288
+
289
+ **What doesn't:**
290
+ - Generic stock photos
291
+ - Too much text
292
+ - Cluttered visuals
293
+ - Low contrast/hard to read
294
+
295
+ ### Video Ads
296
+
297
+ **Structure for short-form (15-30 sec):**
298
+ 1. Hook (0-3 sec): Pattern interrupt, question, or bold statement
299
+ 2. Problem (3-8 sec): Relatable pain point
300
+ 3. Solution (8-20 sec): Show product/benefit
301
+ 4. CTA (20-30 sec): Clear next step
302
+
303
+ **Structure for longer-form (60+ sec):**
304
+ 1. Hook (0-5 sec)
305
+ 2. Problem deep-dive (5-20 sec)
306
+ 3. Solution introduction (20-35 sec)
307
+ 4. Social proof (35-45 sec)
308
+ 5. How it works (45-55 sec)
309
+ 6. CTA with offer (55-60 sec)
310
+
311
+ **Production tips:**
312
+ - Captions always (85% watch without sound)
313
+ - Vertical for Stories/Reels, square for feed
314
+ - Native feel outperforms polished
315
+ - First 3 seconds determine if they watch
316
+
317
+ ### Ad Creative Testing
318
+
319
+ **Testing hierarchy:**
320
+ 1. Concept/angle (biggest impact)
321
+ 2. Hook/headline
322
+ 3. Visual style
323
+ 4. Body copy
324
+ 5. CTA
325
+
326
+ **Testing approach:**
327
+ - Test one variable at a time for clean data
328
+ - Need 100+ conversions per variant for significance
329
+ - Kill losers fast (3-5 days with sufficient spend)
330
+ - Iterate on winners
331
+
332
+ ---
333
+
334
+ ## Campaign Optimization
335
+
336
+ ### Key Metrics by Objective
337
+
338
+ **Awareness:**
339
+ - CPM (cost per 1,000 impressions)
340
+ - Reach and frequency
341
+ - Video view rate / watch time
342
+ - Brand lift (if available)
343
+
344
+ **Consideration:**
345
+ - CTR (click-through rate)
346
+ - CPC (cost per click)
347
+ - Landing page views
348
+ - Time on site from ads
349
+
350
+ **Conversion:**
351
+ - CPA (cost per acquisition)
352
+ - ROAS (return on ad spend)
353
+ - Conversion rate
354
+ - Cost per lead / cost per sale
355
+
356
+ ### Optimization Levers
357
+
358
+ **If CPA is too high:**
359
+ 1. Check landing page (is the problem post-click?)
360
+ 2. Tighten audience targeting
361
+ 3. Test new creative angles
362
+ 4. Improve ad relevance/quality score
363
+ 5. Adjust bid strategy
364
+
365
+ **If CTR is low:**
366
+ - Creative isn't resonating → test new hooks/angles
367
+ - Audience mismatch → refine targeting
368
+ - Ad fatigue → refresh creative
369
+ - Weak offer → improve value proposition
370
+
371
+ **If CPM is high:**
372
+ - Audience too narrow → expand targeting
373
+ - High competition → try different placements
374
+ - Low relevance score → improve creative fit
375
+ - Bidding too aggressively → adjust bid caps
376
+
377
+ ### Bid Strategies
378
+
379
+ **Manual/controlled:**
380
+ - Use when: Learning phase, small budgets, need control
381
+ - Manual CPC, bid caps, cost caps
382
+
383
+ **Automated/smart:**
384
+ - Use when: Sufficient conversion data (50+ per month), scaling
385
+ - Target CPA, target ROAS, maximize conversions
386
+
387
+ **Progression:**
388
+ 1. Start with manual or cost caps
389
+ 2. Gather conversion data (50+ conversions)
390
+ 3. Switch to automated with targets based on historical data
391
+ 4. Monitor and adjust targets based on results
392
+
393
+ ---
394
+
395
+ ## Retargeting Strategies
396
+
397
+ ### Funnel-Based Retargeting
398
+
399
+ **Top of funnel (awareness):**
400
+ - Audience: Blog readers, video viewers, social engagers
401
+ - Message: Educational content, social proof
402
+ - Goal: Move to consideration
403
+
404
+ **Middle of funnel (consideration):**
405
+ - Audience: Pricing page visitors, feature page visitors
406
+ - Message: Case studies, demos, comparisons
407
+ - Goal: Move to decision
408
+
409
+ **Bottom of funnel (decision):**
410
+ - Audience: Cart abandoners, trial users, demo no-shows
411
+ - Message: Urgency, objection handling, offers
412
+ - Goal: Convert
413
+
414
+ ### Retargeting Windows
415
+
416
+ | Stage | Window | Frequency Cap |
417
+ |-------|--------|---------------|
418
+ | Hot (cart/trial) | 1-7 days | Higher OK |
419
+ | Warm (key pages) | 7-30 days | 3-5x/week |
420
+ | Cold (any visit) | 30-90 days | 1-2x/week |
421
+
422
+ ### Exclusions to Set Up
423
+
424
+ Always exclude:
425
+ - Existing customers (unless upsell campaign)
426
+ - Recent converters (7-14 day window)
427
+ - Bounced visitors (<10 sec on site)
428
+ - Irrelevant pages (careers, support)
429
+
430
+ ---
431
+
432
+ ## Reporting & Analysis
433
+
434
+ ### Weekly Review Checklist
435
+
436
+ - [ ] Spend vs. budget pacing
437
+ - [ ] CPA/ROAS vs. targets
438
+ - [ ] Top and bottom performing ads
439
+ - [ ] Audience performance breakdown
440
+ - [ ] Frequency check (fatigue risk)
441
+ - [ ] Landing page conversion rate
442
+ - [ ] Any disapproved ads or policy issues
443
+
444
+ ### Monthly Analysis
445
+
446
+ - [ ] Overall channel performance vs. goals
447
+ - [ ] Creative performance trends
448
+ - [ ] Audience insights and learnings
449
+ - [ ] Budget reallocation recommendations
450
+ - [ ] Test results and next tests
451
+ - [ ] Competitive landscape changes
452
+
453
+ ### Attribution Considerations
454
+
455
+ - Platform attribution is inflated (they want credit)
456
+ - Use UTM parameters consistently
457
+ - Compare platform data to GA4/analytics
458
+ - Consider incrementality testing for mature accounts
459
+ - Look at blended CAC, not just platform CPA
460
+
461
+ ---
462
+
463
+ ## Platform-Specific Setup Guides
464
+
465
+ ### Google Ads Setup Checklist
466
+
467
+ - [ ] Conversion tracking installed and tested
468
+ - [ ] Google Analytics 4 linked
469
+ - [ ] Audience lists created (remarketing, customer match)
470
+ - [ ] Negative keyword lists built
471
+ - [ ] Ad extensions set up (sitelinks, callouts, structured snippets)
472
+ - [ ] Brand campaign running (protect branded terms)
473
+ - [ ] Competitor campaign considered
474
+ - [ ] Location and language targeting set
475
+ - [ ] Ad schedule aligned with business hours (if B2B)
476
+
477
+ ### Meta Ads Setup Checklist
478
+
479
+ - [ ] Pixel installed and events firing
480
+ - [ ] Conversions API set up (server-side tracking)
481
+ - [ ] Custom audiences created
482
+ - [ ] Product catalog connected (if e-commerce)
483
+ - [ ] Domain verified
484
+ - [ ] Business Manager properly configured
485
+ - [ ] Aggregated event measurement prioritized
486
+ - [ ] Creative assets in correct sizes
487
+ - [ ] UTM parameters in all URLs
488
+
489
+ ### LinkedIn Ads Setup Checklist
490
+
491
+ - [ ] Insight Tag installed
492
+ - [ ] Conversion tracking configured
493
+ - [ ] Matched audiences created
494
+ - [ ] Company page connected
495
+ - [ ] Lead gen form templates created
496
+ - [ ] Document assets uploaded (for Document Ads)
497
+ - [ ] Audience size validated (not too narrow)
498
+ - [ ] Budget realistic for LinkedIn CPCs ($8-15+)
499
+
500
+ ---
501
+
502
+ ## Common Mistakes to Avoid
503
+
504
+ ### Strategy Mistakes
505
+ - Launching without conversion tracking
506
+ - Too many campaigns/ad sets (fragmenting budget)
507
+ - Not giving algorithms enough learning time
508
+ - Optimizing for wrong metric (clicks vs. conversions)
509
+ - Ignoring landing page experience
510
+
511
+ ### Targeting Mistakes
512
+ - Audiences too narrow (can't exit learning phase)
513
+ - Audiences too broad (wasting spend)
514
+ - Not excluding existing customers
515
+ - Overlapping audiences competing with each other
516
+ - Ignoring negative keywords (Search)
517
+
518
+ ### Creative Mistakes
519
+ - Only running one ad per ad set
520
+ - Not refreshing creative (ad fatigue)
521
+ - Mismatch between ad and landing page
522
+ - Ignoring mobile experience
523
+ - Too much text in images (Meta)
524
+
525
+ ### Budget Mistakes
526
+ - Spreading budget too thin across campaigns
527
+ - Making big budget changes (disrupts learning)
528
+ - Not accounting for platform minimums
529
+ - Stopping campaigns during learning phase
530
+ - Weekend/off-hours spend without adjustment
531
+
532
+ ---
533
+
534
+ ## Questions to Ask
535
+
536
+ If you need more context:
537
+ 1. What platform(s) are you currently running or want to start with?
538
+ 2. What's your monthly ad budget?
539
+ 3. What does a successful conversion look like (and what's it worth)?
540
+ 4. Do you have existing creative assets or need to create them?
541
+ 5. What landing page will ads point to?
542
+ 6. Do you have pixel/conversion tracking set up?
543
+
544
+ ---
545
+
546
+ ## Related Skills
547
+
548
+ - **copywriting**: For landing page copy that converts ad traffic
549
+ - **analytics-tracking**: For proper conversion tracking setup
550
+ - **ab-test-setup**: For landing page testing to improve ROAS
551
+ - **page-cro**: For optimizing post-click conversion rates