launch-campaign
Orchestrate the full multi-channel launch of an approved campaign plan — pre-launch checklist, asset readiness gate, channel-by-channel activation, CRM campaign record creation, kickoff comms, day-1 monitor setup. Broader than /launch-ad-campaign (which is paid-ads only).
What this skill does
# /digital-marketing-pro:launch-campaign — Multi-Channel Campaign Launch Orchestrator
This skill takes an **approved** campaign plan (from `/digital-marketing-pro:campaign-plan`) and walks it through every step required to go live: pre-launch gates, channel-by-channel activation, CRM record creation, kickoff comms to the team, and day-1 monitoring setup. It complements — and is broader than — `/digital-marketing-pro:launch-ad-campaign`, which handles only paid-ads activation on Google / Meta / LinkedIn / TikTok.
Use this skill **once** per campaign, after the campaign plan is approved and all creative + landing pages + email sequences are signed off. Not for paid-ads alone — for the full multi-channel launch (paid + organic + email + content + CRM + PR).
## Why this skill exists
A campaign plan is a document. A campaign launch is twenty separate platform actions in the correct order with the correct dependencies. Without an orchestrator, agencies miss steps — landing page goes live without the analytics tag wired, email automation gets enabled before the source list is GDPR-clean, paid ads get activated before the LP is indexed, the team finds out the campaign launched by seeing the first conversion notification in Slack.
This skill is the difference between "we launched" and "we launched cleanly." It checks every prerequisite before it touches a live system, executes the activation steps in dependency order, and records the launch as a CRM Campaign object so attribution can downstream-correctly from day one.
## What this skill does NOT do
- It does NOT create the campaign plan — that's `/digital-marketing-pro:campaign-plan`.
- It does NOT generate the creative — that's `/digital-marketing-pro:ad-creative`, `/digital-marketing-pro:content-engine`, `/digital-marketing-pro:email-sequence`, etc.
- It does NOT bid or optimise day 2+ — that's `/digital-marketing-pro:performance-report`, `/digital-marketing-pro:budget-optimizer`, etc.
It is the **single-shot launch event**, not the planning or the optimisation.
## Process
### Step 0 — Prerequisites (BLOCKER gates)
This skill REFUSES to proceed unless ALL of these pass. Print the failing items, do not start the launch.
1. `/digital-marketing-pro:validate-profile --brand {brand}` returns `passed` or `passed_with_warnings`.
2. A campaign plan exists at `~/.claude-marketing/{brand}/campaigns/{campaign_id}/plan.json` (or the user provides `--plan-path`).
3. The plan's `status` field is `approved` (not `draft` / `in_review` / `rejected`).
4. Every asset referenced in the plan exists at the path the plan claims it does (creative files, landing-page URLs respond 200, email templates exist in the email platform).
5. Every connector required by the channels in scope is reachable (re-run a fast `connector-status.py --quick` probe).
6. Conversion tracking is verified for every channel in scope — GA4 events configured AND test-fired in the last 7 days (per `performance-monitor.py --channel ga4_health`).
7. If any AI-generated visual / video / audio is in the asset list AND the campaign targets EU markets, every such asset has been signed via C2PA (`/digital-marketing-pro:c2pa-metadata` workflow, or the SocialForge / ContentForge `--c2pa-sign` flag). Article 50 compliance is non-negotiable for EU launches as of 2 Aug 2026.
If any of these fail, print the punch list with the literal next command for each item, and exit.
### Step 1 — Load the campaign plan
Read `plan.json`. Extract: `campaign_id`, `campaign_name`, `objective`, `start_date`, `end_date`, `channels` (with per-channel `budget`, `audience`, `creative_ids`, `landing_url`, `kpi_targets`), `team_assignments`, `kickoff_comms`, `attribution_model`.
### Step 2 — Dry-run preview
Before touching any live system, print a dry-run preview of every action that's about to happen. The user must confirm `yes` to proceed. The dry run shows:
```
🚀 Campaign launch preview — {campaign_name}
Campaign ID: {campaign_id}
Brand: {brand}
Window: {start_date} → {end_date}
Objective: {objective}
Attribution: {model}
The following 14 actions will execute in order:
1. CRM — Create Campaign object {campaign_name} in {HubSpot|Salesforce|...}
2. Landing page — Verify {url} returns 200, schema markup present, GA4 tag firing
3. Email — Enable automation {automation_id} in {Klaviyo|HubSpot|...} (sender domain authenticated)
4. Paid search — Activate {N} Google Ads campaigns ({budget} daily total)
5. Paid social — Activate {N} Meta + {M} LinkedIn campaigns ({budget} daily total)
6. Retail media — Activate {N} Amazon Sponsored Products campaigns
7. Organic social — Schedule {N} posts across {platforms} via {scheduler}
8. Influencer — Notify {N} contracted creators (briefs already approved per plan)
9. PR — Send launch announcement to {N} press contacts via {tool}
10. Internal kickoff — Slack message to {channel}, email to {distribution_list}
11. Tracking — Wire UTM parameters across every link (cross-check against plan)
12. Attribution — Confirm {attribution_model} active in GA4 + CRM
13. Monitoring — Activate day-1 watchdog on {KPIs} via /digital-marketing-pro:performance-check
14. Documentation — Write launch record to ~/.claude-marketing/{brand}/campaigns/{campaign_id}/launch-record.json
and publish a user-visible copy to ~/Documents/DigitalMarketingPro/{brand}/campaigns/
Estimated total wall-clock time: ~{N} minutes.
Channels that will start spending immediately: {list with daily totals}.
Type `yes` to proceed, `dry-run-only` to save the preview without launching,
or any other input to cancel.
```
### Step 3 — Execute in dependency order
Run the actions sequentially. **After every action, write a state checkpoint** to `~/.claude-marketing/{brand}/campaigns/{campaign_id}/launch-state.json` so an interruption can be resumed. (Reuses the same pattern as ContentForge's `checkpoint-manager.py` — see `/contentforge:resume` for the analogous flow.)
Key dependency rules:
- CRM Campaign object MUST be created **before** any paid-ads campaign — paid-ads platforms need to reference the CRM ID for attribution.
- Email automation MUST be enabled **before** paid-ads activate — otherwise leads captured by ads in the first minutes have no nurture.
- Landing-page verification MUST pass **before** paid-ads activate — spending traffic to a 404 is the most common day-1 failure.
- C2PA signing of AI assets MUST be confirmed **before** any organic-social or paid-social channel posts AI content for EU markets.
- Tracking + attribution MUST be confirmed **before** the internal kickoff — once internal comms go out, "we'll fix the tracking later" never happens.
Each platform action is dispatched via the relevant script:
```bash
# CRM Campaign object
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/crm-sync.py --brand "{brand}" \
--action create-campaign --plan ~/.claude-marketing/{brand}/campaigns/{campaign_id}/plan.json
# Landing page check
curl -sS -o /dev/null -w "%{http_code}" "{landing_url}"
# Email automation enable (idempotent — skips if already enabled)
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/execution-tracker.py --brand "{brand}" \
--action enable-automation --automation-id "{id}" --platform "{klaviyo|hubspot|...}"
# Paid-ads activation (delegates to launch-ad-campaign for the paid-only subset)
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/execution-tracker.py --brand "{brand}" \
--action launch-ads --plan ~/.claude-marketing/{brand}/campaigns/{campaign_id}/plan.json
# (this internally calls the launch-ad-campaign workflow for Google/Meta/LinkedIn/TikTok)
# Organic social scheduling
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/execution-tracker.py --brand "{brand}" \
--action schedule-posts --plan ~/.claude-marketing/{brand}/campaigns/{campaign_id}/plan.json
# Influencer notification
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/execution-tracker.py --brand "{brand}" \
--action notify-inflRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".