cmo-advisor
Marketing leadership advisor for CMOs on brand strategy, demand generation, marketing operations, growth marketing, and revenue marketing alignment. Use when building a marketing strategy, planning demand-gen campaigns, designing lead scoring models, allocating marketing budget, or aligning marketing with revenue targets.
What this skill does
# CMO Advisor
The agent acts as a fractional CMO, providing strategic marketing guidance grounded in B2B SaaS benchmarks and proven frameworks.
## Workflow
1. **Gather context** -- Identify company stage, ICP, current ARR, and marketing team size. Validate that at least stage and ICP are defined before proceeding.
2. **Audit current performance** -- Collect funnel metrics (visitors, MQLs, SQLs, pipeline, revenue). Flag any stage where conversion is below the benchmarks in the Channel Performance table.
3. **Define positioning** -- Draft a positioning statement using the template below. Confirm differentiation against the top two competitors.
4. **Build channel plan** -- Select channels from the Channel Performance Framework, allocate budget using the B2B SaaS Budget Allocation split, and set per-channel CAC targets.
5. **Design lead scoring** -- Configure the Lead Scoring Model and set the MQL threshold. Validate that the threshold produces a manageable volume for the sales team.
6. **Create campaign plan** -- Fill in the Campaign Planning Template for the first priority campaign. Include success metrics and required assets.
7. **Establish measurement cadence** -- Set daily, weekly, monthly, and quarterly review rhythms using the Reporting Cadence below.
## Positioning Statement Template
```
For [target customer]
Who [statement of need or opportunity]
[Product name] is a [product category]
That [statement of key benefit]
Unlike [primary competitive alternative]
Our product [statement of primary differentiation]
```
## Marketing Budget Allocation (B2B SaaS Typical)
| Function | % of Budget |
|----------|-------------|
| Demand Generation | 35-45% |
| Content & Brand | 15-20% |
| Marketing Ops & Tech | 15-20% |
| Events & Field | 10-15% |
| People & Overhead | 15-20% |
## Channel Performance Framework
| Channel | CAC | Volume | Quality | Scalability |
|---------|-----|--------|---------|-------------|
| Organic Search | $ | High | Medium | Medium |
| Paid Search | $$ | Medium | High | High |
| Social Organic | $ | Medium | Low | Medium |
| Social Paid | $$ | High | Medium | High |
| Content | $ | High | High | Medium |
| Events | $$$ | Low | High | Low |
| Partnerships | $$ | Medium | High | Medium |
## Lead Scoring Model
| Action | Points |
|--------|--------|
| Website visit | 1 |
| Content download | 5 |
| Email open | 1 |
| Email click | 3 |
| Webinar registration | 10 |
| Webinar attendance | 15 |
| Demo request | 25 |
| Pricing page visit | 10 |
**MQL Threshold**: 50 points
## Lead Stages
Visitor > Known > Engaged > MQL > SAL > SQL > Opportunity > Customer
## Campaign Planning Template
```
CAMPAIGN: [Name]
OBJECTIVE: [Specific goal]
AUDIENCE: [Target segment]
CHANNELS: [Distribution channels]
TIMELINE: [Start - End dates]
BUDGET: [Total investment]
KEY MESSAGES:
- Primary: [Main message]
- Secondary: [Supporting points]
SUCCESS METRICS:
- Leads: [Target]
- Pipeline: [Target]
- Cost per lead: [Target]
ASSETS REQUIRED:
- [ ] Landing page
- [ ] Email sequence
- [ ] Ad creative
- [ ] Content pieces
```
## Messaging Framework
| Audience | Pain Point | Solution | Proof Point |
|----------|------------|----------|-------------|
| Buyer 1 | [Problem] | [How we help] | [Evidence] |
| Buyer 2 | [Problem] | [How we help] | [Evidence] |
| User 1 | [Problem] | [How we help] | [Evidence] |
## Reporting Cadence
- **Daily**: Campaign performance (spend, clicks, conversions)
- **Weekly**: Pipeline and stage-over-stage conversion
- **Monthly**: Full funnel analysis, MQL-to-SQL conversion, CAC trend
- **Quarterly**: Channel ROI review, budget reallocation decisions
## Multi-Touch Attribution Model
| Touch | Weight |
|-------|--------|
| First Touch | 30% |
| Lead Creation | 20% |
| Opportunity Creation | 30% |
| Closed Won | 20% |
## Content Types by Funnel Stage
| Stage | Formats |
|-------|---------|
| Awareness | Blog posts, social content, podcasts, industry reports |
| Consideration | Ebooks/guides, webinars, case studies, comparison guides |
| Decision | Product demos, ROI calculators, testimonials, implementation guides |
## Example: Series-B SaaS Demand-Gen Plan
A Series-B SaaS company ($8M ARR, 12-person marketing team) targeting mid-market DevOps buyers:
```
Budget: $2.4M annual ($200K/mo)
Allocation:
Demand Gen (40%): $960K -- Paid search ($300K), LinkedIn Ads ($250K),
Content syndication ($200K), Events ($210K)
Content & Brand (18%): $432K
Ops & Tech (17%): $408K
People (25%): $600K
Targets:
MQLs/month: 400 | SQL conversion: 25% | Pipeline/quarter: $6M
Blended CAC: $18K | CAC Payback: 14 months
```
## Marketing Org by Stage
| Stage | Roles |
|-------|-------|
| Series A (5-10) | Head of Marketing, Content/Brand, Demand Gen, Marketing Ops |
| Series B (10-20) | CMO, Director Brand, Director Demand Gen, Manager Content, Manager Ops, ICs |
| Series C+ (20+) | CMO, VP Brand, VP Demand Gen, VP Revenue Marketing, VP Marketing Ops, Specialized teams |
## Scripts
```bash
# Campaign performance analyzer
python scripts/campaign_analyzer.py --campaign Q1-ABM
# Lead scoring calculator
python scripts/lead_scoring.py --leads leads.csv
# Content calendar generator
python scripts/content_calendar.py --pillars topics.yaml
# Attribution reporter
python scripts/attribution.py --period monthly
```
## References
- `references/brand_guidelines.md` -- Brand standards and usage
- `references/demand_gen_playbook.md` -- Campaign execution guide
- `references/content_strategy.md` -- Content planning framework
- `references/martech_stack.md` -- Technology recommendations
---
## Tool Reference
### marketing_roi_calculator.py
Calculates per-channel ROI, blended CAC, Marketing Efficiency Ratio (MER), pipeline contribution, and multi-touch attribution. Produces board-ready marketing performance reports.
```bash
# Run with demo data (6-channel mix)
python scripts/marketing_roi_calculator.py
# From JSON with channel data
python scripts/marketing_roi_calculator.py --input marketing_data.json
# JSON output
python scripts/marketing_roi_calculator.py --json
```
### brand_health_tracker.py
Monitors brand health across 5 dimensions: awareness, perception, differentiation, engagement, and loyalty. Tracks competitive share of voice.
```bash
# Run with demo data
python scripts/brand_health_tracker.py
# From JSON with brand metrics
python scripts/brand_health_tracker.py --input brand_data.json
# JSON output
python scripts/brand_health_tracker.py --json
```
### channel_mix_optimizer.py
Optimizes marketing budget allocation across channels based on ROI, efficiency frontiers, and diminishing returns. Projects impact of reallocation.
```bash
# Run with demo data (ROI optimization)
python scripts/channel_mix_optimizer.py
# Optimize for pipeline
python scripts/channel_mix_optimizer.py --goal pipeline
# Set total budget
python scripts/channel_mix_optimizer.py --budget 800000
# From JSON with channel performance
python scripts/channel_mix_optimizer.py --input channels.json
# JSON output
python scripts/channel_mix_optimizer.py --json
```
---
## Troubleshooting
| Problem | Likely Cause | Fix |
|---------|-------------|-----|
| Blended CAC increasing quarter over quarter | Channel saturation or scaling into less efficient channels | Run channel_mix_optimizer.py; cut lowest-ROI channels; increase investment in highest-ROI |
| Marketing sourced pipeline below 40% of total | Over-reliance on outbound/sales-sourced; marketing underinvesting in demand gen | Shift budget: target 40-60% marketing-sourced pipeline; invest in content + paid channels |
| Brand awareness below 30% in target market | Insufficient top-of-funnel investment; brand treated as afterthought | Allocate 15-20% of budget to brand; measure aided awareness quarterly |
| MQL-to-SQL conversion below 20% | Lead scoring threshold too low or ICP mismatch | Recalibrate MQL threshold; audit scoring model; tighten ICP definitionRelated 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".