Detalle del Skill
remarketing-strategy
Direct paid-media remarketing strategy.
Revisar antes de usar
La revisión automática comprueba relevancia, no seguridad ni respaldo. Lee las instrucciones de la fuente antes de usar este Skill.
SKILL.md
Este extracto es una copia guardada durante la revisión. La fuente externa contiene la versión completa y actual.
---
name: remarketing-strategy
description: >-
The Remarketing Strategy skill designs and implements cross-channel remarketing architectures that re-engage users at every stage of the conversion funnel.
---
# Remarketing Strategy
Part of [Agent Skills™](https://github.com/itallstartedwithaidea/agent-skills) by [googleadsagent.ai™](https://googleadsagent.ai)
## Description
The Remarketing Strategy skill designs and implements cross-channel remarketing architectures that re-engage users at every stage of the conversion funnel. Remarketing is consistently the highest-ROI tactic in digital advertising because it targets users who have already demonstrated interest. This skill transforms basic "show ads to past visitors" approaches into sophisticated, funnel-aware remarketing systems with sequential messaging, frequency controls, and cross-device orchestration.
The skill segments audiences by funnel position and engagement depth: top-of-funnel visitors (single-page sessions), mid-funnel engagers (multi-page sessions, content consumers), bottom-of-funnel prospects (cart abandoners, form starters, pricing page viewers), and post-conversion customers (for upsell and retention). Each segment receives tailored messaging that matches their relationship with the brand, from awareness reinforcement to urgency-driven conversion nudges.
Cross-channel execution spans Display remarketing, YouTube remarketing, RLSA (Remarketing Lists for Search Ads), dynamic remarketing with product-specific creative, and customer journey mapping across devices. The skill implements frequency capping to prevent ad fatigue, membership duration optimization to balance reach and relevance, and sequential messaging chains that progressively move users toward conversion. It also manages negative audience layering to prevent redundant messaging and wasted impressions.
## Use When
- User asks about "remarketing" or "retargeting" strategy
- User mentions "remarketing lists" or "audience segmentation"
- User wants to "re-engage" past visitors or abandoned carts
- User asks about "frequency capping" or "ad fatigue"
- User mentions "RLSA" or "remarketing for search"
- User asks about "dynamic remarketing" or "product remarketing"
- User wants to build a "customer journey" or "sequential messaging"
- User mentions "cross-device" targeting or "cross-channel" remarketing
- User asks about "membership duration" or "audience window" optimization
## Architecture
```mermaid
flowchart TD
A[User Interaction Data] --> B[Funnel Stage Classifier]
B --> C[Top of Funnel\nSingle Page, < 30s]
B --> D[Mid Funnel\n2-3 Pages, Content Engaged]
B --> E[Bottom Funnel\nCart/Form/Pricing Viewed]
B --> F[Post-Conversion\nPurchasers, Leads]
C --> G[Awareness Remarketing]
G --> G1[Brand Story Ads]
G --> G2[Educational Content]
G --> G3[Social Proof]
D --> H[Consideration Remarketing]
H --> H1[Product/Service Benefits]
H --> H2[Case Studies & Reviews]
H --> H3[Comparison Content]
E --> I[Conversion Remarketing]
I --> I1[Urgency Messaging]
I --> I2[Incentive Offers]
I --> I3[Dynamic Product Ads]
I --> I4[Cart Recovery Emails]
F --> J[Retention Remarketing]
J --> J1[Cross-Sell / Upsell]
J --> J2[Loyalty Offers]
J --> J3[Reactivation Campaigns]
G1 --> K[Channel Orchestrator]
G2 --> K
G3 --> K
H1 --> K
H2 --> K
H3 --> K
I1 --> K
I2 --> K
I3 --> K
J1 --> K
J2 --> K
J3 --> K
K --> L[Display Network]
K --> M[YouTube]
K --> N[Search RLSA]
K --> O[Discovery / Demand Gen]
L --> P[Frequency Capping Engine]
M --> P
N --> P
O --> P
P --> Q[Cross-Device Graph]
Q --> R[Unified User Journey]
```
## Implementation
Funnel-based audience segmentation and remarketing architecture:
```javascript
const FUNNEL_SEGMENTS = {
TOP: {
name: 'Awareness Visitors',
rules: { pagesViewed: 1, sessionDuration: '<30s', convertedLeer la fuente completa en GitHub (abre una página externa)