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.
npx agentmods add commands/trueclicks/claude-plugins/getgit clone --depth 1 https://github.com/TrueClicks/claude-pluginsWhat 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.
| Model | Per session | Once 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 |
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 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 theirconfig.jsonand 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
scopeto one of:structure+30d,structure,30d,7d,monthly - Set
includePausedtofalse(active only) ortrue(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]"
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.
- yesterday First seen · 74 lines · 0 tokens per session scan C b54a8fa84a65
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.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.