google-ads-routine

google-ads-routine is a skill for Claude Code from chanktb/claude-google-ads. It costs 112 tokens per session (1,549 once invoked), scanned A, original, MIT.

A recurring operating schedule for a Google Ads account. It checks what should be reviewed daily, weekly, monthly, or quarterly and records when each check was last completed.

In plain words
What is it for?
Use it to organize account monitoring and optimization, decide which checks are due, and apply approved changes only when their preconditions are satisfied.
Why use it?
It prevents routine checks from being forgotten and stops changes when the required conditions are not met. Overdue reviews are brought to the surface automatically.

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 organize account monitoring and optimization, decide which checks are due, and apply approved changes only when their preconditions are satisfied.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/chanktb/claude-google-ads/routine.svg)](https://agentmods.dev/skills/chanktb/claude-google-ads/routine)
Your own site
<a href="https://agentmods.dev/skills/chanktb/claude-google-ads/routine"><img src="https://agentmods.dev/badge/skills/chanktb/claude-google-ads/routine.svg" alt="Measured on agentmods" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,549 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.00112 $0.01549
Opus 5 $0.00056 $0.00775
Sonnet 5 $0.00022 $0.00310
Haiku 4.5 $0.00011 $0.00155

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

Security

Grade A, and why

google-ads-routine 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 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/routine_state.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/routine/SKILL.md · 79 lines

How it starts

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

This is the operating rhythm, not a new analysis engine: it calls tracker and optimizer at the right cadence, remembers history, and gates actions so nothing changes unless its preconditions are met. It answers: "what do I check today, what am I allowed to change, and under what conditions."

STEP 0 — Read state + build today's agenda

  1. Load account-context.yaml (esp. guardrails, margin_tiers, campaign_defaults).
  2. Run the history engine: python "${CLAUDE_PLUGIN_ROOT}/skills/routine/scripts/routine_state.py" [--today YYYY-MM-DD] It reads routine-state.json in the working dir and prints what's DUE / OVERDUE per cadence.
  3. Run everything that's due or overdue — not just what the user asked. If the user says "daily" but the weekly/monthly is overdue (they haven't checked in a while), run those too and say so. This is the "it remembers and nags" behavior: long gap → the overdue cadence surfaces automatically.

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

  • Scout (haiku) — STEP 0 routine_state.py run (agenda) and the --mark stamp after acting.
  • Routine / Judge — inherited from the skills this orchestrates: tracker and optimizer carry their own per-STEP tiers (collection is Routine, verdicts are Judge).
  • Judge (main session) — the decision gates (every precondition check, +10% vs WAIT), reading the cooldown from guardrails, and deciding what overdue work to run. The agenda is cheap; the gate is judgment — never delegate a gate.

Cadence checklists (each calls existing skills — don't re-implement)

  • Daily (~15 min) — health check, NOT optimization. Via tracker: spend/CPC/clicks vs yesterday, budget pacing, disapprovals/policy, paused-by-error, sudden anomalies. Goal = spot what's BROKEN. No performance changes off one day of data.
  • Weekly (1-2h) — via optimizer: search-term review (mandatory, both sources) — pull search_term_view (covers Search/Branded campaigns) AND PMax/Demand-Gen search category insights (campaign_search_term_insight; search_term_view does NOT contain PMax terms). Feed both to search_term_miner.py. Never propose blocking brand terms (brand intent = your own traffic, even at 0 conv). Then: budget pacing + reallocate to top performers, campaign tiering, automated-rules check. Apply the decision gates below.
  • Monthly (2-4h): the full money-leak sweep — run D1-D14 in ${CLAUDE_PLUGIN_ROOT}/references/diagnostic-playbook.md: bid/target health (decode bidding_strategy_system_status; lower tROAS if LIMITED_BY_INVENTORY, scale if LIMITED_BY_BUDGET on-target), budget allocation (shift low-ROAS→high-ROAS), geo waste, dayparting, structure, Quality Score, PMax channel distribution (D8), ad copy/assets/extensions (D9). Any tROAS/budget move follows the Scaling Ladder (one variable, cooldowns). Plus conversion-tracking audit (measurement), attribution review. Pull a fresh audit if drift is suspected.
  • Quarterly: strategic audit + plan alignment to business goals.

Read the full file on GitHub · 79 lines

Files

What ships with it

1 file 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. 7d ago First seen · 79 lines · 112 tokens per session scan A bfb069de3012

Subscribe to this mod's changes

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