Marketing Context Skill
This is the foundational context-skill for the marketing domain plugin. It creates and maintains the project-specific context document that all other skills in this plugin read before acting.
When This Activates
- Auto-triggered by
project-start when the needs-marketing trait is detected and this plugin is installed
- Manually invocable via
/marketing:product-marketing-context to refresh the context doc
What It Produces
Output file: docs/marketing-context.md
Context Doc Frontmatter
---
domain: marketing
trait: needs-marketing
last_refreshed: YYYY-MM-DD
refresh_cadence: quarterly
generated_by: product-marketing-context
---
CRITICAL: Use last_refreshed, not last_generated — session-start parses this exact key.
Brite Brand Context
Use the following as source material when generating docs/marketing-context.md. This is the authoritative brand knowledge for all marketing skill outputs.
Company Overview
The Brite Company is the parent entity operating four interconnected brands in the lighting and entertainment industry:
- Brite Nites — Holiday and seasonal lighting installation services for high-end residential clients. 30 years of field intelligence. The operational backbone and original brand.
- Brite Supply — Products and marketplace for professional holiday lighting installers. Every product exists because a Brite Nites crew discovered a problem on a jobsite.
- Brite Base — Field Service Management (FSM) SaaS platform for holiday lighting companies. Dogfooded by Brite Nites and Brite Labs internally.
- Brite Labs — Custom creative productions and large-scale commercial lighting installations (venues, municipalities, entertainment properties). High-value projects like Gaylord Hotel installations that elevate the entire brand.
The Flywheel
The entities feed each other in a compounding loop:
- Brite Nites → Brite Supply: Field intelligence becomes products
- Brite Supply → Brite Nites: Brite Base software runs operations; better software → more efficient ops → more intelligence
- Brite Nites → Brite Labs: Residential reputation opens doors to commercial work
- Brite Labs → Brite Supply: Commercial projects surface needs for specialized hardware
- Brite Supply → Brite Labs: Brite Base manages large-scale productions too
ICP by Entity
| Entity |
Primary Audience |
Qualifying Criteria |
| Brite Nites |
High-end residential homeowners |
Home value $2M+, budget $3K+, property suitable for custom lighting |
| Brite Supply |
Professional holiday lighting installers |
Active business, 10+ jobs/season, not DIY hobbyists |
| Brite Base |
Holiday lighting companies needing FSM |
5+ employees, managing scheduling/estimates/crews |
| Brite Labs |
Commercial venues, municipalities, entertainment properties |
Project budget $50K+, need experiential or large-scale lighting |
Value Propositions & Messaging Pillars
Core positioning: The Brite Company occupies a unique multi-category position — few competitors span installation services, product marketplace, SaaS platform, and creative production simultaneously.
Messaging pillars by entity:
Brite Nites:
- Premium custom design, not catalog installations
- Full-scope project management (design through removal)
- 30 years of field expertise backing every installation
- Win pattern: clients who value craftsmanship over commodity pricing
Brite Supply:
- Products born from real jobsite problems, not theoretical R&D
- Built by installers, for installers
- Integrated with Brite Base for seamless operations
Brite Base:
- The only FSM software dogfooded by a 30-year lighting operation
- Scheduling, estimates, crew management purpose-built for the industry
- Better software → more efficient operations (the compounding loop)
Brite Labs:
- Turn slow months into high-revenue events with immersive experiences
- Park-scale and venue-scale installations that drive attendance and social media buzz
- Full-scope management so client teams focus on guest experience
Voice & Tone Guidelines
The brand voice is grounded in five core values:
| Value |
Voice Expression |
Do |
Don't |
| Excellence |
Premium, polished, specific |
Use concrete proof points (portfolio examples, credentials) |
Use vague superlatives ("industry-leading", "best-in-class") |
| Transformation |
Outcome-focused |
Focus on customer outcomes and ROI |
Describe internal processes |
| Trusted Care |
Reliable, responsive, client-first |
Emphasize reliability and responsiveness |
Sound transactional or impersonal |
| Expression |
Creative design partner |
Position as collaborative creative partner |
Sound like a commodity vendor |
| Personal Touch |
Warm, individualized |
Be conversational and specific to the client |
Sound like mass-market boilerplate |
Language rules:
- Say "holiday lighting" or "seasonal displays", not "Christmas lights" (inclusivity + year-round positioning)
- Say "installations" or "displays", not "decorations" (professional, engineered)
- Frame pricing as "cost-effectiveness" and "ROI", not "affordability" (value, not discount)
- Avoid superlatives — use specific proof points instead
Competitive Positioning
The competitive landscape is broader than "holiday lighting" — Brite competes across multiple categories simultaneously:
- Direct (installations): Local/regional lighting contractors, franchise operations
- Direct (supply): Holiday lighting product distributors, wholesale suppliers
- Direct (SaaS): General FSM platforms (ServiceTitan, Jobber) that lack industry-specific features
- Win pattern: Multi-category integration. Competitors occupy one category; Brite's flywheel spans all four, creating compounding advantages competitors can't replicate.
- Key differentiator: 30 years of field intelligence feeding product development and software — no pure-play SaaS or marketplace competitor has this operational foundation.
Channel Strategy
- Primary: Direct sales team (Brite Nites, Labs), online marketplace (Supply), product-led growth (Base)
- Content: Developer/operator blog, case studies, portfolio showcases
- Events: Industry trade shows, conference presence
- Digital: LinkedIn thought leadership, targeted outreach to ICP segments
SoR Integration
If a relevant MCP tool is available (see spec for trait-to-SoR mapping), query it to enrich the context doc:
- Check MCP availability (HubSpot MCP or Salesforce MCP)
- Query SoR for: contact segments (ICP match), deal stages, campaign performance, pipeline data
- MANDATORY: Follow Data Safety rules before writing any SoR data — see
docs/designs/BC-1966-context-skill-standard.md for: newline stripping, character allowlist, field/list caps, frontmatter exclusion, blockquote wrapping
- Write enriched sections to context doc
- Record query metadata in
## SoR Sources
If MCP is unavailable, create the context doc from interview data only and mark SoR sections with <!-- needs-enrichment -->.
How Sibling Skills Use This
All other skills in this plugin MUST read docs/marketing-context.md at the start of their execution. If the file doesn't exist, warn and proceed with reduced context — never hard-fail.
Specification
See docs/designs/BC-1966-context-skill-standard.md for the full context-skill standard, including:
- Required frontmatter schema
- Content format and budget (~80-200 lines)
- SoR query pattern and fallback tiers
- Cross-plugin reference table
1---2name: product-marketing-context3description: Creates docs/marketing-context.md with foundational marketing context for this project. Triggered by the needs-marketing trait. Read by all other marketing skills before they act.4---56# Marketing Context Skill78This is the foundational context-skill for the marketing domain plugin. It creates and maintains the project-specific context document that all other skills in this plugin read before acting.910## When This Activates1112- **Auto-triggered** by `project-start` when the `needs-marketing` trait is detected and this plugin is installed13- **Manually invocable** via `/marketing:product-marketing-context` to refresh the context doc1415## What It Produces1617**Output file:** `docs/marketing-context.md`1819### Context Doc Frontmatter2021```yaml22---23domain: marketing24trait: needs-marketing25last_refreshed: YYYY-MM-DD26refresh_cadence: quarterly27generated_by: product-marketing-context28---29```3031**CRITICAL:** Use `last_refreshed`, not `last_generated` — session-start parses this exact key.3233## Brite Brand Context3435Use the following as source material when generating `docs/marketing-context.md`. This is the authoritative brand knowledge for all marketing skill outputs.3637### Company Overview3839The Brite Company is the parent entity operating four interconnected brands in the lighting and entertainment industry:4041- **Brite Nites** — Holiday and seasonal lighting installation services for high-end residential clients. 30 years of field intelligence. The operational backbone and original brand.42- **Brite Supply** — Products and marketplace for professional holiday lighting installers. Every product exists because a Brite Nites crew discovered a problem on a jobsite.43- **Brite Base** — Field Service Management (FSM) SaaS platform for holiday lighting companies. Dogfooded by Brite Nites and Brite Labs internally.44- **Brite Labs** — Custom creative productions and large-scale commercial lighting installations (venues, municipalities, entertainment properties). High-value projects like Gaylord Hotel installations that elevate the entire brand.4546### The Flywheel4748The entities feed each other in a compounding loop:4950- Brite Nites → Brite Supply: Field intelligence becomes products51- Brite Supply → Brite Nites: Brite Base software runs operations; better software → more efficient ops → more intelligence52- Brite Nites → Brite Labs: Residential reputation opens doors to commercial work53- Brite Labs → Brite Supply: Commercial projects surface needs for specialized hardware54- Brite Supply → Brite Labs: Brite Base manages large-scale productions too5556### ICP by Entity5758| Entity | Primary Audience | Qualifying Criteria |59|--------|-----------------|-------------------|60| Brite Nites | High-end residential homeowners | Home value $2M+, budget $3K+, property suitable for custom lighting |61| Brite Supply | Professional holiday lighting installers | Active business, 10+ jobs/season, not DIY hobbyists |62| Brite Base | Holiday lighting companies needing FSM | 5+ employees, managing scheduling/estimates/crews |63| Brite Labs | Commercial venues, municipalities, entertainment properties | Project budget $50K+, need experiential or large-scale lighting |6465### Value Propositions & Messaging Pillars6667**Core positioning:** The Brite Company occupies a unique multi-category position — few competitors span installation services, product marketplace, SaaS platform, and creative production simultaneously.6869**Messaging pillars by entity:**7071**Brite Nites:**72- Premium custom design, not catalog installations73- Full-scope project management (design through removal)74- 30 years of field expertise backing every installation75- Win pattern: clients who value craftsmanship over commodity pricing7677**Brite Supply:**78- Products born from real jobsite problems, not theoretical R&D79- Built by installers, for installers80- Integrated with Brite Base for seamless operations8182**Brite Base:**83- The only FSM software dogfooded by a 30-year lighting operation84- Scheduling, estimates, crew management purpose-built for the industry85- Better software → more efficient operations (the compounding loop)8687**Brite Labs:**88- Turn slow months into high-revenue events with immersive experiences89- Park-scale and venue-scale installations that drive attendance and social media buzz90- Full-scope management so client teams focus on guest experience9192### Voice & Tone Guidelines9394The brand voice is grounded in five core values:9596| Value | Voice Expression | Do | Don't |97|-------|-----------------|-----|-------|98| Excellence | Premium, polished, specific | Use concrete proof points (portfolio examples, credentials) | Use vague superlatives ("industry-leading", "best-in-class") |99| Transformation | Outcome-focused | Focus on customer outcomes and ROI | Describe internal processes |100| Trusted Care | Reliable, responsive, client-first | Emphasize reliability and responsiveness | Sound transactional or impersonal |101| Expression | Creative design partner | Position as collaborative creative partner | Sound like a commodity vendor |102| Personal Touch | Warm, individualized | Be conversational and specific to the client | Sound like mass-market boilerplate |103104**Language rules:**105- Say "holiday lighting" or "seasonal displays", not "Christmas lights" (inclusivity + year-round positioning)106- Say "installations" or "displays", not "decorations" (professional, engineered)107- Frame pricing as "cost-effectiveness" and "ROI", not "affordability" (value, not discount)108- Avoid superlatives — use specific proof points instead109110### Competitive Positioning111112The competitive landscape is broader than "holiday lighting" — Brite competes across multiple categories simultaneously:113114- **Direct (installations):** Local/regional lighting contractors, franchise operations115- **Direct (supply):** Holiday lighting product distributors, wholesale suppliers116- **Direct (SaaS):** General FSM platforms (ServiceTitan, Jobber) that lack industry-specific features117- **Win pattern:** Multi-category integration. Competitors occupy one category; Brite's flywheel spans all four, creating compounding advantages competitors can't replicate.118- **Key differentiator:** 30 years of field intelligence feeding product development and software — no pure-play SaaS or marketplace competitor has this operational foundation.119120### Channel Strategy121122- **Primary:** Direct sales team (Brite Nites, Labs), online marketplace (Supply), product-led growth (Base)123- **Content:** Developer/operator blog, case studies, portfolio showcases124- **Events:** Industry trade shows, conference presence125- **Digital:** LinkedIn thought leadership, targeted outreach to ICP segments126127## SoR Integration128129If a relevant MCP tool is available (see spec for trait-to-SoR mapping), query it to enrich the context doc:1301311. Check MCP availability (HubSpot MCP or Salesforce MCP)1322. Query SoR for: contact segments (ICP match), deal stages, campaign performance, pipeline data1333. **MANDATORY: Follow Data Safety rules** before writing any SoR data — see `docs/designs/BC-1966-context-skill-standard.md` for: newline stripping, character allowlist, field/list caps, frontmatter exclusion, blockquote wrapping1344. Write enriched sections to context doc1355. Record query metadata in `## SoR Sources`136137If MCP is unavailable, create the context doc from interview data only and mark SoR sections with `<!-- needs-enrichment -->`.138139## How Sibling Skills Use This140141All other skills in this plugin MUST read `docs/marketing-context.md` at the start of their execution. If the file doesn't exist, warn and proceed with reduced context — never hard-fail.142143## Specification144145See `docs/designs/BC-1966-context-skill-standard.md` for the full context-skill standard, including:146- Required frontmatter schema147- Content format and budget (~80-200 lines)148- SoR query pattern and fallback tiers149- Cross-plugin reference table