Maintains brand voice consistency across all content. Defines, documents, and enforces brand guidelines including tone, vocabulary, style, and messaging. Use this skill to create brand voice guides, check content alignment, or ensure consistency across content pieces.
QUICK REFERENCE
- Output folder:
output/analysis/(for voice analysis reports)- Brand voice files:
references/brand-voice/(store brand guides here)- Analysis script:
.venv\Scripts\python.exe scripts/content/analyze_brand_voice.py- File naming:
YYYY-MM-DD_brand_voice_guide.md- Key deliverables: Voice guide, tone matrix, vocabulary lists, do/don't examples
- Python: ALWAYS use
.venv\Scripts\python.exe(never barepython)
Ensures consistent, authentic brand voice across all content types and platforms.
This skill handles:
NOT handled by this skill:
Define your brand as a person:
## Brand Personality
**If our brand were a person, they would be:**
- [Age range, appearance, lifestyle]
- [Profession or expertise area]
- [Personality traits - 3-5 words]
- [How they speak and communicate]
- [What they value most]
**Personality Traits:**
1. [Trait 1] - [How it shows up in content]
2. [Trait 2] - [How it shows up in content]
3. [Trait 3] - [How it shows up in content]
Define tone across different contexts:
| Context | Tone | Example |
|---|---|---|
| Educational | [Helpful, expert, approachable] | "Here's what most people miss..." |
| Promotional | [Confident, exciting, direct] | "This is your moment to..." |
| Support | [Empathetic, patient, clear] | "We understand how frustrating..." |
| Social | [Friendly, engaging, authentic] | "Real talk: This changed everything..." |
| Formal | [Professional, authoritative, precise] | "Our analysis indicates..." |
Define 3-5 core voice attributes:
## Voice Attributes
### 1. [Attribute Name] (e.g., "Confident")
**What it means:** [Definition]
**How it sounds:**
- DO: [Example phrase]
- DON'T: [Counter-example]
### 2. [Attribute Name] (e.g., "Approachable")
**What it means:** [Definition]
**How it sounds:**
- DO: [Example phrase]
- DON'T: [Counter-example]
### 3. [Attribute Name] (e.g., "Expert")
**What it means:** [Definition]
**How it sounds:**
- DO: [Example phrase]
- DON'T: [Counter-example]
## Vocabulary Guidelines
### Power Words (Use Frequently)
[List of brand-aligned power words]
### Words to Avoid
[List of off-brand words/phrases]
### Industry Jargon Policy
[When to use, when to explain, when to avoid]
### Competitor Words to Avoid
[Terms associated with competitors]
## Grammar & Style
### Contractions
[Use: yes/no, when]
### Sentence Length
[Guidelines for sentence structure]
### Paragraph Length
[Max lines/sentences per paragraph]
### Point of View
[First person (we/I), second person (you), third person]
### Active vs Passive
[Preference and when to use each]
### Oxford Comma
[Yes/No]
### Capitalization
[Title case rules, brand name rules]
## Core Messaging
### Tagline
[Primary brand tagline]
### Value Proposition
[One-sentence value statement]
### Elevator Pitch
[30-second version]
### Key Messages (3-5)
1. [Message 1]
2. [Message 2]
3. [Message 3]
### Proof Points
- [Proof point 1]
- [Proof point 2]
- [Proof point 3]
### Differentiation Statement
[How we're different from competitors]
Understand Brand Context
- Existing brand guidelines?
- Target audience(s)?
- Competitive positioning?
- Content examples to analyze?
Audit Existing Content
# Analyze existing content for voice patterns
python scripts/content/analyze_brand_voice.py \
--folder references/examples/ \
--output output/analysis/voice_audit.json
Document Plan
## Brand Voice Plan
### Current State
- Existing guidelines: [Yes/No]
- Content consistency: [Low/Medium/High]
- Key gaps: [List]
### Deliverables
1. Brand personality definition
2. Voice attributes (3-5)
3. Tone spectrum
4. Language guidelines
5. Messaging framework
Discovery Questions:
Style Questions:
Differentiation Questions:
Create Voice Guide
python scripts/content/generate_voice_guide.py \
--brand "Brand Name" \
--output references/brand-voice/
Document All Components
Save Files
references/brand-voice/
├── brand-voice-guide.md # Full guide
├── tone-guide.md # Tone spectrum
├── messaging-framework.md # Core messages
├── vocabulary.md # Word lists
├── do-dont-examples.md # Examples
└── quick-reference.md # One-page summary
# Check content for brand alignment
python scripts/content/check_brand_alignment.py \
--content output/content/draft.md \
--guidelines references/brand-voice/ \
--output output/analysis/alignment_report.md
# Brand Voice Alignment Report
## Content Analyzed
[File/content identifier]
## Overall Score: [X/10]
## Voice Attribute Alignment
| Attribute | Score | Notes |
|-----------|-------|-------|
| [Attribute 1] | X/10 | [Notes] |
| [Attribute 2] | X/10 | [Notes] |
...
## Issues Found
### Tone Issues
- Line [X]: "[Quote]" - [Issue description]
- Suggested: "[Rewrite]"
### Vocabulary Issues
- "[Word used]" → Suggest: "[Brand-appropriate word]"
### Style Issues
- [Issue and recommendation]
## Recommendations
1. [Recommendation 1]
2. [Recommendation 2]
...
# [Brand Name] Brand Voice Guide
## Our Brand Personality
[Paragraph describing brand as a person]
**If [Brand] were a person, they would be:**
- [Description]
**Personality Traits:**
- [Trait 1]: [Description]
- [Trait 2]: [Description]
- [Trait 3]: [Description]
---
## Voice Attributes
### 1. [Attribute] - [Tagline]
**Definition:** [What this means]
**In practice:**
- ✅ DO: "[Example]"
- ❌ DON'T: "[Counter-example]"
### 2. [Attribute] - [Tagline]
...
---
## Tone by Context
| Situation | Tone | Example |
|-----------|------|---------|
| Social media | [Tone] | "[Example]" |
| Email marketing | [Tone] | "[Example]" |
| Support | [Tone] | "[Example]" |
| Sales | [Tone] | "[Example]" |
---
## Language Guidelines
### We Say / We Don't Say
| Instead of... | We say... |
|---------------|-----------|
| [Off-brand] | [On-brand] |
| [Off-brand] | [On-brand] |
### Power Words
[List of brand-aligned power words]
### Words to Avoid
[List of off-brand words]
---
## Writing Style
- **Contractions:** [Yes/No]
- **Point of view:** [First/Second/Third person]
- **Sentence length:** [Short/Medium/Varied]
- **Emoji usage:** [Never/Sometimes/Often]
- **Humor:** [Never/Subtle/Frequent]
---
## Core Messages
### Our Promise
[Value proposition statement]
### Key Messages
1. [Message 1]
2. [Message 2]
3. [Message 3]
### Elevator Pitch
[30-second pitch]
---
## Examples in Action
### Social Post
**On-brand:**
> [Example post]
**Off-brand:**
> [Counter-example]
### Email
**On-brand:**
> [Example email excerpt]
**Off-brand:**
> [Counter-example]
---
## Quick Reference Card
**Remember:** [Brand] is [Trait 1], [Trait 2], and [Trait 3].
**Our voice is:** [One-sentence summary]
**When in doubt:** [Quick rule]
[PLAN]
- Need full brand voice documentation
- Will create comprehensive guide
- Requires discovery questions
[CLARIFY]
- "Describe your brand personality"
- "Who is your target audience?"
- "What tone do competitors use?"
- "Share examples of content you love"
- "What should your brand NEVER sound like?"
[IMPLEMENT]
- Create full voice guide
- Document all components
- Include examples
- Provide quick reference card
[PLAN]
- Content alignment check
- Need existing brand guidelines
- Will provide detailed report
[CLARIFY]
- "Where are your brand voice guidelines?"
- "What specific aspects to check?"
- "Any known problem areas?"
[IMPLEMENT]
- Analyze content against guidelines
- Score alignment by attribute
- Flag specific issues
- Provide rewrite suggestions
[PLAN]
- Analyze current content
- Identify inconsistencies
- Create standards
[CLARIFY]
- "Sample content from different team members?"
- "Which pieces represent ideal voice?"
- "Any specific inconsistencies noticed?"
[IMPLEMENT]
- Audit content samples
- Identify variation patterns
- Create/update voice guide
- Provide alignment checklist
Brand voice documents saved to:
references/brand-voice/brand-voice-guide.md - Full guidereferences/brand-voice/tone-guide.md - Tone spectrumreferences/brand-voice/messaging-framework.md - Messagesreferences/brand-voice/vocabulary.md - Word listsreferences/brand-voice/quick-reference.md - One-page summaryoutput/analysis/voice_audit.md - Content alignment reportsFor brand voice guides: