Measurement
Validates conversion tracking BEFORE any spend — the #1 failure point in Google Ads accounts. Checks conversion actions (purchase/lead), counting settings, primary vs secondary, double-count risk by source (store channel e.g. Shopify vs GA4 import vs gtag), enhanced conversions, server-side/CAPI, and value tracking — and judges them HOLISTICALLY (which actions each campaign actually fires) before any verdict. Use when the user says "conversion tracking", "is my tracking right", "GA4 import", "enhanced conversions", "why are my conversions wrong", or as the gate before plan/builder.From its SKILL.md
npx -y skills add chanktb/claude-google-ads --skill measurementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- reads credentialsReads from 1 credential source: `account-context.yaml`.
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
6.6 KB, ~1.5k tokens by cl100k_base, as published. Nobody here has run it
Google Ads — Measurement (tracking gate)
Prove conversion tracking is correct and trustworthy, or block plan/builder-* until it is. Reuse the
live MCP detection from setup. Never raise an alarm from the action list alone.
STEP 0 — Load context
If account-context.yaml is missing, run setup first — don't validate tracking on an unconfigured account.
Read account-context.yaml: google_ads.customer_id, conversion_actions, measurement.*,
data_source (for value sanity), business.model/vertical (lead vs purchase expectations). Output goes
to the working directory; update the context's conversion_actions + measurement.* as you verify them.
Model dispatch (run cheap, decide expensive) — see ${CLAUDE_PLUGIN_ROOT}/references/model-tier-dispatch.md
- Scout (
haiku) — STEP 0 context read; the conversion-action list pull. - Routine (
sonnet) — STEP 1 per-campaign conversion segmentation (segments.conversion_action_name), STEP 3 Ads/GA4/store value pulls. Dispatch asgeneral-purposesub-agents; return raw, don't conclude. - Judge (main session) — the WHOLE-picture verdict, every is-it-a-problem call, the double-count judgment, the PASS/WARN/FAIL that gates plan/builder. Never let a cheap tier raise the alarm — that holistic judgment is the entire point of this skill.
STEP 1 — Build the WHOLE picture before concluding (mandatory)
A conversion list read in isolation lies. The same flag is fine or fatal depending on context. Do all four:
- Actions — enabled conversion actions: name, category, primary_for_goal, counting_type,
value_settings.default_value (value tracking on/off), source. (Omit
conversion_action.typeif the MCP rejects it; see ${CLAUDE_PLUGIN_ROOT}/skills/audit/references/gaql-notes.md.) Decode the enums:category4=PURCHASE · 6=LEAD · 5=SIGNUP · 3=PAGE_VIEW · 8=ADD_TO_CART · 9=BEGIN_CHECKOUT · 11=PHONE_CALL_LEAD · 13=SUBMIT_LEAD_FORM · 16=GET_DIRECTIONS · 18=CONTACT · 19=ENGAGEMENT · 20=STORE_VISIT;counting_type2=ONE (one per click) · 3=EVERY (many per click). For ecommerce, the working primary should be category=PURCHASE with EVERY counting + value tracking on. - Usage — which actions each ACTIVE campaign actually fires/optimizes for: segment conversions by
segments.conversion_action_nameper campaign over 30-90 days (explicitYYYY-MM-DDdates). An action no campaign fires is inert. - Source & double-count — map each value-carrying action to a source
(store channel, e.g. Shopify Google&YouTube "App Purchase" / WooCommerce / GA4 import / gtag /
Merchant Center). Two value
purchases both PRIMARY and both firing = double count. One primary + one secondary = correct.
See
${CLAUDE_PLUGIN_ROOT}/references/conversion-tracking-logic.md. - Verdict — only now, per the rules below.
What is / isn't a problem
- ✅ Campaigns optimize toward the real working purchase action → healthy, even if other purchase actions exist as secondary. A second purchase action kept secondary (e.g. GA4 web purchase alongside the channel App Purchase) is the CORRECT anti-double-count setup, not a bug.
- ✅ "Junk" actions (menu views, directions, calls, store visits, app micro-events) flagged primary but fired by NO active campaign → harmless. Note for awareness; do not alarm.
- ✅ Cross-brand action sitting secondary and unused → harmless; note it.
- 🔴 Two value-carrying purchase actions BOTH primary and BOTH firing in the same campaigns → real double-count. Flag.
- 🔴 The action campaigns optimize for is a low-value engagement action, not the purchase action → flag.
- 🔴 No working purchase/lead conversion at all, or value tracking off for ecommerce → flag.
STEP 2 — Other checks
- Counting type:
onefor leads (avoid form-spam inflation);everyfor ecommerce purchases. - Value tracking: on for ecommerce; sane currency.
- Enhanced Conversions / Consent Mode v2 / server-side (CAPI): the API/MCP usually CANNOT confirm these — mark them verify-in-UI, not FAIL. State the ceiling if confirmed.
- Conversion lag: are conversions still trickling in (long lag windows)? Note if attribution looks cut.
STEP 3 — Value sanity cross-check
When more than one source is available, compare and report the gap (don't silently pick one):
- Google Ads attributed value/conversions for the primary purchase action (30-90d).
- GA4 purchase value for the same window (via GA4 MCP / API / a connected GA4 client).
- Store net sales (Online Store channel only — exclude draft/POS/TikTok/marketplace; see audit/references or aov-and-sales-sourcing.md). A large divergence (>35% Ads vs GA4) is itself a finding (attribution, tagging, or channel-mix issue).
Data sources & fallback (graceful, but NO fabrication)
Read the context connections block. GA4/store via MCP → API creds → a connected client/script. Missing
GA4/store does NOT block measurement — you can still judge the Google-Ads-side setup. But report only the
Ads number and mark the value cross-check UNVERIFIED — connect GA4/store; NEVER estimate the missing
side to "complete" the comparison (a fabricated GA4/store figure is worse than an honest gap). If the
source is merely unwired, prefer guiding the user to connect it over skipping.
Output — verdict + notes (to the working dir)
- Notes for awareness — the harmless-but-worth-knowing items (inert primaries, unused cross-brand actions). Frame as notes, never alarms.
- Verdict: PASS / WARN / FAIL with specific fixes. Only genuine 🔴 problems gate downstream.
FAIL blocks
planandbuilder-*. - Update
account-context.yaml: refreshconversion_actions(with the verified primary + source) andmeasurement.*flags (enhanced_conversions, server_side, ga4.enabled).
To build / refine later
- A runnable helper to pull the per-campaign conversion segmentation + format the verdict.
- Reuse the shared HTML report module (see DECISIONS) when it exists.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most marketing audience skills give in ~1.5k tokens
Counted across 690 of the 894 authors here whose files we hold, read 2026-08-07
- Apply Poppins font to headingsin 41 of 690, across 6 files
- Apply Lora font to body textin 41 of 690, across 6 files
- Use Arial fallback for headingsin 39 of 690, across 4 files
- Use Georgia fallback for body textin 39 of 690, across 4 files
- Maintain text hierarchy and formattingin 39 of 690, across 4 files
- Use accent colors for non-text shapesin 38 of 690, across 3 files
- Use RGB values for precise color matchingin 38 of 690, across 3 files
- Use brand colors for primary text and backgroundsin 36 of 690, across 1 file
- Read product marketing context file before asking questions, starting, or auditingin 35 of 690, across 23 files
- Use active voice instead of passive voicein 26 of 690, across 10 files
- Implement or generate appropriate JSON-LD structured datain 24 of 690, across 17 files
- Prioritize clarity over clevernessin 22 of 690, across 8 files
Said here and by no other author read
- prove tracking is correct or block plan and builder
- run setup if account context is missing
- read and update account context yaml
- dispatch model tiers by task cost
- return raw data without conclusions
- build the whole tracking picture before concluding
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.