一键导入
troubleshoot-conversions
Investigates conversion upload issues and generates a structured diagnostic report based on Google Ads API conversion summaries and alerts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Investigates conversion upload issues and generates a structured diagnostic report based on Google Ads API conversion summaries and alerts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Explains Google Ads API concepts, code snippets, or queries in plain English using real-world analogies.
Extracts the version from agent.json and makes it available during the session.
Retrieves a list of all child customer account IDs (CIDs) under a given Manager Account (MCC).
Inspects any Google Ads API Protobuf resource, nested message or Enum structure.
Configures Asset Group URL expansion filters (listing group webpage exclusions) for Performance Max campaigns.
Presents a response as a step-by-step process for the user to follow.
| name | troubleshoot-conversions |
| description | Investigates conversion upload issues and generates a structured diagnostic report based on Google Ads API conversion summaries and alerts. |
This skill investigates conversion upload issues and generates a structured diagnostic report by executing the mandatory conversion troubleshooting workflow.
When invoked to troubleshoot conversions:
customer_id (from context or customer_id.txt). If missing, prompt the user../.venv/bin/python3 .agents/skills/troubleshoot_conversions/scripts/troubleshoot_conversions.py --customer_id <customer_id> --api_version <api_version>
saved/data/conversion_troubleshooting_report_<epoch>.txt).When analyzing conversion data directly:
offline_conversion_upload_client_summary and offline_conversion_upload_conversion_action_summary.successful_count and failed_count. Calculate daily total as successful_count + failed_count + pending_count (top-level total_event_count is only available on parent resources).alerts (OfflineConversionAlert) at the top-level resource. Inspect alert.error oneof via WhichOneof("error_code") and report error_percentage. If summaries are empty, append exactly: Reason: No standard offline imports detected in last 90 days.Before uploading any conversion CSV data file, execute the programmatic validation utility to statically check formatting and timestamp rules:
./.venv/bin/python3 .agents/skills/troubleshoot_conversions/scripts/validate_conversion_upload.py --csv_path <path_to_csv> --api_version <api_version>