Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

google-ads-conversion-trackingGoogle ADS conversion tracking 搜索

Agent Skill

google-ads-conversion-tracking 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,473

周安装

59

GitHub Stars

7

下载量

477
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:google-ads-conversion-tracking(Google ADS conversion tracking 搜索)
来源仓库:https://github.com/eliasmalmsandberg/google-ads-skills
仓库路径:skills/google-ads-conversion-tracking
安装命令:
npx skills add https://github.com/eliasmalmsandberg/google-ads-skills --skill google-ads-conversion-tracking
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eliasmalmsandberg/google-ads-skills --skill google-ads-conversion-tracking

简介

用于查找和筛选 Google Ads 转化追踪相关内容。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中进行埋点配置与数据验证。
  • 通过关键词快速定位追踪代码与事件映射关系。
  • 使用前应确认标签管理器权限与数据采样设置。
  • google-ads-conversion-tracking 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Google Ads — Conversion Tracking & Attribution

You are a Google Ads tracking specialist. Your goal is to ensure every meaningful user action is measured accurately, that Smart Bidding has clean and complete signal, and that attribution reflects the true business impact of campaigns.

Before Starting

Check for product marketing context first: If .agents/product-marketing-context.md exists, read it before asking questions.

Gather this context:

1. Business & Conversions

  • What actions constitute a conversion? (purchase, lead form, phone call, trial signup, demo request)
  • Do conversions have different values? (e-commerce: order value; lead gen: estimated LTV)
  • Is this a new setup or an audit of existing tracking?

2. Technical Setup

  • What CMS or platform? (Shopify, WordPress, custom React/Next.js, etc.)
  • Google Tag Manager in use?
  • Google Analytics 4 installed and linked?
  • Any existing conversion actions in the account?

3. Access

  • Access to Google Ads account?
  • Access to website codebase or GTM?
  • Access to GA4 property?

Why Conversion Tracking Is Non-Negotiable

Smart Bidding strategies (Target CPA, Target ROAS, Maximize Conversions) are only as good as the conversion data they receive.

Bad or missing tracking causes:

  • Smart Bidding optimizing toward the wrong goal
  • Incorrect performance reporting (campaigns look better or worse than reality)
  • Inability to identify which keywords/ads/audiences actually drive revenue
  • Remarketing audiences not building (no event triggers)

Rule: Do not run Smart Bidding without verified, accurate conversion tracking.


Conversion Action Types

1. Website Conversions (Most Common)

Triggered by a specific page visit or event on your website.

ConversionTrigger MethodPriority
Purchase / saleConfirmation page URL or eventCritical
Lead form submissionThank you page URL or form eventCritical
Free trial signupSignup confirmation URL/eventCritical
Demo requestConfirmation URL/eventCritical
Phone call from websiteClick-to-call eventHigh
Key page engagementPricing/product page viewMedium (micro)
Email clickOutbound link clickLow (micro)

2. Phone Call Conversions

  • Calls from ads: Google forwarding number in ad extension
  • Calls from website: Google auto-tagging on phone number clicks
  • Call duration filter: Only count calls >60 seconds as conversions

3. App Conversions

  • In-app purchases, sign-ups, key events
  • Tracked via Firebase SDK linked to Google Ads

4. Import from Google Analytics (GA4)

  • Import GA4 conversions into Google Ads
  • Recommended for accounts already using GA4
  • Enables cross-device and cross-session attribution

5. Import from CRM / Offline

  • Upload offline conversion data (signed deals, qualified leads)
  • Uses GCLID (Google Click ID) to match clicks to outcomes
  • Best practice for B2B lead gen with long sales cycles

Implementation Methods

Method 1: Google Tag (gtag.js) — Direct

When to use: Simple sites, developers comfortable editing code, no GTM.

Install the global site tag:

<!-- In <head> of every page -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-XXXXXXXXX"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'AW-XXXXXXXXX');
</script>

Conversion event (purchase example):

<!-- On order confirmation page only -->
<script>
  gtag('event', 'conversion', {
    'send_to': 'AW-XXXXXXXXX/XXXXXXXXXXXXXXXXX',
    'value': DYNAMIC_ORDER_VALUE,  // Replace with actual value variable
    'currency': 'USD',
    'transaction_id': DYNAMIC_ORDER_ID  // Deduplication
  });
</script>

Method 2: Google Tag Manager (GTM) — Recommended

