
Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.
Claude Ads packages paid-media workflows into a Claude-first skill system with platform-specific helpers, agents, and validation rules. It reads account data, produces evidence-backed audits and plans, and outputs versioned JSON reports with optional Markdown, HTML, and PDF renderings. Live account changes stay disabled unless the exact capability passes the repository's safety gates.
Builders who manage paid media in Claude Code and want reusable workflows for audits, planning, monitoring, and reporting.
You can turn ad account reads and exports into consistent, evidence-backed work without re-explaining the process each time.
Covers 12 ad platforms, including Google Ads, Meta Ads, YouTube Ads, LinkedIn Ads, TikTok Ads, Microsoft Advertising, Apple Ads, Amazon Ads, Reddit Ads, Pinterest Ads, Snapchat Ads, and X Ads.
Uses dated evidence, confidence levels, and explicit handling for missing or contradictory sources.
Separates health, evidence coverage, and regulatory exposure, with defined pass, fail, unknown, and not_applicable states.
Produces canonical JSON runs that can be rendered into Markdown, HTML, and optional PDF.
Keeps reads read-only by default and requires approval, idempotency, rollback, verification, and exact capability matches before writes.
Provides platform skills, cross-platform workflow skills, and specialist agents for audit, research, creative, and verification tasks.
/plugin marketplace add agricidaniel/claude-ads /plugin install claude-ads@ai-marketing-hub-claude-ads
/plugin marketplace remove agricidaniel-claude-ads /plugin marketplace add agricidaniel/claude-ads /plugin install claude-ads@ai-marketing-hub-claude-ads
git clone https://github.com/AgriciDaniel/claude-ads.git cd claude-ads bash install.sh --source=local
bash install.sh --target=codex --source=local bash install.sh --target=gemini --source=local --no-deps
git clone https://github.com/AgriciDaniel/claude-ads.git Set-Location claude-ads .\install.ps1 -Source local
bash uninstall.sh --target=claude
Claude-first, portable paid-media operations for agencies, consultants, and in-house performance teams.
Claude Ads turns authorized exports or account reads into source-grounded audits, plans, creative workflows, experiments, monitoring, and reports. It is read-only by default. Live changes stay disabled until the exact platform and operation pass approval, idempotency, verification, audit, and rollback gates.
[!NOTE] Claude Ads ships from two homes: the public release at
AgriciDaniel/claude-ads(MIT, no membership required) and the community mirror atAI-Marketing-Hub/claude-ads, where AI Marketing Hub Pro members get early access and direct collaboration.
| Segment | Platforms |
|---|---|
| Search, video, and social | Google Ads, Meta Ads, YouTube Ads, LinkedIn Ads, TikTok Ads, Microsoft Advertising, Reddit Ads, Snapchat Ads, X Ads |
| Commerce and retail media | Apple Ads, Amazon Ads, Pinterest Ads |
Each platform has a focused skill, audit worker, control reference, capability declaration, and testable routing surface. The capability manifest is the authoritative record for live reads and writes.
Standalone installs use /ads. Claude Code plugins are namespaced and use
/claude-ads:ads. Both load the same ads/SKILL.md contract.
| Command | Outcome |
|---|---|
/ads setup | Create the client, account, KPI, privacy, and guardrail profile |
/ads audit [all|platform|scope] | Run a complete or scoped evidence-backed audit |
/ads plan | Build channel, campaign, budget, competitor, and measurement plans |
/ads create | Produce copy, image, video, or product-photo assets |
/ads launch --draft | Draft a campaign mutation plan without changing the account |
/ads monitor | Review pacing, delivery, tracking, fatigue, policy, and performance |
/ads optimize --draft | Draft evidence-backed optimization changes |
/ads experiment | Design or read out a controlled test |
/ads report | Render a validated JSON run bundle |
/ads research refresh | Refresh platform, policy, API, benchmark, and ecosystem evidence |
/ads validate | Validate contracts, runs, capabilities, maturity, or release readiness |
/ads status, /ads next | Show current status and the highest-priority blocker |
Platform shortcuts such as /ads google, /ads meta, /ads amazon, and
/ads reddit route to the matching platform audit.
The GIF shows the original command-discovery experience. The v2 command table above and the platform table are current and authoritative.
Claude Code is the canonical runtime. Codex, Gemini, Cursor, Windsurf, Goose, and compatible Agent Skills hosts can consume the same skill files where their runtime supports them.
Prefer the host's native plugin flow or a tagged release archive with a verified SHA-256 checksum. Never pipe a remote installer directly to a shell.
For Claude Code, the native plugin flow is:
/plugin marketplace add agricidaniel/claude-ads
/plugin install claude-ads@ai-marketing-hub-claude-ads
If you added this marketplace before v2.0.0, Claude Code still holds it under
the stale local alias agricidaniel-claude-ads. Remove that alias, then re-add
and install:
/plugin marketplace remove agricidaniel-claude-ads
/plugin marketplace add agricidaniel/claude-ads
/plugin install claude-ads@ai-marketing-hub-claude-ads
Or install from a local clone of the public repository:
git clone https://github.com/AgriciDaniel/claude-ads.git
cd claude-ads
bash install.sh --source=local
Select another standalone host explicitly:
bash install.sh --target=codex --source=local
bash install.sh --target=gemini --source=local --no-deps
PowerShell uses the same managed ownership model:
git clone https://github.com/AgriciDaniel/claude-ads.git
Set-Location claude-ads
.\install.ps1 -Source local
Managed dependencies support CPython 3.11 and 3.12 on the declared Linux,
macOS, and Windows wheel matrix. Unsupported interpreters fail before the
destination changes. Use --no-deps or -NoDeps for a skill-only install.
Browser capture requires an operator-installed Playwright browser payload. PDF rendering requires the host's WeasyPrint and Pango system libraries. These are documented in the external runtime dependency manifest.
Uninstall only manifest-owned files:
bash uninstall.sh --target=claude
The PowerShell equivalent is uninstall.ps1.
One conductor owns scope, policy, aggregation, and final artifacts. Workers analyze bounded slices and return schema-valid findings. Required-worker failure makes the run partial. It is never silently presented as a complete audit.
The canonical result is versioned JSON. Markdown, HTML, and PDF are renderings of the same validated run bundle.
Controls use pass, fail, unknown, or not_applicable.
See the scoring reference and production
implementation in claude_ads_core/scoring.py.
All adapters are read-only by default. Applying a change requires:
Missing ceilings mean no write. Permanent deletion is not supported in v2. Credentials belong in environment variables, an OS keychain, or an approved secret manager. They never belong in the repository, profiles, reports, or logs.
The public-safe control-plane/ records product boundaries, dated sources,
claims, capabilities, safety rules, privacy rules, ecosystem decisions, and
release requirements.
See the release requirements and publishing policy.
Create a virtual environment and run the complete suite:
python3.12 -m venv .venv
.venv/bin/python -m pip install --no-deps -e .
.venv/bin/python -m pip install --require-hashes --only-binary=:all: -r requirements.lock
.venv/bin/python -m pip install --require-hashes --only-binary=:all: -r requirements-dev.lock
.venv/bin/python -m pip install --require-hashes --only-binary=:all: -r .github/requirements-schema-tests.lock
.venv/bin/python -m pip check
.venv/bin/python -m pytest -q
Useful focused checks:
python -m claude_ads_core --version
python -m claude_ads_core validate finding path/to/finding.json
bash -n install.sh uninstall.sh
ads/ main skill, interface metadata, and shared references
skills/ platform and lifecycle skills
agents/ platform, cross-platform, research, and verifier workers
claude_ads_core/ typed contracts, adapters, validation, and scoring
control-plane/ evidence, capability, safety, maturity, and release state
scripts/ browser, creative, reporting, and release helpers
evals/ routing and behavioral evaluation cases
tests/ deterministic, security, installer, and adapter tests
Claude Ads benefits from community bug reports, feature requests, and proposed fixes. Thank you to the following contributors whose work informed v2.0.2. Some proposals were independently implemented or superseded; these credits recognize the contribution without implying that every submitted patch was merged.
| Contributor | Contribution | Discussion |
|---|---|---|
| @principisimone-sys | Search and DSA overlap request | #65 |
| @HarKro753 | Meta account, Pixel, and conversion cold-start request | #53 |
| @plcosta | Marketplace case-normalization report and proposed documentation fix | #17, #18 |
| @ulises2k | Stale marketplace-alias installation report | #56 |
| @kutzki | Windows dependency-lock and older-install update report | #57 |
| @SamaEducationalCo | Misleading grades after failed landing-page analysis | #61 |
| @Bortlesboat | Proposed landing-page analysis failure fix | #66 |
| @gabbyran2026-gif | Proposed target-lock test subprocess fix | #58 |
| @AbundantASG | Proposed scoped target-lock test subprocess fix | #59 |
| @hendrixfreire | Sensitive-file ignore-pattern report | #32 |
| @josefresco | Non-actionable Smart Conversions removal advice report | #50 |
| @dead-simba | Request to revisit Meta architecture guidance | #15 |
| @c6zks4gssn-droid | Repository-tooling proposal, including CodeQL | #29 |
See CONTRIBUTING.md to report a problem or propose a change.
Client data, raw private research, captured prompts, credentials, account exports, and agent transcripts must never enter Git history, reports, or release archives. Keep credentials in environment variables, an OS keychain, or an approved secret manager.
Original Claude Ads code and documentation are available under the MIT License. Third-party APIs, trademarks, documentation, and cited artifacts remain subject to their own terms. Review the source ledger and third-party notices before importing external work.
Sign in to join the discussion.
No comments yet. Be the first to say what this is good for.

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.
Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)
AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary
Academic Research Skills for Claude Code: research → write → review → revise → finalize
AI video skill for Claude Code & Codex — cinematic product videos with Remotion: 152 shot recipe cards, 209 motion previews, a production-ready template
817 structured cybersecurity skills for AI agents · Mapped to 6 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND, NIST AI RMF & MITRE F3 (Fight Fraud) · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platforms · 29 security domains · Apache 2.0