Pre-flight policy check for Meta ads. Takes ad copy plus advertiser context, resolves and fetches the relevant Meta transparency-center policy pages at runtime, and returns a Pass / Fix Required / Block verdict with cited findings and rewrites.
npx gooseworks install --all # then, in Claude Code, Cursor, or Codex: /gooseworks use the meta-ad-policy-checker skill
Meta disapproves ads for policy reasons constantly, and most disapprovals are preventable. The pattern is almost always the same: an advertiser (or an AI agent generating variants) writes copy that uses a phrase or implies a claim that violates Meta's published advertising standards. The fix is cheap if you catch it before submission, expensive if you don't — repeated disapprovals on the same account can throttle delivery or trigger account-level restrictions.
This skill is a pre-flight check. It reads ad copy, figures out which Meta policies apply, fetches the live policy text from Meta's transparency center, and returns a clear verdict with specific findings, citations, and rewrites. It does not hardcode policy rules — Meta updates those, and a static rule list goes stale. Instead, the skill uses Meta's own canonical policy pages as ground truth on every run.
Core principle: The skill provides the methodology — what to check, how to reason, what severity to assign. Meta provides the source of truth — the actual policy text. This separation is what keeps the skill correct as Meta's standards evolve.
None / Employment / Credit / Housing / Social Issues, Elections or Politics (this changes the applicable rules significantly)pre-flight (block until clean) or audit (flag-only, used for already-live ads)Reason about the ad before fetching. Most ads need 3–6 policy pages, not all 25. Always include the baseline set, then add content-driven pages based on what the ad mentions, then add category-driven pages based on declared Special Ad Category.
Treat the entries below as policy lookup keys, not URL slugs. Meta's Transparency Center URLs are nested under category paths and change over time, so never construct a flat policy URL directly from these labels.
| Triggers | Policy lookup keys |
|---|---|
| Income, earnings, payouts, "make money", specific dollar amounts | Personal financial requirements; unrealistic outcomes |
| Health, weight loss, supplements, wellness claims | Health and wellness; before-and-after photos |
| Targeting by age, gender, race, religion, nationality | Discriminatory practices |
| Crypto, weapons, adult, drugs, alcohol, gambling, tobacco | Restricted content |
| Political, social-issue, election content | Social issues, elections or politics |
| Profanity, slurs, sensitive language | Profanity; inflammatory content |
| Anything that implies tracking / scraping / circumvention | Circumventing systems |
| Special Ad Category | Add |
|---|---|
| Employment | Employment |
| Credit | Credit |
| Housing | Housing |
| Social Issues, Elections or Politics | Social issues, elections or politics |
Output of Phase 1: an ordered list of policy lookup keys to resolve and fetch in Phase 2.
Fetch Meta's ad-standards index first:
https://transparency.meta.com/policies/ad-standards/For each lookup key from Phase 1:
Caching rule: in-memory for the current session only. A batch check of 10 ad variants should produce 3–6 policy-page fetches total, not 30–60. Skip persistent caching to avoid stale-cache bugs across sessions.
Fallback: if the index cannot be parsed or a resolved page 404s, use a site-restricted web search for the policy title on Meta's transparency domain and navigate to the closest-matching current policy. Log this as a "policy URL drift" note in the output so the lookup list can be updated.
For each fetched policy, walk through every element of the ad (headline, body, description, CTA, link, visual description if provided) and ask:
Severity model — three levels:
| Severity | Definition |
|---|---|
| Block | Clear violation. Ad will almost certainly be disapproved. Do not submit until fixed. |
| Fix Required | Likely violation or explicit risk. Ad may pass but is at meaningful risk of disapproval or under-delivery. Fix recommended before submission. |
| Caution | Edge case. Ambiguous wording or pattern Meta sometimes flags. Worth knowing about; not necessarily worth changing. |
For each issue identified, produce:
Common disapproval reason: ad claims that aren't substantiated on the LP, or LP claims more aggressive than the ad. Run a brief cross-check:
non-functional-landing-pages)This is policy-specific cross-check — not message-match. For message-match (does the LP feel like a continuation of the ad?), use ad-to-landing-page-auditor.
Use this exact structure.
VERDICT: PASS | FIX REQUIRED | BLOCK
ADVERTISER CONTEXT (echo back so the user knows what was assumed)
SPECIAL AD CATEGORY: [declared]
POLICIES CHECKED: [list of slugs fetched, with URLs]
PER-ISSUE FINDINGS:
- Issue: [exact phrase or pattern from the ad]
Policy: [name] (URL)
Citation: "[direct quote from Meta's policy page]"
Severity: Block | Fix Required | Caution
Why: [one-line explanation grounded in the citation]
Suggested rewrite: [safer alternative preserving intent]
RISK SCORE: Low | Medium | High
(factors: count of Block issues, count of Fix Required issues, special-category status)
3 SAFER VARIANTS OF THE FULL AD:
(only generated if any Block or Fix Required issues exist)
- Variant A: [full ad rewrite — headline + body + CTA]
- Variant B: [full ad rewrite — different angle on the same offer]
- Variant C: [full ad rewrite — most conservative version]
NOTES:
- Areas where Meta enforcement is known to vary (best-effort observation)
- LP-related findings (if URL was provided)
- Anything requiring human judgment beyond what this skill can verify
- Any "policy URL drift" notes from Phase 2 fallback handlingThis skill is built to be both standalone-runnable and callable from other skills. Recommended chain patterns:
messaging-ab-tester produces N variants → meta-ad-policy-checker runs on each → only PASS / FIX REQUIRED variants surface to the usermeta-ads-campaign-builder produces a brief with multiple ads → meta-ad-policy-checker runs on every ad → block launch if any return BLOCKmeta-ads-analyzer flags an ad with near-zero delivery → suggest running meta-ad-policy-checker to rule out a silent disapprovalThe skill returns structured output (verdict + per-issue array) so calling code can gate on verdict !== "BLOCK" programmatically.
The list of policy slugs in Phase 1 is the only mutable piece of this skill. Meta occasionally renames or restructures policy pages. The Phase 2 fallback handles individual page drift gracefully, but periodic review of the slug list (annually, or any time several "policy URL drift" notes appear in outputs) keeps the skill efficient. The slug list lives inline in this SKILL.md so updates are a single-file change.
messaging-ab-tester — runs upstream; generates variants this skill should checkmeta-ads-campaign-builder — runs upstream; produces multi-ad briefs this skill should validate before launchad-to-landing-page-auditor — paired pre-flight; different concern (message-match vs. policy compliance), same checkpointmeta-ads-analyzer — runs downstream; if a live campaign shows symptoms of a silent disapproval (near-zero delivery, throttling), this skill is the diagnostic stepad-campaign-analyzer — loose link; disapprovals show up as underdelivery in performance data, so cross-reference when a creative shows zero deliveryAssemble an expert/educator motion-graphic LISTICLE video ad from a config — a spoken authoritative voiceover carries a numbered listicle while N web-animated hyperframe beats (HTML plus the Web Animations API, one branded design system of alternating tiles, big hero numerals, and glass-pill callouts) are rendered frame-by-frame via Playwright and anchored to the VO's word-level timestamps, periodic color-graded B-roll windows give visual breath, and captions burn ONLY inside those B-roll windows (2-word chunks, ASS Format header carrying a Name field so none drop) with the VO mixed under a low music bed. This is the FREE deterministic assembly stage (Playwright beat render plus ffmpeg concat plus window-masked caption burn plus VO-and-music mix plus final composite) — the VO, the music bed, and the stock B-roll come from create-vo-elevenlabs, create-music-elevenlabs, and media-proxy. Use for the vo-anchored-motion-listicle format.
Assemble a stop-motion hand-swatch-cycle product-demo ad from a config — a sequence of still PLATES (one hand swiping a single-barrel cosmetic across a cream skin-patch, the barrel + swatch changing per plate while the hand, background, crop, and lighting stay locked) is PNG→mp4 loop-encoded at each plate's own stop-motion hold (fast motion frames 150–250ms, per-shade ~380ms, hero beats 1100–1800ms), concat-demuxed with HARD cuts into a silent master, closed on a Playwright HTML-rendered branded end card (serif tagline + sans subtitle + real logo SVG over a hero BG, never AI-rendered text), and muxed with a pre-sourced music track playing under the end card with a fade tail (no VO). This is the FREE deterministic assembly stage (loop-encode + concat-demux + end-card render + music mux); the master-anchor plate, shade plates, and end-card BG come from create-image-gpt-image-fal and the track from create-music-elevenlabs. Use for the stopmotion-hand-swatch-cycle format.
Assemble a split-screen creator ad from a config — a two-zone vertical composite where a supplied AI-creator lip-sync take fills the BOTTOM ~48% while real 16:9 product/demo clips run uncropped in the TOP ~52%, each top clip contain-fit with a darkened blurred cover-scale fill of the same clip (never black bars), a 3px brand-color divider between the zones, the creator slice cover-fit per the per-scene VO timing, scenes hard-concatenated with the body audio being the concatenated creator VO slices, an end card held on the last sharp frame ~3s, then the ASSEMBLED cut transcribed with local Whisper (not the raw VO — concat drops inter-scene silence) and word-level captions burned in the chosen style. This is the FREE deterministic assembly + caption stage (two-zone composite + blurred fill + divider + hard-concat + end card + captions); the VO comes from create-vo-elevenlabs, the anchor from create-image-gpt-image-fal, and the whole-VO lip-sync from a paid VEED Fabric 1.0 take (a no-atom upstream input). Use for the split-screen-creator format.