get

A command for downloading Google Ads data, which is information about an account's campaigns, ads, keywords, settings, and performance. It first checks for a project-root config.json file containing the account credentials.

In plain words
What is it for?
Use it to export account structure and performance data for selected time ranges and active or paused advertising entities.
Why use it?
It prevents the download from starting without a valid configuration and lets you choose the data period and whether paused items are included.

Command

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.

agentmods
npx agentmods add commands/trueclicks/claude-plugins/get
Clone the repo
git clone --depth 1 https://github.com/TrueClicks/claude-plugins
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 944 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. Scan, not verified.
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 $0.00000 $0.00944
Opus 5 $0.00000 $0.00472
Sonnet 5 $0.00000 $0.00189
Haiku 4.5 $0.00000 $0.00094

Measured yesterday against content hash b54a8fa84a65, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

get scanned grade C with 2 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 yesterday.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf data/account docs CLAUDE.md && unzip -o tmp/response.zip && rm tmp/response.zip

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

mkdir -p tmp && curl -s --max-time 230 -o tmp/response.zip -D tmp/response_headers.txt -X POST "https://api.claudeppc.ai/api/cli/google-ads/get-data?includePaused={includePaused}&scope={scope}&pluginVersion=1.8.0" -F "co
plugins/google-ads/commands/get.md · 74 lines

How it starts

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

Download Google Ads data

Step 1: Check Configuration

Check if config.json exists in the project root.

  • If it does not exist or contains placeholder values (YOUR-TOKEN-HERE, 1234567890): tell the user to visit claudeppc.ai to download their config.json and place it in the project root. Stop here.
  • If it exists with real values: continue to Step 2.

Step 2: Ask what to download

Use the AskUserQuestion tool to ask two questions:

Question 1: "What data do you want to download?"

  • Structure + Performance 30d (Recommended) - Full account structure plus last 30 days → previous 30 days performance comparison
  • Structure only - Account settings, campaigns, ad groups, ads, keywords, targeting, extensions
  • Performance 30d - Last 30 days → previous 30 days comparison
  • Performance 7d - Last 7 days → previous 7 days comparison
  • Performance monthly - This month → last month → 2 months ago comparison

Question 2: "Which entities should be included?"

  • Active only (Recommended) - Only enabled campaigns, ad groups, ads, and keywords
  • Include paused - Also include paused campaigns, ad groups, ads, and keywords

Step 3: Run the data fetch

Based on the user's answers:

  • Set scope to one of: structure+30d, structure, 30d, 7d, monthly
  • Set includePaused to false (active only) or true (include paused)

For structure+30d — run two sequential fetches: first structure, then 30d. Follow the fetch and extract steps below for each scope in order. Check for plugin update headers on both responses but only display the notice once.

For each fetch, run the following command (set Bash timeout to 240000ms — the server may take up to 230 seconds):

mkdir -p tmp && curl -s --max-time 230 -o tmp/response.zip -D tmp/response_headers.txt -X POST "https://api.claudeppc.ai/api/cli/google-ads/get-data?includePaused={includePaused}&scope={scope}&pluginVersion=1.8.0" -F "[email protected]"

Read the full file on GitHub · 74 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. yesterday First seen · 74 lines · 0 tokens per session scan C b54a8fa84a65

Subscribe to this mod's changes

get is a command published in the GitHub repository TrueClicks/claude-plugins (2 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 944 tokens. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.