Context Engine — Shared Marketing Intelligence
When to Use This Skill
- User is setting up a new brand or project for marketing
- User switches between brands/clients (agency use case)
- Any other marketing skill needs brand context, industry data, compliance rules, or platform specs
- User asks about industry benchmarks, platform requirements, or regulatory compliance
Required Context
This skill loads and manages:
- Brand Profile — identity, voice, audiences, competitors, goals (from
~/.claude-marketing/brands/)
- Industry Profiles — benchmarks, KPIs, channel effectiveness per industry (see
industry-profiles.md)
- Compliance Rules — geographic privacy laws + industry regulations (see
compliance-rules.md)
- Platform Specs — character limits, image sizes, algorithm signals per platform (see
platform-specs.md)
- Scoring Rubrics — standardized evaluation criteria for all content types (see
scoring-rubrics.md)
Brand Profile Management
Loading a Brand
- Check
~/.claude-marketing/brands/_active-brand.json for the currently active brand
- If active brand exists, load
~/.claude-marketing/brands/{slug}/profile.json
- If no active brand, prompt: "No active brand configured. Run /digital-marketing-pro:brand-setup to create one, or tell me about your brand and I'll help set it up."
Brand Profile Schema
{
"brand_name": "",
"brand_slug": "",
"created_at": "",
"updated_at": "",
"schema_version": "1.0.0",
"identity": {
"tagline": "",
"mission": "",
"vision": "",
"values": [],
"unique_selling_proposition": "",
"positioning_statement": "",
"elevator_pitch": ""
},
"business_model": {
"type": "",
"revenue_model": "",
"price_range": "",
"sales_cycle_length": "",
"average_deal_size": "",
"customer_lifetime_value": ""
},
"industry": {
"primary": "",
"secondary": [],
"regulated": false,
"regulation_codes": [],
"compliance_notes": ""
},
"target_markets": [],
"brand_voice": {
"formality": 5,
"energy": 5,
"humor": 3,
"authority": 5,
"personality_traits": [],
"tone_keywords": [],
"avoid_words": [],
"prefer_words": [],
"this_not_that": [],
"sample_content": []
},
"channels": {
"active": [],
"primary": "",
"handles": {}
},
"competitors": [],
"goals": {
"primary_objective": "",
"kpis": [],
"budget_range": "",
"team_size": ""
}
}
Switching Brands
When user says "switch to [brand name]":
- Run:
python "${CLAUDE_PLUGIN_ROOT}/scripts/setup.py" --switch-brand SLUG
- The script handles fuzzy matching, validation, and updates
_active-brand.json
- Confirm: "Switched to [brand_name]. All marketing outputs will now use this brand's voice, compliance rules, and context."
Or use: /digital-marketing-pro:switch-brand
How Other Modules Use This Skill
Every module should:
- Check if an active brand exists before producing marketing outputs
- Load relevant industry profile for benchmarks and channel recommendations
- Auto-apply compliance rules based on brand's
target_markets and industry.regulation_codes
- Reference platform specs when creating platform-specific content
- Use scoring rubrics when evaluating or grading content quality
- Use adaptive scoring — run
adaptive-scorer.py to get brand-specific weights before content scoring
- Save campaign data — use
campaign-tracker.py to persist plans, performance, and insights
- Check past campaigns — before making recommendations, check if similar campaigns exist in brand history
Business Model Types
The following types trigger different funnel models, KPI frameworks, and channel strategies:
B2B_SaaS — MRR/ARR focused, product-led or sales-led growth
B2C_eCommerce — ROAS focused, product catalog marketing
B2C_DTC — Direct-to-consumer brand building + performance
B2B_Services — Thought leadership, long sales cycles
Local_Business — Google Business Profile, local SEO, reviews
Agency — Multi-client management, white-label outputs
Creator — Personal brand, audience building, monetization
Enterprise — ABM, buying committees, complex sales
Non_Profit — Donor acquisition, awareness, advocacy
Marketplace — Two-sided acquisition, liquidity, trust
Brand Voice Scoring
The brand voice scorer (brand-voice-scorer.py) automatically normalizes profile data:
- Reads
brand_voice.formality (1-10 int scale) → converts to 0.0-1.0 float internally
- Maps
brand_voice.prefer_words → preferred_words, brand_voice.avoid_words → avoided_words
- Supports both the full profile schema (from brand-setup) and legacy direct schemas
Data Persistence
Campaign data, performance snapshots, and marketing insights persist across sessions:
~/.claude-marketing/brands/{slug}/
├── campaigns/ # Campaign plans and post-mortems
│ ├── _index.json # Campaign index for quick lookup
│ └── {id}.json # Individual campaign data
├── performance/ # Performance snapshots over time
│ └── {campaign}-{date}.json
├── insights.json # Marketing learnings (last 200)
├── content-library/ # Saved content pieces
└── voice-samples/ # Brand voice reference content
Use campaign-tracker.py for all persistence operations.
MCP Integrations
When MCP servers are configured (in .mcp.json), modules can pull real data:
- Google Analytics → actual traffic/conversion data for performance reports
- Google Search Console → real ranking data for SEO audits
- Google Ads / Meta → live campaign performance for paid advertising
- HubSpot → CRM data for funnel analysis
- Mailchimp → email campaign metrics
- Google Sheets → export reports and calendars
All MCP servers connect to the USER'S OWN accounts via their API keys.
Reference Files
- industry-profiles.md — 20+ industry profiles with benchmarks, channels, compliance, content types
- compliance-rules.md — Geographic privacy laws (16 jurisdictions) + industry regulations (10+ sectors)
- platform-specs.md — Social media, email, and ad platform specifications
- scoring-rubrics.md — Content quality, ad creative, email, and landing page scoring criteria
- intelligence-layer.md — How the adaptive intelligence system works (scoring, learning, persistence)
Source: hashgraph-online/awesome-codex-plugins → plugins/indranilbanerjee/digital-marketing-pro/skills/context-engine/SKILL.md
1---2name: context-engine3description: Load brand context for marketing tasks. Use when: setting up brands, switching context, or needing industry benchmarks.4---567# Context Engine — Shared Marketing Intelligence89## When to Use This Skill1011- User is setting up a new brand or project for marketing12- User switches between brands/clients (agency use case)13- Any other marketing skill needs brand context, industry data, compliance rules, or platform specs14- User asks about industry benchmarks, platform requirements, or regulatory compliance1516## Required Context1718This skill loads and manages:191. **Brand Profile** — identity, voice, audiences, competitors, goals (from `~/.claude-marketing/brands/`)202. **Industry Profiles** — benchmarks, KPIs, channel effectiveness per industry (see `industry-profiles.md`)213. **Compliance Rules** — geographic privacy laws + industry regulations (see `compliance-rules.md`)224. **Platform Specs** — character limits, image sizes, algorithm signals per platform (see `platform-specs.md`)235. **Scoring Rubrics** — standardized evaluation criteria for all content types (see `scoring-rubrics.md`)2425## Brand Profile Management2627### Loading a Brand28291. Check `~/.claude-marketing/brands/_active-brand.json` for the currently active brand302. If active brand exists, load `~/.claude-marketing/brands/{slug}/profile.json`313. If no active brand, prompt: "No active brand configured. Run /digital-marketing-pro:brand-setup to create one, or tell me about your brand and I'll help set it up."3233### Brand Profile Schema3435```json36{37 "brand_name": "",38 "brand_slug": "",39 "created_at": "",40 "updated_at": "",41 "schema_version": "1.0.0",42 "identity": {43 "tagline": "",44 "mission": "",45 "vision": "",46 "values": [],47 "unique_selling_proposition": "",48 "positioning_statement": "",49 "elevator_pitch": ""50 },51 "business_model": {52 "type": "",53 "revenue_model": "",54 "price_range": "",55 "sales_cycle_length": "",56 "average_deal_size": "",57 "customer_lifetime_value": ""58 },59 "industry": {60 "primary": "",61 "secondary": [],62 "regulated": false,63 "regulation_codes": [],64 "compliance_notes": ""65 },66 "target_markets": [],67 "brand_voice": {68 "formality": 5,69 "energy": 5,70 "humor": 3,71 "authority": 5,72 "personality_traits": [],73 "tone_keywords": [],74 "avoid_words": [],75 "prefer_words": [],76 "this_not_that": [],77 "sample_content": []78 },79 "channels": {80 "active": [],81 "primary": "",82 "handles": {}83 },84 "competitors": [],85 "goals": {86 "primary_objective": "",87 "kpis": [],88 "budget_range": "",89 "team_size": ""90 }91}92```9394### Switching Brands9596When user says "switch to [brand name]":971. Run: `python "${CLAUDE_PLUGIN_ROOT}/scripts/setup.py" --switch-brand SLUG`982. The script handles fuzzy matching, validation, and updates `_active-brand.json`993. Confirm: "Switched to [brand_name]. All marketing outputs will now use this brand's voice, compliance rules, and context."100101Or use: `/digital-marketing-pro:switch-brand`102103## How Other Modules Use This Skill104105Every module should:1061. Check if an active brand exists before producing marketing outputs1072. Load relevant industry profile for benchmarks and channel recommendations1083. Auto-apply compliance rules based on brand's `target_markets` and `industry.regulation_codes`1094. Reference platform specs when creating platform-specific content1105. Use scoring rubrics when evaluating or grading content quality1116. Use **adaptive scoring** — run `adaptive-scorer.py` to get brand-specific weights before content scoring1127. **Save campaign data** — use `campaign-tracker.py` to persist plans, performance, and insights1138. **Check past campaigns** — before making recommendations, check if similar campaigns exist in brand history114115## Business Model Types116117The following types trigger different funnel models, KPI frameworks, and channel strategies:118119- `B2B_SaaS` — MRR/ARR focused, product-led or sales-led growth120- `B2C_eCommerce` — ROAS focused, product catalog marketing121- `B2C_DTC` — Direct-to-consumer brand building + performance122- `B2B_Services` — Thought leadership, long sales cycles123- `Local_Business` — Google Business Profile, local SEO, reviews124- `Agency` — Multi-client management, white-label outputs125- `Creator` — Personal brand, audience building, monetization126- `Enterprise` — ABM, buying committees, complex sales127- `Non_Profit` — Donor acquisition, awareness, advocacy128- `Marketplace` — Two-sided acquisition, liquidity, trust129130## Brand Voice Scoring131132The brand voice scorer (`brand-voice-scorer.py`) automatically normalizes profile data:133- Reads `brand_voice.formality` (1-10 int scale) → converts to 0.0-1.0 float internally134- Maps `brand_voice.prefer_words` → `preferred_words`, `brand_voice.avoid_words` → `avoided_words`135- Supports both the full profile schema (from brand-setup) and legacy direct schemas136137## Data Persistence138139Campaign data, performance snapshots, and marketing insights persist across sessions:140```141~/.claude-marketing/brands/{slug}/142├── campaigns/ # Campaign plans and post-mortems143│ ├── _index.json # Campaign index for quick lookup144│ └── {id}.json # Individual campaign data145├── performance/ # Performance snapshots over time146│ └── {campaign}-{date}.json147├── insights.json # Marketing learnings (last 200)148├── content-library/ # Saved content pieces149└── voice-samples/ # Brand voice reference content150```151152Use `campaign-tracker.py` for all persistence operations.153154## MCP Integrations155156When MCP servers are configured (in `.mcp.json`), modules can pull real data:157- **Google Analytics** → actual traffic/conversion data for performance reports158- **Google Search Console** → real ranking data for SEO audits159- **Google Ads / Meta** → live campaign performance for paid advertising160- **HubSpot** → CRM data for funnel analysis161- **Mailchimp** → email campaign metrics162- **Google Sheets** → export reports and calendars163164All MCP servers connect to the USER'S OWN accounts via their API keys.165166## Reference Files167168- **industry-profiles.md** — 20+ industry profiles with benchmarks, channels, compliance, content types169- **compliance-rules.md** — Geographic privacy laws (16 jurisdictions) + industry regulations (10+ sectors)170- **platform-specs.md** — Social media, email, and ad platform specifications171- **scoring-rubrics.md** — Content quality, ad creative, email, and landing page scoring criteria172- **intelligence-layer.md** — How the adaptive intelligence system works (scoring, learning, persistence)173174---175176**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/indranilbanerjee/digital-marketing-pro/skills/context-engine/SKILL.md`