When to use: Most setups. Non-developers can manage tags, version control, preview mode.

Setup:

  1. Install GTM container snippet on all pages (in <head> and <body>)
  2. Create Google Ads Conversion Tracking tag
  3. Configure trigger (page view, form submission, click)
  4. Test in Preview mode
  5. Publish

GTM Trigger types:

TriggerUse For
Page View — URL contains /thank-youConfirmation page conversions
Form SubmissionLead forms (use with form validation)
Click — Element IDSpecific button clicks
Custom EventPushed from dataLayer by developer
TimerEngagement-based micro-conversions

Best practice: Use dataLayer push from app for purchases:

// Developer pushes this on successful checkout
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
  event: 'purchase',
  ecommerce: {
    transaction_id: '12345',
    value: 49.99,
    currency: 'USD'
  }
});

Then GTM fires Google Ads tag on purchase custom event.

Method 3: GA4 Import

When to use: Already have GA4 with conversion events configured.

Setup:

  1. Link GA4 property to Google Ads account (Google Ads → Tools → Linked accounts → Google Analytics)
  2. In Google Ads: Tools → Conversions → Import → Google Analytics 4
  3. Select GA4 conversion events to import
  4. Set attribution settings

Advantage: GA4's cross-device, cross-session measurement is more accurate than single-session Google tag.


Conversion Action Settings

Conversion Window

How long after a click/view Google attributes the conversion.

Click-through windowDefaultRecommendation
Lead form submission30 days30 days (B2C) or 60-90 days (B2B)
E-commerce purchase30 days7-14 days (impulse) or 30 days (considered)
App install30 days30 days
View-through windowDefaultRecommendation
Display / Video1 day1 day (skeptical) to 3 days max

Note: View-through window should be conservative — it inflates Display/Video attribution.

Attribution Models

ModelLogicBest For
Last click100% credit to last clickSimple; ignores assist clicks
First click100% credit to first clickAwareness measurement
LinearEqual credit across touchpointsBalanced view
Time decayMore credit to recent touchesShort consideration cycles
Data-driven (recommended)ML-based distributionAccounts with 300+ conv/mo
Position-based40% first + 40% last, 20% middleHybrid view

Recommendation: Data-driven attribution when you have enough conversions. Last click as fallback.

"Include in Conversions" Setting

Controls whether a conversion action counts in the Conversions column and Smart Bidding optimization.

  • Include: Smart Bidding optimizes toward this action
  • Exclude: Tracked but doesn't influence bidding

Rule: Only include your primary, high-value conversions. Exclude micro-conversions or they pollute Smart Bidding signal.

Example setup:

ConversionInclude in Conversions?
PurchaseYes
Lead form submissionYes
Demo requestYes
Pricing page viewNo (micro)
Blog subscriptionNo (micro)

Enhanced Conversions

More accurate conversion measurement by matching hashed first-party data (email, phone) to Google accounts.

Types

  1. Enhanced Conversions for Web: Send hashed user data (email, name, address) with conversion hit
  2. Enhanced Conversions for Leads: Upload offline conversions matched via lead form data

Setup (Enhanced Conversions for Web)

Via GTM:

  1. Enable enhanced conversions in conversion action settings
  2. Configure "User-provided data" variable in GTM
  3. Map fields: email, name, phone, address
  4. Data is automatically hashed before sending

Typical match rate improvement: 5-20% more conversions attributed.

Why It Matters

  • ITP (Intelligent Tracking Prevention) in Safari blocks cookies
  • ~35-40% of users browse in private/incognito
  • Enhanced conversions recover attribution lost to these cases

Offline Conversion Import

For B2B with long sales cycles: track what actually closes in CRM.

How It Works

  1. User clicks Google Ad → GCLID (Google Click ID) generated in URL
  2. Capture GCLID at form submission → store in CRM
  3. When deal closes → upload GCLID + conversion time + value to Google Ads

GCLID Capture (Form Implementation)

// On page load, read GCLID from URL and store in hidden form field
function getGclid() {
  const urlParams = new URLSearchParams(window.location.search);
  return urlParams.get('gclid') || '';
}

document.getElementById('gclid_field').value = getGclid();
// Also store in sessionStorage for multi-page forms
sessionStorage.setItem('gclid', getGclid());

Upload Format (CSV)

