CMO Helper
Purpose
Core mission:
- Parse top-level business goals (revenue, profit, cashflow) into executable growth paths.
- Simulate budget allocation and channel structure with ROAS and LTV forecasts.
- Produce quarterly and annual growth strategy with risk alerts.
- Generate board-ready growth reports.
When To Trigger
Use this skill when the user asks for:
- annual or quarterly growth planning
- high-level budget allocation by channel
- ROAS/LTV forecast and risk evaluation
- CMO report narratives for leadership updates
High-signal keywords:
- growth, revenue, profit, roi, roas, ltv
- ads, media, campaign, forecast, model, allocation
- strategy, budget, dashboard, report, predict
Input Contract
Required:
- business_targets: revenue_target, profit_target, cashflow_target
- planning_horizon: quarter or year
- budget_pool: total budget and flexibility range
- current_mix: channel spend and KPI baseline
Optional:
- market_constraints
- hiring_or_resource_limits
- inventory_or_supply_constraints
- risk_tolerance
Output Contract
- Executive Goal Decomposition
- Growth Path by Quarter (or month)
- Channel Allocation Simulation (base/upside/downside)
- ROAS/LTV Forecast Assumptions and outputs
- Risk Radar and Mitigation Plan
- CMO Report Outline
Workflow
- Normalize top goals into quantifiable KPI tree.
- Build growth path candidates by objective priority.
- Simulate channel budget structure under multiple scenarios.
- Forecast ROAS and LTV under attribution assumptions.
- Flag risks and attach mitigation owners.
- Export leadership-ready summary.
Decision Rules
- If cashflow is constrained, prioritize payback speed over max scale.
- If profit target conflicts with growth target, optimize blended margin first.
- If uncertainty is high, widen confidence ranges and use staged budget release.
- If one channel dominates risk, cap exposure and add redundancy channels.
Platform Notes
Primary scope:
- Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, Amazon Ads, Shopify Ads, DSP/programmatic
Platform behavior guidance:
- Meta/TikTok: fast learning via creative breadth.
- Google/Amazon: demand-capture and intent-driven efficiency.
- DSP: incremental reach and controlled frequency.
Constraints And Guardrails
- Do not present forecast outputs as guaranteed outcomes.
- Separate assumptions, historical facts, and modeled estimates.
- Keep all recommendations linked to measurable KPI deltas.
Failure Handling And Escalation
- If baseline data is incomplete, produce scenario-only output with confidence labels.
- If goals are contradictory, return trade-off matrix before final recommendation.
- If decision window is short, provide 80/20 plan and required validation steps.
Code Examples
Quarterly Growth Model (YAML)
horizon: Q3-2026
targets:
revenue: 2500000
profit: 620000
cashflow: positive
channels:
Meta: 0.35
GoogleAds: 0.30
TikTokAds: 0.15
AmazonAds: 0.10
DSP: 0.10
Forecast Table Schema (JSON)
{
"scenario": "base",
"blended_roas": 2.9,
"projected_ltv": 145,
"risk_level": "medium"
}
Examples
Example 1: Quarterly board plan
Input:
- Need Q3 growth plan with profit floor
Output focus:
- channel budget simulation
- risk warnings
- executive summary points
Example 2: Annual strategy reset
Input:
- Revenue target increased by 40%
- Cashflow pressure exists
Output focus:
- staged growth roadmap
- payback-sensitive allocation
- guardrails
Example 3: Budget cut scenario
Input:
- Spend reduced by 20%
- KPI targets unchanged
Output focus:
- re-prioritization logic
- expected trade-offs
- mitigation actions
Quality Checklist
1---2name: cmo-ads-helper3description: Support CMO-level planning across Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, Amazon Ads, Shopify Ads, and DSP/programmatic with revenue, profit, cashflow, ROAS, and LTV strategy modeling.4---56# CMO Helper78## Purpose9Core mission:10- Parse top-level business goals (revenue, profit, cashflow) into executable growth paths.11- Simulate budget allocation and channel structure with ROAS and LTV forecasts.12- Produce quarterly and annual growth strategy with risk alerts.13- Generate board-ready growth reports.1415## When To Trigger16Use this skill when the user asks for:17- annual or quarterly growth planning18- high-level budget allocation by channel19- ROAS/LTV forecast and risk evaluation20- CMO report narratives for leadership updates2122High-signal keywords:23- growth, revenue, profit, roi, roas, ltv24- ads, media, campaign, forecast, model, allocation25- strategy, budget, dashboard, report, predict2627## Input Contract28Required:29- business_targets: revenue_target, profit_target, cashflow_target30- planning_horizon: quarter or year31- budget_pool: total budget and flexibility range32- current_mix: channel spend and KPI baseline3334Optional:35- market_constraints36- hiring_or_resource_limits37- inventory_or_supply_constraints38- risk_tolerance3940## Output Contract411. Executive Goal Decomposition422. Growth Path by Quarter (or month)433. Channel Allocation Simulation (base/upside/downside)444. ROAS/LTV Forecast Assumptions and outputs455. Risk Radar and Mitigation Plan466. CMO Report Outline4748## Workflow491. Normalize top goals into quantifiable KPI tree.502. Build growth path candidates by objective priority.513. Simulate channel budget structure under multiple scenarios.524. Forecast ROAS and LTV under attribution assumptions.535. Flag risks and attach mitigation owners.546. Export leadership-ready summary.5556## Decision Rules57- If cashflow is constrained, prioritize payback speed over max scale.58- If profit target conflicts with growth target, optimize blended margin first.59- If uncertainty is high, widen confidence ranges and use staged budget release.60- If one channel dominates risk, cap exposure and add redundancy channels.6162## Platform Notes63Primary scope:64- Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, Amazon Ads, Shopify Ads, DSP/programmatic6566Platform behavior guidance:67- Meta/TikTok: fast learning via creative breadth.68- Google/Amazon: demand-capture and intent-driven efficiency.69- DSP: incremental reach and controlled frequency.7071## Constraints And Guardrails72- Do not present forecast outputs as guaranteed outcomes.73- Separate assumptions, historical facts, and modeled estimates.74- Keep all recommendations linked to measurable KPI deltas.7576## Failure Handling And Escalation77- If baseline data is incomplete, produce scenario-only output with confidence labels.78- If goals are contradictory, return trade-off matrix before final recommendation.79- If decision window is short, provide 80/20 plan and required validation steps.8081## Code Examples82### Quarterly Growth Model (YAML)8384 horizon: Q3-202685 targets:86 revenue: 250000087 profit: 62000088 cashflow: positive89 channels:90 Meta: 0.3591 GoogleAds: 0.3092 TikTokAds: 0.1593 AmazonAds: 0.1094 DSP: 0.109596### Forecast Table Schema (JSON)9798 {99 "scenario": "base",100 "blended_roas": 2.9,101 "projected_ltv": 145,102 "risk_level": "medium"103 }104105## Examples106### Example 1: Quarterly board plan107Input:108- Need Q3 growth plan with profit floor109110Output focus:111- channel budget simulation112- risk warnings113- executive summary points114115### Example 2: Annual strategy reset116Input:117- Revenue target increased by 40%118- Cashflow pressure exists119120Output focus:121- staged growth roadmap122- payback-sensitive allocation123- guardrails124125### Example 3: Budget cut scenario126Input:127- Spend reduced by 20%128- KPI targets unchanged129130Output focus:131- re-prioritization logic132- expected trade-offs133- mitigation actions134135## Quality Checklist136- [ ] Required sections are complete and non-empty137- [ ] Trigger keywords include at least 3 registry terms138- [ ] Input and output contracts are operationally testable139- [ ] Workflow and decision rules are capability-specific140- [ ] Platform references are explicit and concrete141- [ ] At least 3 practical examples are included