Install
openclaw skills install @abhishekj9621/ad-platform-tracker-skillUse this skill whenever the user needs to track, analyze, or respond to advertising platform changes across Meta (Facebook/Instagram), Google Ads, or competitor intelligence. Trigger for any of these requests: Meta algorithm updates, Andromeda implications, Google Ads policy changes, Performance Max updates, privacy/compliance tracking (GDPR, CCPA, iOS), competitor ad analysis, campaign impact assessment, ad policy audits, regulatory compliance checks, platform feature rollouts, algorithm behavior changes, creative strategy updates from platform shifts, competitor ad library scraping, or any question like "what changed on Meta/Google?", "how does X update affect my campaigns?", "is my account compliant?", "what are competitors running?". Always use this skill — do not rely on training memory for fast-changing platform details.
openclaw skills install @abhishekj9621/ad-platform-tracker-skillA comprehensive skill for tracking algorithm changes, policy updates, compliance requirements, and competitive intelligence across Meta and Google Ads platforms.
| Module | File | Purpose |
|---|---|---|
| Meta Algorithm & Policy | references/meta-tracker.md | Meta ad system changes, Andromeda, features |
| Google Ads Algorithm & Policy | references/google-tracker.md | PMax, Smart Bidding, AI Max, policy changes |
| Regulatory & Compliance | references/compliance-tracker.md | GDPR, CCPA, iOS privacy, ad policies |
| Competitive Intelligence | references/competitive-tracker.md | Competitor ads, benchmarks, best practices |
When to load each file:
meta-tracker.mdgoogle-tracker.mdcompliance-tracker.mdcompetitive-tracker.mdWhen a user reports a campaign issue or asks "why did X change?", run through this:
DATE: [date]
PLATFORM: Meta / Google / Both
CHANGE: [what changed]
SEVERITY: Critical / High / Medium / Low
IMPACT DATE: [when it takes effect]
AFFECTED: [all accounts / specific verticals / regions]
RECOMMENDED ACTION: [what to do]
UPDATE: [name of update]
CURRENT CAMPAIGN STATUS: [affected / not affected]
METRICS AT RISK: [ROAS, CPM, CPA, reach, etc.]
URGENCY: [act now / act within 30 days / monitor]
SPECIFIC CHANGES NEEDED: [list]
REGULATION: [GDPR / CCPA / Meta Policy / Google Policy]
RISK LEVEL: High / Medium / Low
DEADLINE: [compliance required by]
AFFECTED CAMPAIGNS: [list]
REMEDIATION STEPS: [numbered list]
Meta Official:
Google Official:
Industry Sources (fast-track updates):
Competitive Intelligence:
When asked to monitor or scrape platform updates, use the web-scraper skill (Firecrawl or Apify) to:
/crawl on Meta/Google blog URLs, filter for last 7 daysapify/facebook-ads-scraper for competitor ads/scrape on specific advertiser pages/search for recent updates ("Meta algorithm update 2025")/scrape on RSS feed URLs for real-time monitoring# Example: Monitor Meta blog for updates in last 7 days
firecrawl_payload = {
"url": "https://www.facebook.com/business/news",
"formats": ["markdown"],
"onlyMainContent": True,
}
# Example: Search for recent Google Ads changes
firecrawl_search = {
"query": "Google Ads Performance Max update 2025",
"limit": 10,
"scrapeOptions": { "formats": ["markdown"] }
}
For full deep-dive detail on any module, load the relevant reference file.