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