A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Claude Code skill for planning, executing, and measuring digital marketing campaigns. Includes UTM tracking, content str
A comprehensive Claude Code skill for planning, executing, and measuring digital marketing campaigns across content, social media, email, SEO, GEO, and analytics channels. Supports 14+ AI coding agents through the Agent Skill Standard.
# Install with skilz (recommended)
pip install skilz
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill
# Or install from marketplace
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns
Then ask Claude:
The recommended way to install this skill across different AI coding agents is using the skilz universal installer. This skill supports the Agent Skill Standard, which means it works with 14+ coding agents including Claude Code, OpenAI Codex, Cursor, and Gemini CLI.
pip install skilz
You can use either -g or --git with HTTPS or SSH URLs:
# HTTPS URL
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill
# SSH URL
skilz install --git git@github.com:SpillwaveSolutions/running-marketing-campaigns-agent-skill.git
Install to user home (available in all projects):
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill
Install to current project only:
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill --project
Install for OpenCode:
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill --agent opencode
Project-level install:
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill --project --agent opencode
Project-level install for Gemini:
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill --agent gemini
Install for OpenAI Codex:
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill --agent codex
Project-level install:
skilz install -g https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill --project --agent codex
# Claude to user home dir ~/.claude/skills
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns
# Claude skill in project folder ./claude/skills
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns --project
# OpenCode install to user home dir ~/.config/opencode/skills
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns --agent opencode
# OpenCode project level
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns --agent opencode --project
# OpenAI Codex install to user home dir ~/.codex/skills
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns --agent codex
# OpenAI Codex project level ./.codex/skills
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns --agent codex --project
# Gemini CLI (project level) -- only works with project level
skilz install SpillwaveSolutions_running-marketing-campaigns-agent-skill/running-marketing-campaigns --agent gemini
See Skill Listing to see how to install this exact skill to 14+ different coding agents.
Skilz supports 14+ coding agents including Windsurf, Qwen Code, Aidr, and more.
For the full list of supported platforms, visit SkillzWave.ai/platforms or see the skilz-cli GitHub repository.
# Clone to your Claude skills directory
git clone https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill.git \
~/.claude/skills/running-marketing-campaigns
~/.claude/skills/running-marketing-campaigns/The skill activates automatically when you ask Claude about:
"Help me plan a product launch campaign"
"Generate UTM parameters for my email newsletter"
"Create a content calendar for Q1"
"What KPIs should I track for social media?"
"Define our brand voice guidelines"
"Check if my marketing copy follows brand guidelines"
"Optimize my content for ChatGPT and Perplexity visibility"
"Create an SEO strategy for my SaaS product"
Two Python utilities are included for automation:
Generate, validate, and audit UTM tracking URLs.
# Generate UTM parameters
python scripts/utm_tools.py generate -s facebook -m paid-social -c spring-2025
# Build complete tracking URL
python scripts/utm_tools.py build -u https://example.com -s email -m newsletter -c q1-launch
# Validate existing URL
python scripts/utm_tools.py validate -u "https://example.com?utm_source=email&utm_medium=cpc"
# Batch process from CSV
python scripts/utm_tools.py batch -f campaigns.csv -u https://example.com -o tracking.csv
# Check GA4 channel mapping
python scripts/utm_tools.py ga4-check -s facebook -m paid-social
# Audit URLs for case inconsistencies
python scripts/utm_tools.py audit -f urls.txt
# Generate QR code (requires: pip install qrcode pillow)
python scripts/utm_tools.py qr -u "https://example.com?utm_source=qr" -o code.png
Validate marketing copy against brand guidelines.
# Full compliance check
python scripts/brand_checker.py check --file marketing_copy.txt
# Check readability score
python scripts/brand_checker.py readability --text "Your marketing copy here"
# Find banned words and phrases
python scripts/brand_checker.py banned --file email_draft.txt
# Check terminology consistency
python scripts/brand_checker.py terminology --file copy.txt
# Full audit with JSON output
python scripts/brand_checker.py full-audit --file campaign.txt --output report.json
# List all banned words
python scripts/brand_checker.py list-banned
running-marketing-campaigns/
├── SKILL.md # Main skill definition
├── README.md # This file
├── LICENSE # MIT License
├── references/
│ ├── analytics-measurement.md # KPIs, GA4, attribution, ROI
│ ├── brand-guidelines.md # Voice, tone, messaging, terminology
│ ├── content-strategy.md # Topic clusters, calendars, funnel mapping
│ ├── email-marketing.md # Sequences, subject lines, deliverability
│ ├── geo-optimization.md # GEO, LLMO, AEO, AI visibility
│ ├── gtm-tools.md # Launch frameworks, positioning
│ ├── seo-optimization.md # Technical, on-page, content SEO
│ ├── social-media.md # Platform tactics, benchmarks
│ └── utm-tracking.md # UTM formatting, GA4 alignment
└── scripts/
├── brand_checker.py # Brand voice compliance checker
└── utm_tools.py # UTM generation and validation
| Reference | Purpose |
|---|---|
| content-strategy.md | Topic clusters, Hero-Hub-Hygiene, funnel mapping, atomization |
| social-media.md | Platform-specific tactics, posting times, algorithm priorities |
| email-marketing.md | Sequences, subject lines, segmentation, deliverability |
| utm-tracking.md | UTM parameters, naming conventions, GA4 channel alignment |
| analytics-measurement.md | Marketing funnel KPIs, attribution models, reporting templates |
| gtm-tools.md | SOSTAC, RACE, AARRR frameworks, launch planning |
| brand-guidelines.md | Voice dimensions, tone adaptation, messaging framework |
| seo-optimization.md | Technical SEO, on-page, content SEO, link building, E-E-A-T |
| geo-optimization.md | Generative Engine Optimization, LLMO, AEO, AI visibility |
The skill includes comprehensive brand voice tooling:
Define brand voice across 4 spectrums:
Clarify voice traits with boundaries:
| Trait | This Means... | But NOT... |
|---|---|---|
| Helpful | Guiding with expertise | Patronizing |
| Confident | Speaking with authority | Arrogant |
| Clear | Simple explanations | Dumbed down |
Automatically flag:
qrcode, pillow (for QR code generation)requests (for URL shortening via bit.ly)MIT License - See LICENSE for details.
Contributions welcome! Please:
View on SkillzWave Marketplace
SkillzWave.ai - Largest Agentic Marketplace for AI Agent Skills
SpillWave - Leaders in AI Agent Development
Design enforcement with memory — keeps your UI consistent across a project
1000+ skills curated from Anthropic, Vercel, Stripe, and other engineering teams
Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Sho
AI image generation skill for Claude Code -- Creative Director powered by Gemini