ad-campaign-analyzer

ad-campaign-analyzer is a skill for Claude Code from superamped/ai-marketing-skills. It costs 59 tokens per session (2,562 once invoked), scanned A, original, MIT.

A method for reviewing running advertising campaigns and classifying each one as Red, Yellow, or Green: stop, hold, or scale. It uses metrics such as impressions, clicks, conversions, spending, cost per acquisition, and customer value.

In plain words
What is it for?
Use it for daily, weekly, or monthly reviews; creative-fatigue checks; customer-value versus acquisition-cost analysis; and scaling decisions.
Why use it?
It turns campaign data into a clear decision about which ads to stop, keep monitoring, or expand. It can also reveal when an ad is becoming less effective over time.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the ai-marketing-skills plugin — 18 skills shipped together

Good fit Use it for daily, weekly, or monthly reviews; creative-fatigue checks; customer-value versus acquisition-cost analysis; and scaling decisions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/superamped/ai-marketing-skills/ad-campaign-analyzer
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 superamped/ai-marketing-skills --skill ad-campaign-analyzer
Clone the repo
git clone --depth 1 https://github.com/superamped/ai-marketing-skills

Made for: Claude Code.

Or install ai-marketing-skills, the plugin that ships this one along with the rest of its 18 skills.

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 ad-campaign-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/superamped/ai-marketing-skills/ad-campaign-analyzer/github.svg)](https://agentmods.dev/skills/superamped/ai-marketing-skills/ad-campaign-analyzer)
Your own site
<a href="https://agentmods.dev/skills/superamped/ai-marketing-skills/ad-campaign-analyzer"><img src="https://agentmods.dev/badge/skills/superamped/ai-marketing-skills/ad-campaign-analyzer/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 ad-campaign-analyzer

Your own site · 80×15
<a href="https://agentmods.dev/skills/superamped/ai-marketing-skills/ad-campaign-analyzer"><img src="https://agentmods.dev/badge/skills/superamped/ai-marketing-skills/ad-campaign-analyzer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,562 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00059 $0.02562
Opus 5 $0.00030 $0.01281
Sonnet 5 $0.00012 $0.00512
Haiku 4.5 $0.00006 $0.00256

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

Security

Grade A, and why

ad-campaign-analyzer 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 12d 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/ads/ad-campaign-analyzer/SKILL.md · 280 lines

How it starts

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

Ad Campaign Analyzer

Usage

Use when reviewing a running campaign to decide what to kill, keep, or scale. Works for daily 15-minute ad reviews, weekly creative refresh planning, and monthly performance trend reviews.

Process

Step 1: Gather Inputs

Ask the user for:

  1. Campaign data — one of:
    • CSV or table with columns: ad/ad set name, impressions, clicks, conversions, spend, CPA
    • Pasted text from ads manager
    • Structured list of metrics per ad
  2. Target CPA — the maximum they're willing to pay per acquisition
  3. AOV (Average Order Value) — what they earn per conversion on the front end
  4. Product/pricing info — what they sell, offer details, known conversion benchmarks
  5. Daily budget per ad set (optional) — for scaling calculations
  6. Days running (optional) — for statistical significance judgment
  7. Historical data (optional) — from previous review for trend comparison

Step 2: Parse Campaign Data

Normalize the input into a consistent table structure:

Ad / Ad Set Impressions Clicks CTR Conversions Spend CPA Days Running

Calculate any missing derived metrics:

  • CTR = clicks / impressions × 100
  • CPA = spend / conversions (∞ if 0 conversions)
  • Conversion rate = conversions / clicks × 100

Step 3: Grade Each Ad — Red / Yellow / Green

🔴 RED = STOP

Kill this ad. It's burning money.

Criteria (any one triggers Red):

  • Spent 1.5–2x target CPA with zero conversions
  • CPA is 2x+ target CPA with statistically significant spend
  • Consistently worsening metrics over multiple days with no improvement signs
  • CTR below 0.5% after 1,000+ impressions (the creative isn't connecting)

Action: Turn off immediately. Redirect budget to greens.

🟡 YELLOW = LEAVE ALONE

Don't touch it. It needs more data or is borderline.

Criteria:

  • CPA is close to target (within 0.5–1.5x) but not enough data to be confident
  • Fewer than 1,000 impressions or fewer than 20 clicks — too early to judge
  • Spend is under 1x target CPA — hasn't had a fair chance yet
  • Metrics are mixed (good CTR but low conversion, or vice versa)

Read the full file on GitHub · 280 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. 12d ago First seen · 280 lines · 59 tokens per session scan A d54ec2d1e5a1

Subscribe to this mod's changes

ad-campaign-analyzer is a skill published in the GitHub repository superamped/ai-marketing-skills (67 stars, last pushed 25d ago), licensed MIT. It adds 59 tokens to every session and 2,562 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-30.

Related

Other skills, from other repositories

newsjack-detector

Monitor current news and reaction signals, then decide which are credible newsjacking opportunities for a client. Uses the local monitoring engine for evidence, but the skill owns PR judgment, brand safety, standing, decay, angle fit, and handoff.

elvisun/newsjack · 54 tokens

crisis-holding

Draft crisis holding statements, journalist Q&A posture, and what-not-to-say guidance from confirmed incident facts, with a hard legal-counsel gate. Builds each statement through proven crisis-comms frameworks (holding-statement anatomy, SCCT, CAP order, the legitimate non-answer, bridge/flag/block).

elvisun/newsjack · 67 tokens

voice-extractor

Capture a user's real writing voice from 5-20 prior samples, store a local voice.yaml fingerprint, and enforce it on newsjack drafts so AI tells disappear. Measures voice with named stylometry lenses (Burrows's Delta function-word vector, MATTR lexical diversity, sentence-length burstiness, Biber Dimension-1 register…

elvisun/newsjack · 90 tokens

find-journalists

Build, refine, dedupe, and enrich small fit-checked journalist lists for newsjack campaigns. Uses the newsjack CLI (preferred) or the medialyst MCP for news search and journalist enrichment, and falls back to a best-effort local mode with no verified contacts; the agent owns how returned data is organized.

elvisun/newsjack · 69 tokens

fact-check

Extract factual claims from PR copy, verify each claim independently, attach concrete citations, and warn when certainty is low. Runs each claim through proven newsroom verification methods (lateral reading, source-tier climbing, provenance pillars, triangulation, calibrated rating) and puts the burden of proof on the…

elvisun/newsjack · 85 tokens

pr-calendar

Turn the Medialyst PR calendar feed into a brand-specific, lead-time-aware plan. Pull source-backed upcoming moments, keep only the few a brand has real standing to own, schedule backward from the event date, screen out tone-deaf hooks, and hand selected moments to angle and journalist prep ahead of time. The planned…

elvisun/newsjack · 78 tokens