google-ads-pusher

google-ads-pusher is a skill for Claude Code from chanktb/claude-google-ads. It costs 141 tokens per session (2,217 once invoked), scanned A, original, MIT.

A safety-focused tool for putting Google Ads campaign specifications or approved change files into an advertising account.

In plain words
What is it for?
Use it to export Google Ads Editor files and checklists, or apply approved campaign creations and edits through the API when writing is enabled.
Why use it?
It validates proposed work, keeps new campaigns paused, checks spending limits, and requires human approval before changes are made.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the claude-google-ads plugin — 15 skills, 15 commands shipped together

Good fit Use it to export Google Ads Editor files and checklists, or apply approved campaign creations and edits through the API when writing is enabled.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add chanktb/claude-google-ads
Claude Code
/plugin install claude-google-ads

Made for: Claude Code.

Or install claude-google-ads, the plugin that ships this one along with the rest of its 15 skills, 15 commands.

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-pusher

README.md
[![agentmods](https://agentmods.dev/badge/skills/chanktb/claude-google-ads/pusher/github.svg)](https://agentmods.dev/skills/chanktb/claude-google-ads/pusher)
Your own site
<a href="https://agentmods.dev/skills/chanktb/claude-google-ads/pusher"><img src="https://agentmods.dev/badge/skills/chanktb/claude-google-ads/pusher/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-pusher

Your own site · 80×15
<a href="https://agentmods.dev/skills/chanktb/claude-google-ads/pusher"><img src="https://agentmods.dev/badge/skills/chanktb/claude-google-ads/pusher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 141 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,217 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.00141 $0.02217
Opus 5 $0.00071 $0.01108
Sonnet 5 $0.00028 $0.00443
Haiku 4.5 $0.00014 $0.00222

Measured 9d ago against content hash 9d64259808ad, 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-pusher 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.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/changeset_to_actions.py, scripts/spec_to_editor_csv.py, scripts/spec_to_paste.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/pusher/SKILL.md · 124 lines

How it starts

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

Get a change into the account without ever spending money unexpectedly. Two units of work, auto-detected by the input's kind:

  • campaign-spec.json (from builder-*, kind absent) — creates a NEW campaign. Schema: ${CLAUDE_PLUGIN_ROOT}/references/campaign-spec.md.
  • change-set.json (from optimizer/routine, kind: "change-set") — EDITS to live campaigns (negatives, geo/product exclusions, budget/target moves, pauses, extensions, signals). Schema: ${CLAUDE_PLUGIN_ROOT}/references/change-set.md.

Read the JSON, never the .xlsx. The safety invariants below apply to both paths.

Operating rules / safety invariants (non-negotiable)

  • Validate before anything (STEP 1). A spec that fails validation never reaches an export or mutation.
  • Campaigns are created PAUSED. The human enables them in the UI after reviewing. Never create enabled.
  • Human approval gate (STEP 3): print exactly what will happen and require an explicit "yes".
  • Spend-cap guard: block if daily_budget exceeds the cap (from context or asked).
  • Mode honesty: if api_write is false, do NOT claim auto-create — emit an importable file + guided UI steps. State precisely what is automated vs manual.

Model dispatch (run cheap, decide expensive) — see ${CLAUDE_PLUGIN_ROOT}/references/model-tier-dispatch.md

  • Scout (haiku) — STEP 1 validate_spec.py + spec_to_paste.py; STEP 2 generators (spec_to_editor_csv.py, spec_to_pmax_checklist.py); STEP 1c/2c validate_changeset.py + changeset_to_actions.py; per-URL 200 checks. These are deterministic script runs — push them all down.
  • Judge (main session) — STEP 3 the approval gate (print the plan, require an explicit "yes"), the spend-cap call, Mode B mutation oversight, and any FAIL interpretation. Never delegate the gate. A safety decision is judgment by definition.
  • (No Routine tier here — validation and generation are single-shot Scout runs; the only judgment is the gate.)

Read the full file on GitHub · 124 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 124 lines · 141 tokens per session scan A 9d64259808ad

Subscribe to this mod's changes

google-ads-pusher is a skill published in the GitHub repository chanktb/claude-google-ads (11 stars, last pushed 2mo ago), licensed MIT. It adds 141 tokens to every session and 2,217 once invoked, about $0.0007 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-30.

Related

Other skills, from other repositories