@mytechtoday/augment-extensions 2.3.7 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/augment-extensions/writing-standards/screenplay/commercials/CHARACTER-COUNT-TRACKING.md +226 -0
- package/augment-extensions/writing-standards/screenplay/commercials/CONFIGURATION.md +327 -0
- package/augment-extensions/writing-standards/screenplay/commercials/README.md +223 -0
- package/augment-extensions/writing-standards/screenplay/commercials/REFACTORING-SUMMARY.md +193 -0
- package/augment-extensions/writing-standards/screenplay/commercials/REFERENCES.md +157 -0
- package/augment-extensions/writing-standards/screenplay/commercials/VALIDATION-REPORT.md +109 -0
- package/augment-extensions/writing-standards/screenplay/commercials/examples/.gitkeep +0 -0
- package/augment-extensions/writing-standards/screenplay/commercials/module.json +111 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/.gitkeep +0 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/commercial-audience.md +343 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/commercial-formats.md +396 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/commercial-persuasion.md +387 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/commercial-scripts.md +531 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/commercial-techniques.md +912 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/commercial-types.md +700 -0
- package/augment-extensions/writing-standards/screenplay/commercials/rules/commercials.md +285 -0
- package/augment-extensions/writing-standards/screenplay/commercials/scripts/validate-character-count.ts +284 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-blocking-extractor.d.ts +58 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-blocking-extractor.d.ts.map +1 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-blocking-extractor.js +275 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-blocking-extractor.js.map +1 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-entity-extractor.d.ts +41 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-entity-extractor.d.ts.map +1 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-entity-extractor.js +155 -0
- package/cli/dist/commands/generate-shot-list/generator/ai-entity-extractor.js.map +1 -0
- package/cli/dist/commands/generate-shot-list/generator/context-builder.d.ts +65 -2
- package/cli/dist/commands/generate-shot-list/generator/context-builder.d.ts.map +1 -1
- package/cli/dist/commands/generate-shot-list/generator/context-builder.js +394 -98
- package/cli/dist/commands/generate-shot-list/generator/context-builder.js.map +1 -1
- package/cli/dist/commands/generate-shot-list/generator/index.d.ts +59 -1
- package/cli/dist/commands/generate-shot-list/generator/index.d.ts.map +1 -1
- package/cli/dist/commands/generate-shot-list/generator/index.js +364 -34
- package/cli/dist/commands/generate-shot-list/generator/index.js.map +1 -1
- package/cli/dist/commands/generate-shot-list/generator/types.d.ts +3 -2
- package/cli/dist/commands/generate-shot-list/generator/types.d.ts.map +1 -1
- package/cli/dist/commands/generate-shot-list/generator/validator.d.ts +33 -0
- package/cli/dist/commands/generate-shot-list/generator/validator.d.ts.map +1 -1
- package/cli/dist/commands/generate-shot-list/generator/validator.js +167 -0
- package/cli/dist/commands/generate-shot-list/generator/validator.js.map +1 -1
- package/cli/dist/commands/generate-shot-list/help-text.d.ts +1 -1
- package/cli/dist/commands/generate-shot-list/help-text.d.ts.map +1 -1
- package/cli/dist/commands/generate-shot-list/help-text.js +11 -0
- package/cli/dist/commands/generate-shot-list/help-text.js.map +1 -1
- package/cli/dist/commands/generate-shot-list.d.ts +1 -0
- package/cli/dist/commands/generate-shot-list.d.ts.map +1 -1
- package/cli/dist/commands/generate-shot-list.js +7 -4
- package/cli/dist/commands/generate-shot-list.js.map +1 -1
- package/package.json +5 -1
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "commercials",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"displayName": "Commercial Writing Standards",
|
|
5
|
+
"description": "Comprehensive commercial writing standards for TV, streaming, and digital advertising including format-specific rules, legal compliance, and persuasive techniques",
|
|
6
|
+
"type": "writing-standards",
|
|
7
|
+
"language": "screenplay",
|
|
8
|
+
"parent": "screenplay",
|
|
9
|
+
"tags": [
|
|
10
|
+
"commercials",
|
|
11
|
+
"advertising",
|
|
12
|
+
"tv-commercials",
|
|
13
|
+
"streaming-ads",
|
|
14
|
+
"digital-advertising",
|
|
15
|
+
"persuasion",
|
|
16
|
+
"legal-compliance",
|
|
17
|
+
"ftc",
|
|
18
|
+
"brand-messaging"
|
|
19
|
+
],
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"screenplay": "^1.0.0"
|
|
22
|
+
},
|
|
23
|
+
"augment": {
|
|
24
|
+
"characterCount": 408000,
|
|
25
|
+
"characterCountNote": "17 content files × 24,000 avg chars (3k-45k range) = ~408,000 total",
|
|
26
|
+
"perFileRange": "3,000 - 45,000",
|
|
27
|
+
"priority": "medium",
|
|
28
|
+
"category": "writing-standards",
|
|
29
|
+
"appliesTo": {
|
|
30
|
+
"filePatterns": [
|
|
31
|
+
"**/*.fountain",
|
|
32
|
+
"**/commercials/**/*.md",
|
|
33
|
+
"**/ads/**/*.fountain"
|
|
34
|
+
],
|
|
35
|
+
"projectTypes": [
|
|
36
|
+
"commercial",
|
|
37
|
+
"advertising",
|
|
38
|
+
"marketing"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"installation": {
|
|
43
|
+
"required": false,
|
|
44
|
+
"steps": [
|
|
45
|
+
"Link parent module: augx link writing-standards/screenplay",
|
|
46
|
+
"Link commercials module: augx link writing-standards/screenplay/commercials",
|
|
47
|
+
"Configure in .augment/screenplay-config.json with 'commercials' category",
|
|
48
|
+
"Use Fountain format (.fountain) for commercial scripts"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"configuration": {
|
|
52
|
+
"file": ".augment/commercials-config.json",
|
|
53
|
+
"schema": {
|
|
54
|
+
"formats": {
|
|
55
|
+
"type": "array",
|
|
56
|
+
"items": {
|
|
57
|
+
"enum": [
|
|
58
|
+
"tv-15sec",
|
|
59
|
+
"tv-30sec",
|
|
60
|
+
"tv-60sec",
|
|
61
|
+
"streaming-pre-roll",
|
|
62
|
+
"streaming-mid-roll",
|
|
63
|
+
"digital-banner",
|
|
64
|
+
"social-media",
|
|
65
|
+
"radio"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"description": "Commercial formats to apply"
|
|
69
|
+
},
|
|
70
|
+
"legalCompliance": {
|
|
71
|
+
"type": "boolean",
|
|
72
|
+
"default": true,
|
|
73
|
+
"description": "Enable FTC and legal compliance checks"
|
|
74
|
+
},
|
|
75
|
+
"brandGuidelines": {
|
|
76
|
+
"type": "object",
|
|
77
|
+
"description": "Brand-specific guidelines and restrictions"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"contents": {
|
|
82
|
+
"rules": [
|
|
83
|
+
"core-principles.md",
|
|
84
|
+
"format-15sec.md",
|
|
85
|
+
"format-30sec.md",
|
|
86
|
+
"format-60sec.md",
|
|
87
|
+
"streaming-pre-roll.md",
|
|
88
|
+
"streaming-mid-roll.md",
|
|
89
|
+
"digital-banner.md",
|
|
90
|
+
"social-media.md",
|
|
91
|
+
"radio.md",
|
|
92
|
+
"persuasion-techniques.md",
|
|
93
|
+
"call-to-action.md",
|
|
94
|
+
"brand-messaging.md",
|
|
95
|
+
"legal-compliance.md",
|
|
96
|
+
"ftc-guidelines.md",
|
|
97
|
+
"production-notes.md"
|
|
98
|
+
],
|
|
99
|
+
"examples": [
|
|
100
|
+
"tv-30sec-example.fountain",
|
|
101
|
+
"streaming-pre-roll-example.fountain"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"references": {
|
|
105
|
+
"ftc": "https://www.ftc.gov/business-guidance/advertising-marketing",
|
|
106
|
+
"aaa": "https://www.aaaa.org/",
|
|
107
|
+
"adAge": "https://adage.com/",
|
|
108
|
+
"cannesLions": "https://www.canneslions.com/"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
File without changes
|
package/augment-extensions/writing-standards/screenplay/commercials/rules/commercial-audience.md
ADDED
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
# Commercial Audience Targeting
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Effective audience targeting ensures your commercial speaks directly to the right people with the right message. A commercial for everyone is a commercial for no one.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Audience Segmentation
|
|
10
|
+
|
|
11
|
+
### 1. Demographics
|
|
12
|
+
|
|
13
|
+
**Quantifiable characteristics of your audience**
|
|
14
|
+
|
|
15
|
+
#### Age
|
|
16
|
+
**Why it matters:** Different generations have different values, media habits, and communication styles
|
|
17
|
+
|
|
18
|
+
**Age Segments:**
|
|
19
|
+
- **Gen Z (1997-2012):** Digital natives, social justice, authenticity, short attention spans
|
|
20
|
+
- **Millennials (1981-1996):** Experience-focused, tech-savvy, value-driven, skeptical of ads
|
|
21
|
+
- **Gen X (1965-1980):** Independent, pragmatic, work-life balance, brand loyal
|
|
22
|
+
- **Boomers (1946-1964):** Traditional values, brand loyal, TV viewers, financial security
|
|
23
|
+
- **Silent Gen (1928-1945):** Conservative, traditional media, trust established brands
|
|
24
|
+
|
|
25
|
+
**Age-Appropriate Messaging:**
|
|
26
|
+
```
|
|
27
|
+
GEN Z (18-26):
|
|
28
|
+
"No cap, this app is bussin'. Download now and get your first month free."
|
|
29
|
+
[Fast cuts, TikTok-style, trending music]
|
|
30
|
+
|
|
31
|
+
MILLENNIALS (27-42):
|
|
32
|
+
"Adulting is hard. We make it easier."
|
|
33
|
+
[Relatable humor, authentic testimonials, mobile-first]
|
|
34
|
+
|
|
35
|
+
GEN X (43-58):
|
|
36
|
+
"Quality you can trust. Value you deserve."
|
|
37
|
+
[Straightforward, no-nonsense, practical benefits]
|
|
38
|
+
|
|
39
|
+
BOOMERS (59-77):
|
|
40
|
+
"Trusted for over 50 years. Serving families like yours."
|
|
41
|
+
[Traditional format, clear messaging, established credibility]
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
#### Gender
|
|
45
|
+
**Why it matters:** Different genders may have different needs, preferences, and pain points
|
|
46
|
+
|
|
47
|
+
**Best Practices:**
|
|
48
|
+
- ✅ Avoid stereotypes (women = cleaning, men = cars)
|
|
49
|
+
- ✅ Show diverse gender representation
|
|
50
|
+
- ✅ Consider non-binary and gender-fluid audiences
|
|
51
|
+
- ✅ Focus on benefits, not gender assumptions
|
|
52
|
+
- ❌ Don't alienate with gendered language unless product-specific
|
|
53
|
+
|
|
54
|
+
**Example - Gender-Neutral Approach:**
|
|
55
|
+
```
|
|
56
|
+
BAD: "Ladies, tired of your husband leaving the toilet seat up?"
|
|
57
|
+
GOOD: "Everyone deserves a bathroom that works for them."
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
#### Income Level
|
|
61
|
+
**Why it matters:** Determines purchasing power and value perception
|
|
62
|
+
|
|
63
|
+
**Income Segments:**
|
|
64
|
+
- **Budget-Conscious:** Price, value, deals, savings
|
|
65
|
+
- **Middle-Income:** Quality-to-price ratio, practical benefits
|
|
66
|
+
- **Affluent:** Premium quality, exclusivity, status, experience
|
|
67
|
+
|
|
68
|
+
**Income-Appropriate Messaging:**
|
|
69
|
+
```
|
|
70
|
+
BUDGET:
|
|
71
|
+
"Get more for less. $9.99/month. Cancel anytime."
|
|
72
|
+
|
|
73
|
+
MIDDLE:
|
|
74
|
+
"Premium quality at a fair price. Worth every penny."
|
|
75
|
+
|
|
76
|
+
AFFLUENT:
|
|
77
|
+
"Handcrafted excellence. Limited availability."
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
#### Location
|
|
81
|
+
**Why it matters:** Geographic differences in culture, climate, needs, regulations
|
|
82
|
+
|
|
83
|
+
**Location Considerations:**
|
|
84
|
+
- **Urban vs. Rural:** Different lifestyles, needs, values
|
|
85
|
+
- **Regional Culture:** Southern hospitality, West Coast casual, Northeast direct
|
|
86
|
+
- **Climate:** Seasonal products, weather-related needs
|
|
87
|
+
- **International:** Language, cultural norms, legal requirements
|
|
88
|
+
|
|
89
|
+
### 2. Psychographics
|
|
90
|
+
|
|
91
|
+
**Psychological characteristics, values, attitudes, interests, lifestyle**
|
|
92
|
+
|
|
93
|
+
#### Values
|
|
94
|
+
**What your audience cares about deeply**
|
|
95
|
+
|
|
96
|
+
**Value Categories:**
|
|
97
|
+
- **Family:** Connection, tradition, legacy
|
|
98
|
+
- **Achievement:** Success, recognition, excellence
|
|
99
|
+
- **Security:** Safety, stability, protection
|
|
100
|
+
- **Freedom:** Independence, adventure, choice
|
|
101
|
+
- **Sustainability:** Environment, ethics, responsibility
|
|
102
|
+
- **Innovation:** Progress, technology, future
|
|
103
|
+
|
|
104
|
+
**Value-Based Messaging:**
|
|
105
|
+
```
|
|
106
|
+
FAMILY VALUES:
|
|
107
|
+
"Because the moments that matter most are the ones we share."
|
|
108
|
+
[SHOW: Multi-generational family gathering]
|
|
109
|
+
|
|
110
|
+
ACHIEVEMENT VALUES:
|
|
111
|
+
"For those who refuse to settle for second place."
|
|
112
|
+
[SHOW: Athlete training, entrepreneur working late]
|
|
113
|
+
|
|
114
|
+
SUSTAINABILITY VALUES:
|
|
115
|
+
"Good for you. Good for the planet."
|
|
116
|
+
[SHOW: Natural ingredients, eco-friendly packaging]
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
#### Lifestyle
|
|
120
|
+
**How your audience lives, works, and plays**
|
|
121
|
+
|
|
122
|
+
**Lifestyle Segments:**
|
|
123
|
+
- **Active/Fitness:** Health-conscious, outdoorsy, athletic
|
|
124
|
+
- **Professional:** Career-focused, busy, efficiency-driven
|
|
125
|
+
- **Creative:** Artistic, expressive, unconventional
|
|
126
|
+
- **Homebody:** Comfort, relaxation, family time
|
|
127
|
+
- **Social:** Outgoing, experience-seeking, trend-following
|
|
128
|
+
|
|
129
|
+
**Lifestyle-Targeted Messaging:**
|
|
130
|
+
```
|
|
131
|
+
ACTIVE LIFESTYLE:
|
|
132
|
+
[OPEN ON: Runner at sunrise, mountain biker on trail]
|
|
133
|
+
"Fuel your passion. Recover faster. Go further."
|
|
134
|
+
|
|
135
|
+
PROFESSIONAL LIFESTYLE:
|
|
136
|
+
[OPEN ON: Busy office, multiple screens, coffee]
|
|
137
|
+
"Work smarter, not harder. Automate the boring stuff."
|
|
138
|
+
|
|
139
|
+
HOMEBODY LIFESTYLE:
|
|
140
|
+
[OPEN ON: Cozy living room, blanket, streaming]
|
|
141
|
+
"Your perfect night in starts here."
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
#### Interests
|
|
145
|
+
**What your audience is passionate about**
|
|
146
|
+
|
|
147
|
+
**Interest Categories:**
|
|
148
|
+
- **Technology:** Gadgets, apps, innovation
|
|
149
|
+
- **Fashion:** Style, trends, self-expression
|
|
150
|
+
- **Food:** Cooking, dining, culinary experiences
|
|
151
|
+
- **Travel:** Adventure, exploration, culture
|
|
152
|
+
- **Entertainment:** Movies, music, gaming, sports
|
|
153
|
+
|
|
154
|
+
### 3. Behavioral Segmentation
|
|
155
|
+
|
|
156
|
+
**How your audience interacts with products and brands**
|
|
157
|
+
|
|
158
|
+
#### Purchase Behavior
|
|
159
|
+
- **Impulse Buyers:** Emotional triggers, urgency, limited-time offers
|
|
160
|
+
- **Researchers:** Detailed information, comparisons, reviews
|
|
161
|
+
- **Loyal Customers:** Rewards, exclusivity, appreciation
|
|
162
|
+
- **Price-Sensitive:** Deals, discounts, value propositions
|
|
163
|
+
|
|
164
|
+
#### Media Consumption
|
|
165
|
+
- **TV Viewers:** Traditional commercials, longer formats
|
|
166
|
+
- **Streamers:** Pre-roll, mid-roll, skippable vs. non-skippable
|
|
167
|
+
- **Social Media:** Short-form, mobile-optimized, shareable
|
|
168
|
+
- **Podcast Listeners:** Audio-only, host-read, conversational
|
|
169
|
+
|
|
170
|
+
#### Brand Relationship
|
|
171
|
+
- **Aware but not engaged:** Education, benefits, trial offers
|
|
172
|
+
- **Engaged but not purchased:** Overcome objections, social proof
|
|
173
|
+
- **Customers:** Upsell, cross-sell, loyalty programs
|
|
174
|
+
- **Advocates:** Referral programs, user-generated content
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## Age-Appropriate Content
|
|
179
|
+
|
|
180
|
+
### Children (Under 13)
|
|
181
|
+
**HEAVILY REGULATED - COPPA Compliance Required**
|
|
182
|
+
|
|
183
|
+
**Rules:**
|
|
184
|
+
- ✅ Educational, positive messaging
|
|
185
|
+
- ✅ No pressure tactics ("Buy now!")
|
|
186
|
+
- ✅ No collection of personal data
|
|
187
|
+
- ✅ Parental involvement in purchase decisions
|
|
188
|
+
- ❌ No fear-based messaging
|
|
189
|
+
- ❌ No unrealistic expectations
|
|
190
|
+
- ❌ No comparison to other children
|
|
191
|
+
|
|
192
|
+
**Example:**
|
|
193
|
+
```
|
|
194
|
+
"Ask your parents about [toy name]. Fun for the whole family!"
|
|
195
|
+
[SHOW: Children playing happily, parents smiling]
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### Teens (13-17)
|
|
199
|
+
**Sensitive to authenticity and peer influence**
|
|
200
|
+
|
|
201
|
+
**Best Practices:**
|
|
202
|
+
- ✅ Authentic, not "trying too hard"
|
|
203
|
+
- ✅ Peer acceptance, social belonging
|
|
204
|
+
- ✅ Independence, self-expression
|
|
205
|
+
- ✅ Current trends, music, slang (but don't overdo it)
|
|
206
|
+
- ❌ Don't talk down or preach
|
|
207
|
+
- ❌ Avoid obvious "fellow kids" pandering
|
|
208
|
+
|
|
209
|
+
### Adults (18-64)
|
|
210
|
+
**Widest range, segment by life stage**
|
|
211
|
+
|
|
212
|
+
**Life Stages:**
|
|
213
|
+
- **Young Adults (18-25):** Independence, career start, relationships
|
|
214
|
+
- **Established Adults (26-40):** Career growth, family formation, homeownership
|
|
215
|
+
- **Midlife (41-64):** Peak earning, children leaving home, retirement planning
|
|
216
|
+
|
|
217
|
+
### Seniors (65+)
|
|
218
|
+
**Respect, clarity, accessibility**
|
|
219
|
+
|
|
220
|
+
**Best Practices:**
|
|
221
|
+
- ✅ Clear, easy-to-read text
|
|
222
|
+
- ✅ Slower pacing, clear audio
|
|
223
|
+
- ✅ Respect and dignity (not condescending)
|
|
224
|
+
- ✅ Practical benefits, value, reliability
|
|
225
|
+
- ❌ Don't assume tech illiteracy
|
|
226
|
+
- ❌ Avoid ageist stereotypes
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
## Cultural Sensitivity
|
|
231
|
+
|
|
232
|
+
### Why It Matters
|
|
233
|
+
**Insensitive commercials can:**
|
|
234
|
+
- Damage brand reputation permanently
|
|
235
|
+
- Trigger boycotts and backlash
|
|
236
|
+
- Alienate entire demographics
|
|
237
|
+
- Result in legal issues
|
|
238
|
+
|
|
239
|
+
### Best Practices
|
|
240
|
+
|
|
241
|
+
#### 1. Representation
|
|
242
|
+
**Show diversity authentically**
|
|
243
|
+
- ✅ Include diverse races, ethnicities, abilities, body types
|
|
244
|
+
- ✅ Avoid tokenism (one person of color in background)
|
|
245
|
+
- ✅ Show people in empowered, non-stereotypical roles
|
|
246
|
+
- ✅ Consult with communities you're representing
|
|
247
|
+
|
|
248
|
+
#### 2. Cultural References
|
|
249
|
+
**Use cultural elements respectfully**
|
|
250
|
+
- ✅ Research cultural significance
|
|
251
|
+
- ✅ Avoid appropriation (using sacred symbols for profit)
|
|
252
|
+
- ✅ Hire cultural consultants
|
|
253
|
+
- ✅ Get feedback from community members
|
|
254
|
+
- ❌ Don't use accents for comedy
|
|
255
|
+
- ❌ Don't reduce cultures to stereotypes
|
|
256
|
+
|
|
257
|
+
#### 3. Language
|
|
258
|
+
**Choose words carefully**
|
|
259
|
+
- ✅ Use inclusive language
|
|
260
|
+
- ✅ Avoid gendered assumptions
|
|
261
|
+
- ✅ Respect preferred terminology
|
|
262
|
+
- ❌ Don't use slurs or offensive terms (even "reclaimed" ones)
|
|
263
|
+
- ❌ Don't appropriate AAVE or other dialects
|
|
264
|
+
|
|
265
|
+
#### 4. Religious Sensitivity
|
|
266
|
+
**Respect religious beliefs and practices**
|
|
267
|
+
- ✅ Avoid religious holidays for unrelated products
|
|
268
|
+
- ✅ Respect religious symbols and imagery
|
|
269
|
+
- ✅ Be aware of dietary restrictions, modesty standards
|
|
270
|
+
- ❌ Don't mock or trivialize religious practices
|
|
271
|
+
|
|
272
|
+
### Examples of Cultural Sensitivity
|
|
273
|
+
|
|
274
|
+
**GOOD - Inclusive Representation:**
|
|
275
|
+
```
|
|
276
|
+
[SHOW: Diverse group of friends celebrating together]
|
|
277
|
+
[Various ages, races, abilities, body types]
|
|
278
|
+
[Everyone equally featured, no tokenism]
|
|
279
|
+
VOICEOVER: "Everyone's invited. Everyone belongs."
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
**BAD - Stereotyping:**
|
|
283
|
+
```
|
|
284
|
+
[SHOW: Asian person doing math, wearing glasses]
|
|
285
|
+
[Hispanic person doing yard work]
|
|
286
|
+
[Black person playing basketball]
|
|
287
|
+
[These are harmful stereotypes]
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
---
|
|
291
|
+
|
|
292
|
+
## Audience Targeting Examples
|
|
293
|
+
|
|
294
|
+
### Example 1: Fitness App
|
|
295
|
+
|
|
296
|
+
**Primary Audience:**
|
|
297
|
+
- **Demographics:** Women 25-40, urban, middle-to-upper income
|
|
298
|
+
- **Psychographics:** Health-conscious, busy professionals, value convenience
|
|
299
|
+
- **Behavioral:** Active on Instagram, follow fitness influencers, tried other apps
|
|
300
|
+
|
|
301
|
+
**Messaging:**
|
|
302
|
+
```
|
|
303
|
+
"You're busy. We get it. 15-minute workouts that actually work."
|
|
304
|
+
[SHOW: Woman doing quick workout in apartment, then at work looking energized]
|
|
305
|
+
"FitQuick. Real results. Real life."
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
### Example 2: Retirement Planning
|
|
309
|
+
|
|
310
|
+
**Primary Audience:**
|
|
311
|
+
- **Demographics:** Adults 50-65, married, homeowners, $100k+ income
|
|
312
|
+
- **Psychographics:** Security-focused, family-oriented, planning ahead
|
|
313
|
+
- **Behavioral:** Watch cable news, read financial publications, risk-averse
|
|
314
|
+
|
|
315
|
+
**Messaging:**
|
|
316
|
+
```
|
|
317
|
+
"You've worked hard for 30 years. Make sure it counts."
|
|
318
|
+
[SHOW: Couple reviewing finances with advisor, relaxed and confident]
|
|
319
|
+
"Fidelity Retirement Planning. Your future, secured."
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
### Example 3: Gaming Console
|
|
323
|
+
|
|
324
|
+
**Primary Audience:**
|
|
325
|
+
- **Demographics:** Males 18-35, students/young professionals
|
|
326
|
+
- **Psychographics:** Entertainment-focused, social, tech-savvy, competitive
|
|
327
|
+
- **Behavioral:** Heavy social media users, watch Twitch/YouTube, online communities
|
|
328
|
+
|
|
329
|
+
**Messaging:**
|
|
330
|
+
```
|
|
331
|
+
[FAST CUTS: Epic game footage, friends playing together, tournament action]
|
|
332
|
+
[MUSIC: High-energy electronic]
|
|
333
|
+
"This is next-gen. This is PlayStation 5."
|
|
334
|
+
```
|
|
335
|
+
|
|
336
|
+
---
|
|
337
|
+
|
|
338
|
+
## Resources
|
|
339
|
+
|
|
340
|
+
- **Research Tools:** Google Analytics, Facebook Audience Insights, Nielsen ratings
|
|
341
|
+
- **Cultural Consultants:** Hire experts from communities you're representing
|
|
342
|
+
- **Testing:** Focus groups, A/B testing, social listening
|
|
343
|
+
- **Guidelines:** ANA (Association of National Advertisers), IAB (Interactive Advertising Bureau)
|