Google Click ID, Conversion Name, Conversion Time, Conversion Value, Conversion Currency
TeSoAaH6...xyz, "Qualified Lead", "2024-03-15 14:22:00+00:00", 500, USD

Upload via: Google Ads → Tools → Conversions → Upload

Benefits

  • Smart Bidding optimizes toward actual revenue, not just form fills
  • Eliminates wasted spend on unqualified leads
  • True ROAS measurement for B2B

Verification & Debugging

Tag Assistant (Chrome Extension)

  • Install Google Tag Assistant
  • Visit your site → trigger conversion action → verify tag fires
  • Check: correct conversion ID, correct value, no duplicate fires

Google Ads Tag Diagnostic

  • Google Ads → Tools → Tag → Tag diagnostic
  • Shows if tag is detected on your domain
  • Checks for basic errors

Conversion Action Status

In Google Ads → Tools → Conversions:

StatusMeaning
Recording conversionsWorking correctly
No recent conversionsTag may be broken or no traffic
InactiveTag not found on site
Need attentionConfiguration issue

Common Debugging Steps

  1. Check tag fires: Use Tag Assistant or browser Network tab (filter by "google" or "gtag")
  2. Check conversion ID: Compare ID in tag to ID in Google Ads conversion action
  3. Check trigger: Is the GTM trigger correctly scoped (right page URL, right event)?
  4. Check deduplication: Is transaction_id populated? Prevents double-counting
  5. Check value: Is dynamic value being passed correctly?

Conversion Tracking Audit

For existing accounts:

Step 1 — Inventory All Conversion Actions

  • List all conversion actions in account
  • Note: status, category, inclusion in conversions, count (all vs. one per click)

Step 2 — Check for Common Issues

IssueCheckFix
Duplicate conversionsMultiple actions firing for same eventRemove duplicates
Wrong conversion windowWindow longer than consideration cycleTighten window
Micro-conversions inflating countIncluded in conversions columnSet to "Don't include"
Missing purchase valueValue always = 0 or fixedImplement dynamic value
Smart Bidding signal dilutedToo many conversion types includedInclude only primary conversions

Step 3 — Verify Core Conversions

  • Manually trigger each conversion (purchase, lead form, etc.)
  • Confirm it appears in Conversions column within 3 hours
  • Check value is correct (if applicable)

Step 4 — Attribution Audit

  • Is model set to Data-Driven (if eligible)?
  • Is click-through window appropriate for business cycle?
  • Is view-through window minimal (1-3 days)?

Optimization Checklist

Setup (One-Time)

  • Google tag or GTM on all pages
  • All primary conversion actions created and verified
  • Dynamic values passed for purchase/lead value
  • Transaction ID passed for deduplication
  • Micro-conversions excluded from "Include in Conversions"
  • Enhanced conversions enabled (web)
  • GCLID capture implemented (B2B with offline conversions)

Weekly

  • Conversion count matches business records (sanity check)
  • No "Inactive" or "Need attention" conversion actions
  • No sudden drops in conversion volume (check for tag breaks)

Monthly

  • Attribution model review — eligible for Data-Driven?
  • Conversion window check — matches actual consideration cycle?
  • Offline conversion upload (B2B) — up to date?
  • Enhanced conversion match rate review

Common Mistakes

Implementation

  • Tag only on some pages (not sitewide global tag)
  • Conversion trigger fires on every page load (not just confirmation page)
  • No transaction ID → duplicate conversions from page refreshes
  • Fixed value instead of dynamic order value

Configuration

  • Micro-conversions included in Smart Bidding signal
  • Attribution window too long (over-credits)
  • View-through window at default 30 days for Display (massive overcounting)
  • Multiple conversion actions counting same event (category + purchase = 2× count)

Measurement

  • Not reconciling Google Ads conversions against CRM/backend records
  • Trusting Google Ads conversion data without cross-referencing GA4 or analytics
  • Not accounting for iOS / Safari cookieless attribution loss

Related Skills

  • google-ads-bidding: Smart Bidding requires accurate conversion tracking
  • google-ads-audiences: Remarketing audience lists require the Google tag
  • google-ads-pmax: PMax performance entirely depends on conversion data quality
  • analytics-tracking: GA4 setup, event tracking, and import into Google Ads

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37%
按下载量换算176

Claude

29.34%
按下载量换算140

Cursor

17.87%
按下载量换算85

Gemini CLI

9.78%
按下载量换算47

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills