Unified status dashboard for every tracked campaign across connected platforms — produces a summary table with health indicators, live spend and performance metrics, a 7-day execution history, pending approvals with age, KPI variance classification (on track / at risk / behind), flagged issues, and next scheduled actions. Reports only; it changes nothing on any platform. Triggers on \"/digital-marketing-pro:campaign-status\", \"what campaigns are running right now\", \"any failed executions or s
git clone https://github.com/indranilbanerjee/digital-marketing-pro.git--- name: campaign-status description: "Unified status dashboard for every tracked campaign across connected platforms — produces a summary table with health indicators, live spend and performance metrics, a 7-day execution history, pending approvals with age, KPI variance classification (on track / at risk / behind), flagged issues, and next scheduled actions. Reports only; it changes nothing on any platform. Triggers on \"/digital-marketing-pro:campaign-status\", \"what campaigns are running right now\", \"any failed executions or stuck approvals\", \"status of the Q1-Launch campaign\", \"which campaigns are behind target\". Reads the brand's campaign registry, execution log, and approval queue via campaign-tracker.py, execution-tracker.py, and approval-manager.py, plus live metrics from connected platform MCPs." --- # /digital-marketing-pro:campaign-status ## Purpose Provide a unified view of all active campaigns across every connected platform — ads, email, social, blog — with their current status, live performance metrics, execution history, and any pending approvals or scheduled actions. Eliminates the need to check each platform individually and surfaces issues (paused campaigns, failed executions, stale content) before they become problems. ## Input Required The user must provide (or will be prompted for): - **Scope**: All active campaigns, a specific campaign by name or ID, or a specific platform (e.g., "Google Ads campaigns only", "email campaigns", "campaign named Q1-Launch") - **Detail level**: Summary (one-line status per campaign) or detailed (full metrics, execution history, and next actions per campaign) - **Time window** (optional): How far back to include execution history. Defaults to last 7 days - **Status filter** (optional): Filter by campaign status — active, paused, scheduled, completed, failed. Defaults to active + paused + scheduled - **Sort order** (optional): Sort campaigns by spend, performance, recency, or status. Defaults to platform grouping ## Process 1. **Load brand context**: Read `~/.claude-marketing/brands/_active-brand.json` for the active slug, then load `~/.claude-marketing/brands/{slug}/profile.json`. Apply brand voice, compliance rules for target markets (`skills/context-engine/compliance-rules.md`), and industry context. Also check for guidelines at `~/.claude-marketing/brands/{slug}/guidelines/_manifest.json` — if present, load restrictions. Check for agency SOPs at `~/.claude-marketing/sops/`. If no brand exists, ask: "Set up a brand first (/digital-marketing-pro:brand-setup)?" — or proceed with defaults. 2. **List all tracked campaigns**: Execute `python "${CLAUDE_PLUGIN_ROOT}/scripts/campaign-tracker.py" --brand {slug} --action list-campaigns` to get the campaign registry with names, platforms, statuses, creation dates, and assigned KPI targets. 3. **Pull execution history**: Execute `python "${CLAUDE_PLUGIN_ROOT}/scripts/execution-tracker.py" --brand {slug} --action get-history --limit {N}` to retrieve recent execution logs — what ran, when it ran, outcome (success/failure/skipped), error messages if any, and the user or automation that triggered it. 4. **Check pending approvals**: Execute `python "${CLAUDE_PLUGIN_ROOT}/scripts/approval-manager.py" --brand {slug} --action list-pending` to surface any campaigns, creatives, or content pieces awaiting review before they can go live. Include submission date and age in hours for each pending item. 5. **Pull live metrics from connected MCPs**: For each active campaign, query the relevant platform MCP (google-ads, meta-marketing, linkedin-marketing, tiktok-ads, mailchimp, etc.) for current performance: - Spend: total spend, daily spend, budget consumed - Performance: impressions, clicks, CTR, conversions, CPA, ROAS - Engagement: open rate, click-through rate, bounce rate, video views - Platform-specific: quality score, relevance score, deliverability rate 6. **Aggregate by platform and status**: Group campaigns by platform and status, calculate platform-level totals (total campaigns, total spend, total conversions, average CPA/ROAS), and flag any discrepancies between tracked campaigns and what the live platform reports. 7. **Calculate performance vs KPIs**: For each active campaign with defined targets, compute actual vs target for primary KPIs. Classify as: - **On track** (green): Meeting or exceeding targets - **At risk** (yellow): Within 15% of target with negative trend - **Behind** (red): Missing target by >15% 8. **Flag issues requiring attention**: Identify problems that need action: - Campaigns paused unexpectedly or by the platform (policy violation, billing issue) - Executions that failed with errors - Campaigns running past their planned end date - Stale campaigns with no activity in 7+ days - Campaigns exceeding budget pacing by >20% - Approval bottlenecks older than 48 hours 9. **Compile next scheduled actions**: List upcoming scheduled launches, budget changes, creative rotations, A/B test completions, or automated optimizations from the execution log with dates and dependencies. ## Output A structured campaign status dashboard containing: - **Campaign summary table**: Campaign name, platform, status (active/paused/scheduled/completed/failed), days running, total spend, key metric (conversions or leads), CPA or ROAS, and health indicator (green/yellow/red) - **Active campaigns by platform**: Grouped view with platform-level totals — number of campaigns, total spend, total conversions, average CPA, average ROAS, and platform health status - **Execution history** (last 7 days): Chronological log of actions taken — campaign launches, pauses, budget changes, creative swaps, bid adjustments, email sends — with timestamps, outcomes, and actor (manual or automated) - **Pending approvals**: List of items awaiting review with requester name, submission date, type (creative, campaign launch, budget change, content), age in hours, and direct reference to the item - **Performance vs KPIs**: For each active campaign, actual performance vs the KPI targets set at campaign creation — on track, at risk, or behind, with variance percentage and trend direction - **Flagged issues**: Priority-ordered list of problems requiring attention with severity (critical/warning/info), description, affected campaign, and recommended resolution - **Next scheduled actions**: Upcoming automated or planned actions with dates, descriptions, dependencies, and responsible party - **Quick actions**: Suggested immediate next steps based on current status — approve pending items, investigate failures, pause underperformers, scale winners, extend successful campaigns ## Agents Used - **execution-coordinator** — Execution history retrieval, approval queue management, scheduled action tracking, cross-platform status aggregation, and issue flagging - **analytics-analyst** — Live performance metrics interpretation, KPI comparison, campaign health assessment, and performance-based recommendations
1. **Gather Data:** Collect campaign IDs, platform names, and time periods from your marketing tools (e.g., Meta Ads Manager, Google Ads, TikTok Ads). Export performance reports if needed. 2. **Input Details:** Paste the prompt template into your AI tool, replacing [PLACEHOLDERS] with your campaign name, platforms, and time period (e.g., 'last 7 days'). 3. **Review Output:** Check the AI's summary for accuracy. Verify platform statuses and metrics against your tools (e.g., Meta Ads Manager). 4. **Take Action:** Use the recommendations to resolve issues (e.g., resubmit creatives, adjust budgets) or optimize performance (e.g., pause underperforming ads). 5. **Automate (Optional):** For recurring campaigns, save the prompt template in your AI tool and update placeholders weekly. Use tools like Zapier to auto-export data and feed it into the AI. **Tips:** - For multi-platform campaigns, ensure the AI has access to all platform dashboards or exported reports. - Include specific KPIs (e.g., 'CTR >2%') in the prompt to tailor recommendations. - If the AI misses a platform, manually add it to the prompt or re-run with updated data.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/indranilbanerjee/digital-marketing-pro/tree/main/skills/campaign-statusCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Review the status of [CAMPAIGN_NAME] across [PLATFORM_1], [PLATFORM_2], and [PLATFORM_3]. Summarize: 1) Current execution status (active/paused/pending) on each platform, 2) Performance metrics (CTR, impressions, spend) for the last [TIME_PERIOD], 3) Pending approvals or rejections with reasons, and 4) Recommendations to optimize or resolve issues. Include a consolidated status table for clarity.
Campaign: 'Summer Sale 2024' (ID: CAM-2024-07-15) **Platform Status Summary:** - Meta Ads: Active (Launched 7/15, 98% budget spent). CTR: 1.8% (down from 2.1% last week). Spend: $45,200 of $50,000 budget. No pending approvals. - Google Ads: Paused (Policy violation: 'Sale' claim flagged). Last approval attempt: 7/18 (rejected for 'unsupported claim'). Spend: $12,300 of $20,000 budget. - TikTok Ads: Active (Launched 7/16, 65% budget spent). CTR: 3.2% (meeting KPI). Spend: $32,800 of $50,000 budget. Pending creative review (submitted 7/20). **Performance Metrics (Last 7 Days):** | Metric | Meta Ads | Google Ads* | TikTok Ads | |-----------------|----------|-------------|------------| | Impressions | 450,000 | 120,000 | 890,000 | | CTR | 1.8% | N/A | 3.2% | | Spend | $45,200 | $12,300 | $32,800 | | Conversions | 8,100 | 0 | 28,480 | | *Paused due to policy issue **Recommendations:** 1. **Meta Ads:** Increase bid strategy to improve CTR. Consider pausing underperforming ad sets (CTR <1.5%). 2. **Google Ads:** Resubmit creative with revised 'limited time offer' wording to avoid policy flags. Expected resolution: 2-3 days. 3. **TikTok Ads:** Approve pending creative immediately to unlock remaining budget ($17,200). Monitor CTR closely; if it drops below 3%, pause and A/B test new creatives. **Action Items:** - [ ] Resubmit Google Ads creative with policy-compliant edits by EOD today. - [ ] Approve TikTok creative and allocate remaining budget to top-performing ad sets. - [ ] Schedule weekly performance review every Monday at 9 AM to catch issues early.
skills-collection
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan