google-ads-agent

google-ads-agent is a skill for Claude Code, Codex from itallstartedwithaidea/google-ads-gemini-extension. It costs 60 tokens per session (1,272 once invoked), scanned A, original, MIT.

A skill for managing Google Ads, an online advertising service where businesses pay to show ads in search results and other placements. It covers campaign analysis, budgets, keywords, ad text, bidding, Performance Max, and account audits.

In plain words
What is it for?
It helps review campaigns, recommend budget and bidding changes, analyze keywords and search terms, write responsive search ads, assess Performance Max campaigns, and audit accounts.
Why use it?
It helps turn advertising data into decisions about wasted spend, targeting, bids, tracking, and campaign structure.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit It helps review campaigns, recommend budget and bidding changes, analyze keywords and search terms, write responsive search ads, assess Performance Max campaigns, and audit accounts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/itallstartedwithaidea/google-ads-gemini-extension/google-ads-agent
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add itallstartedwithaidea/google-ads-gemini-extension --skill google-ads-agent
Clone the repo
git clone --depth 1 https://github.com/itallstartedwithaidea/google-ads-gemini-extension

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for google-ads-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/itallstartedwithaidea/google-ads-gemini-extension/google-ads-agent/github.svg)](https://agentmods.dev/skills/itallstartedwithaidea/google-ads-gemini-extension/google-ads-agent)
Your own site
<a href="https://agentmods.dev/skills/itallstartedwithaidea/google-ads-gemini-extension/google-ads-agent"><img src="https://agentmods.dev/badge/skills/itallstartedwithaidea/google-ads-gemini-extension/google-ads-agent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for google-ads-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/itallstartedwithaidea/google-ads-gemini-extension/google-ads-agent"><img src="https://agentmods.dev/badge/skills/itallstartedwithaidea/google-ads-gemini-extension/google-ads-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,272 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.01272
Opus 5 $0.00030 $0.00636
Sonnet 5 $0.00012 $0.00254
Haiku 4.5 $0.00006 $0.00127

Measured 9d ago against content hash 5301f8a6901a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

google-ads-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/google-ads-agent/SKILL.md · 148 lines

How it starts

The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a Google Ads management expert with deep knowledge of the Google Ads API v22, GAQL (Google Ads Query Language), and PPC best practices. You provide the same quality of analysis as a senior paid search strategist.

Core Capabilities

  • Campaign Analysis: Interpret campaign data, identify performance trends, flag underperformers, spot anomalies
  • Budget Optimization: Recommend budget allocations based on ROAS/CPA goals, identify wasted spend
  • Keyword Strategy: Analyze search terms, suggest negatives, identify expansion opportunities, assess match types
  • Ad Copy: Write and iterate on responsive search ad (RSA) copy following Google's best practices and pinning strategies
  • Performance Max: Advise on PMax asset groups, audience signals, and performance interpretation
  • Bidding Strategy: Evaluate and recommend bidding strategies (tCPA, tROAS, Max Conversions, Manual CPC)
  • Account Auditing: Conduct structured audits across all dimensions (structure, targeting, creative, tracking)

Write Safety Protocol (CEP)

Never execute write operations without explicit user confirmation. For any mutation:

  1. Confirm: Present exactly what will change, with before/after comparison
  2. Execute: Only after user types CONFIRM or equivalent
  3. Post-check: Verify the change took effect and report results

GAQL Query Patterns

Campaign Performance

SELECT campaign.id, campaign.name, campaign.status,
       campaign.bidding_strategy_type,
       metrics.cost_micros, metrics.conversions,
       metrics.conversions_value, metrics.clicks,
       metrics.impressions, metrics.ctr, metrics.average_cpc,
       metrics.cost_per_conversion
FROM campaign
WHERE segments.date DURING LAST_30_DAYS
  AND campaign.status = 'ENABLED'
ORDER BY metrics.cost_micros DESC

Search Terms Analysis

SELECT search_term_view.search_term, search_term_view.status,
       campaign.name, ad_group.name,
       metrics.impressions, metrics.clicks, metrics.conversions,
       metrics.cost_micros, metrics.ctr,
       metrics.cost_per_conversion
FROM search_term_view
WHERE segments.date DURING LAST_30_DAYS
ORDER BY metrics.cost_micros DESC
LIMIT 100

Read the full file on GitHub · 148 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 148 lines · 60 tokens per session scan A 5301f8a6901a

Subscribe to this mod's changes

google-ads-agent is a skill published in the GitHub repository itallstartedwithaidea/google-ads-gemini-extension (8 stars, last pushed 1mo ago), licensed MIT. It adds 60 tokens to every session and 1,272 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

adspirer-ads-agent

Adspirer — AI-powered advertising and performance marketing agent. Manage Google Ads, Meta Ads (Facebook & Instagram), LinkedIn Ads, and TikTok Ads via natural language. 100+ tools for paid media campaign creation, live performance analysis, PPC keyword research with real CPC data, budget optimization, ad creative…

LeoYeAI/openclaw-master-skills · 141 tokens

ads

Use when running or fixing paid acquisition on Google or Meta — campaign structure (Performance Max, Demand Gen, Search, Advantage+), platform-fit creative, budget/scaling rules, break-even ROAS math, and Consent Mode v2 / CAPI tracking gaps. NOT the page the ad clicks into (that is landing-copy), NOT the channel-mix…

ericrisco/rsc-harness · 81 tokens

prompt-optimizer

Analyze raw prompts, identify intent and gaps, match ECC components (skills/commands/agents/hooks), and output a ready-to-paste optimized prompt. Advisory role only — never executes the task itself. TRIGGER when: user says "optimize prompt", "improve my prompt", "how to write a prompt for", "help me prompt", "rewrite…

Jamkris/everything-gemini-code · 179 tokens

python-patterns

Pythonic idioms, PEP 8 standards, type hints, and best practices for building robust, efficient, and maintainable Python applications.

Jamkris/everything-gemini-code · 33 tokens

assistant

Create, manage, and chat with Pinecone Assistants for document Q&A with citations. Handles all assistant operations - create, upload, sync, chat, context retrieval, and list. Recognizes natural language like "create an assistant from my docs", "ask my assistant about X", or "upload my docs to Pinecone".

pinecone-io/gemini-cli-extension · 68 tokens

openclaw-persona-forge

A persona-design guide for OpenClaw agents, including their identity, personality, boundaries, names, and avatar prompts. OpenClaw is the specific agent platform this guide targets.

Jamkris/everything-gemini-code · 221 tokens