ccc-marketing
Load ONE skill. Get the entire marketing domain. 46 skills in one.
46 production-ready marketing skills organized into 7 specialist pods with a context foundation and orchestration layer.
Quick Start
Claude Code
/read marketing-skill/marketing-ops/SKILL.md
The router will direct you to the right specialist skill.
Codex CLI
codex --full-auto "Read marketing-skill/marketing-ops/SKILL.md, then help me write a blog post about [topic]"
OpenClaw
Skills are auto-discovered from the repository. Ask your agent for marketing help — it routes via marketing-ops.
Architecture
marketing-skill/
├── marketing-context/ ← Foundation: brand voice, audience, goals
├── marketing-ops/ ← Router: dispatches to the right skill
│
├── Content Pod (8) ← Strategy → Production → Editing → Social
├── SEO Pod (5) ← Traditional + AI SEO + Schema + Architecture
├── CRO Pod (6) ← Pages, Forms, Signup, Onboarding, Popups, Paywall
├── Channels Pod (5) ← Email, Ads, Cold Email, Ad Creative, Social Mgmt
├── Growth Pod (4) ← A/B Testing, Referrals, Free Tools, Churn
├── Intelligence Pod (4) ← Competitors, Psychology, Analytics, Campaigns
└── Sales & GTM Pod (2) ← Pricing, Launch Strategy
First-Time Setup
Run marketing-context to create your marketing-context.md file. Every other skill reads this for brand voice, audience personas, and competitive landscape. Do this once — it makes everything better.
Pod Overview
| Pod |
Skills |
Python Tools |
Key Capabilities |
| Foundation |
2 |
2 |
Brand context capture, skill routing |
| Content |
8 |
5 |
Strategy → production → editing → humanization |
| SEO |
5 |
2 |
Technical SEO, AI SEO (AEO/GEO), schema, architecture |
| CRO |
6 |
0 |
Page, form, signup, onboarding, popup, paywall optimization |
| Channels |
5 |
2 |
Email sequences, paid ads, cold email, ad creative |
| Growth |
4 |
2 |
A/B testing, referral programs, free tools, churn prevention |
| Intelligence |
4 |
4 |
Competitor analysis, marketing psychology, analytics, campaigns |
| Sales & GTM |
2 |
1 |
Pricing strategy, launch planning |
| Standalone |
4 |
9 |
ASO, brand guidelines, PMM strategy, prompt engineering |
| New in v3 |
3 |
0 |
Influencer outreach, Product Hunt launch, SEO content production |
Python Tools (27 scripts)
All scripts are stdlib-only (zero pip installs), CLI-first with JSON output, and include embedded sample data for demo mode.
# Content scoring
python3 marketing-skill/content-production/scripts/content_scorer.py article.md
# AI writing detection
python3 marketing-skill/content-humanizer/scripts/humanizer_scorer.py draft.md
# Brand voice analysis
python3 marketing-skill/content-production/scripts/brand_voice_analyzer.py copy.txt
# Ad copy validation
python3 marketing-skill/ad-creative/scripts/ad_copy_validator.py ads.json
# Pricing scenario modeling
python3 marketing-skill/pricing-strategy/scripts/pricing_modeler.py
# Tracking plan generation
python3 marketing-skill/analytics-tracking/scripts/tracking_plan_generator.py
Unique Features
- AI SEO (AEO/GEO/LLMO) — Optimize for AI citation, not just ranking
- Content Humanizer — Detect and fix AI writing patterns with scoring
- Context Foundation — One brand context file feeds all 42 skills
- Orchestration Router — Smart routing by keyword + complexity scoring
- Zero Dependencies — All Python tools use stdlib only
1---2name: ccc-marketing3description: CCC domain — 46-skill marketing division for AI coding agents. 7 specialist pods covering content, SEO, CRO, channels, growth, intelligence, and sales — plus influencer outreach, Product Hunt launch, and SEO content production. Foundation context system + orchestration router. 27 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.4license: MIT5---67# ccc-marketing89> Load ONE skill. Get the entire marketing domain. 46 skills in one.101146 production-ready marketing skills organized into 7 specialist pods with a context foundation and orchestration layer.1213## Quick Start1415### Claude Code16```17/read marketing-skill/marketing-ops/SKILL.md18```19The router will direct you to the right specialist skill.2021### Codex CLI22```bash23codex --full-auto "Read marketing-skill/marketing-ops/SKILL.md, then help me write a blog post about [topic]"24```2526### OpenClaw27Skills are auto-discovered from the repository. Ask your agent for marketing help — it routes via `marketing-ops`.2829## Architecture3031```32marketing-skill/33├── marketing-context/ ← Foundation: brand voice, audience, goals34├── marketing-ops/ ← Router: dispatches to the right skill35│36├── Content Pod (8) ← Strategy → Production → Editing → Social37├── SEO Pod (5) ← Traditional + AI SEO + Schema + Architecture38├── CRO Pod (6) ← Pages, Forms, Signup, Onboarding, Popups, Paywall39├── Channels Pod (5) ← Email, Ads, Cold Email, Ad Creative, Social Mgmt40├── Growth Pod (4) ← A/B Testing, Referrals, Free Tools, Churn41├── Intelligence Pod (4) ← Competitors, Psychology, Analytics, Campaigns42└── Sales & GTM Pod (2) ← Pricing, Launch Strategy43```4445## First-Time Setup4647Run `marketing-context` to create your `marketing-context.md` file. Every other skill reads this for brand voice, audience personas, and competitive landscape. Do this once — it makes everything better.4849## Pod Overview5051| Pod | Skills | Python Tools | Key Capabilities |52|-----|--------|-------------|-----------------|53| **Foundation** | 2 | 2 | Brand context capture, skill routing |54| **Content** | 8 | 5 | Strategy → production → editing → humanization |55| **SEO** | 5 | 2 | Technical SEO, AI SEO (AEO/GEO), schema, architecture |56| **CRO** | 6 | 0 | Page, form, signup, onboarding, popup, paywall optimization |57| **Channels** | 5 | 2 | Email sequences, paid ads, cold email, ad creative |58| **Growth** | 4 | 2 | A/B testing, referral programs, free tools, churn prevention |59| **Intelligence** | 4 | 4 | Competitor analysis, marketing psychology, analytics, campaigns |60| **Sales & GTM** | 2 | 1 | Pricing strategy, launch planning |61| **Standalone** | 4 | 9 | ASO, brand guidelines, PMM strategy, prompt engineering |62| **New in v3** | 3 | 0 | Influencer outreach, Product Hunt launch, SEO content production |6364## Python Tools (27 scripts)6566All scripts are stdlib-only (zero pip installs), CLI-first with JSON output, and include embedded sample data for demo mode.6768```bash69# Content scoring70python3 marketing-skill/content-production/scripts/content_scorer.py article.md7172# AI writing detection73python3 marketing-skill/content-humanizer/scripts/humanizer_scorer.py draft.md7475# Brand voice analysis76python3 marketing-skill/content-production/scripts/brand_voice_analyzer.py copy.txt7778# Ad copy validation79python3 marketing-skill/ad-creative/scripts/ad_copy_validator.py ads.json8081# Pricing scenario modeling82python3 marketing-skill/pricing-strategy/scripts/pricing_modeler.py8384# Tracking plan generation85python3 marketing-skill/analytics-tracking/scripts/tracking_plan_generator.py86```8788## Unique Features8990- **AI SEO (AEO/GEO/LLMO)** — Optimize for AI citation, not just ranking91- **Content Humanizer** — Detect and fix AI writing patterns with scoring92- **Context Foundation** — One brand context file feeds all 42 skills93- **Orchestration Router** — Smart routing by keyword + complexity scoring94- **Zero Dependencies** — All Python tools use stdlib only