google-ads-audit-3ee968 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited google-ads-audit-3ee968 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A one-time, account-wide Google Ads health audit using live data via Cogny's MCP server. Covers every campaign type, scores the account out of 100, and routes you to the right campaign-type skill for deeper drill-down.
Requires: Cogny Agent subscription ($9/mo) — Sign up
Verify Google Ads MCP tools are available. If mcp__cogny__google_ads__tool_execute_gaql is not available:
This skill requires Cogny's Google Ads MCP server.
1. Sign up at https://cogny.com/agent
2. Connect your Google Ads account
3. Add Cogny to your .mcp.json (see the repo README)
4. Restart Claude CodeStop here if the tools are missing — do not guess at numbers.
/google-ads-audit — full account audit /google-ads-audit campaigns — campaign structure + performance only /google-ads-audit budget — budget pacing only /google-ads-audit tracking — conversion tracking sanity only /google-ads-audit negatives — account negatives + exclusions only
This is the account-level audit — it finds structural problems and wasted spend across the whole account. For campaign-type depth (asset groups, keywords, feeds, audiences) it points you to /pmax-audit, /search-campaign-audit, /shopping-campaign-audit, or /demand-gen-audit.
All money fields come back in micros — divide cost_micros etc. by 1,000,000.
tool_list_accessible_accountsIf multiple accounts are accessible, list them and ask which to audit. Confirm the account name and currency before continuing.
SELECT campaign.name, campaign.status, campaign.advertising_channel_type,
campaign.bidding_strategy_type, campaign_budget.amount_micros,
metrics.cost_micros, metrics.conversions, metrics.conversions_value,
metrics.clicks, metrics.impressions
FROM campaign
WHERE segments.date DURING LAST_30_DAYS
ORDER BY metrics.cost_micros DESCBuild a per-channel-type summary (Search / Performance Max / Shopping / Display / Video / Demand Gen): total spend, conversions, CPA, ROAS (conversions_value / cost).
Flag:
MAXIMIZE_CONVERSIONS / TARGET_CPA campaigns with <15 conversions/30d (too littledata for the bidding strategy to learn)
You must run BOTH queries below before flagging anything in this section. Structure alone (which actions exist, which are primary_for_goal) tells you nothing about what is actually driving the bidding signal. A "Primary" action with zero recent volume is harmless; a "Secondary" action can be a deliberate dedup choice. Always cross-reference the structure against actual conversion volume per action.
3a. Structure — which conversion actions exist:
SELECT conversion_action.name, conversion_action.status, conversion_action.type,
conversion_action.category, conversion_action.counting_type,
conversion_action.primary_for_goal, conversion_action.include_in_conversions_metric
FROM conversion_action3b. Volume — which actions are actually firing (last 30 days):
SELECT segments.conversion_action_name, segments.conversion_action_category,
metrics.all_conversions, metrics.all_conversions_value,
metrics.conversions, metrics.conversions_value
FROM customer
WHERE segments.date DURING LAST_30_DAYSThen join: for every conversion action with non-trivial volume, note whether it is Primary or Secondary, and whether metrics.conversions (the bidding signal) or only metrics.all_conversions (the reporting signal) is counting it.
3c. Reconcile against account totals. Pull account-level metrics.conversions and metrics.conversions_value for the same window — the sum across Primary actions in 3b should match (within rounding). If it does, the metrics.conversions figure is the real booking/purchase/lead action and bidding is grounded in real value. State this explicitly in the report before making any tracking claim.
Flag (each must be backed by a number from 3b, not a guess from 3a):
blind. (Note: a Primary action with zero recent volume is harmless, not broken.)
while a low-value proxy (page view, "Lokala åtgärder", "Detail product page view") is the only Primary — that is the "bidding on page views" pattern.
MANY_PER_CLICK counting on a lead-gen action with meaningful volume (double-countsleads; usually should be ONE_PER_CLICK).
booking + GA4 booking both Primary → double-counted bid signal).
REMOVED / HIDDEN actions still receiving conversions.Do NOT flag:
all_conversions and conversions, by itself. That gap is just thepile of Secondary actions (store visits, GA4 echoes of an on-site action, local actions, contacts, etc.) — it is often correct and intentional. Only flag if a high-value, non-duplicate action is sitting in Secondary.
primary_for_goal = true if they have~0 conversions in 3b — they cost nothing, so they are not polluting bidding.
textbook dedup pattern, not a bug.
SELECT campaign.name, campaign.status, campaign_budget.amount_micros,
metrics.cost_micros, metrics.impressions
FROM campaign
WHERE segments.date DURING LAST_7_DAYS AND campaign.status = 'ENABLED'For each campaign compute average daily spend vs daily budget.
Flag:
(budget-limited — leaving volume on the table)
SELECT shared_set.name, shared_set.type, shared_set.status, shared_set.member_count
FROM shared_setFlag:
exclusions (brand-safety + waste risk)
SELECT search_term_view.search_term, campaign.name, campaign.advertising_channel_type,
metrics.cost_micros, metrics.conversions, metrics.clicks
FROM search_term_view
WHERE segments.date DURING LAST_30_DAYS AND metrics.cost_micros > 0
ORDER BY metrics.cost_micros DESC
LIMIT 50Sum the cost of terms with zero conversions and meaningful spend — this is the headline "wasted spend" number and the source of the largest estimated_impact_usd.
Google Ads Audit — [Account Name]
Health Score: X/100 · 30-day spend: [X] · Conversions: [X] · CPA: [X]
Score breakdown:
Account structure ...... X/20
Conversion tracking .... X/25 (weighted highest — everything depends on it)
Budget efficiency ...... X/20
Wasted spend control ... X/20
Negatives & exclusions . X/15
By campaign type:
| Type | Spend | Conv | CPA | ROAS | Drill-down skill |
|---------------|-------|------|-----|------|-------------------------|
| Performance Max | ... | ... | ... | ... | /pmax-audit |
| Search | ... | ... | ... | ... | /search-campaign-audit |
| Shopping | ... | ... | ... | ... | /shopping-campaign-audit|
| Demand Gen | ... | ... | ... | ... | /demand-gen-audit |
🔴 Critical
- ...
🟡 Important
- ...
🟢 Optimization
- ...
Top 3 Actions:
1. [Highest $ impact — estimated savings/lift]
2. ...
3. ...
Run next: [the campaign-type skill for the highest-spend type]For every actionable issue, call mcp__cogny__create_finding:
{
"title": "$1,840/mo wasted on zero-conversion search terms",
"body": "23 search terms spent $1,840 over 30 days with 0 conversions, led by 'free [product]' ($420) and '[competitor] alternative' ($310). Add as negative keywords and create a shared negative list.",
"action_type": "negative_keyword",
"expected_outcome": "Reclaim ~$1,800/mo of spend for converting queries",
"estimated_impact_usd": 1840,
"priority": "high"
}Action types: campaign_optimization, budget_adjustment, bidding_strategy, conversion_tracking, negative_keyword, account_structure.
broken tracking is a broken account — say so loudly.
primary_for_goal = trueon an action only matters if that action has volume. Pull conversion volume per action (step 3b) and reconcile against account totals (step 3c) before writing any finding about conversion tracking, CPA basis, or bidding signal quality. If metrics.conversions reconciles to a real revenue/booking action, say so — don't wave at the all_conversions gap as if it implies missing primaries.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.