sinapse-ai 9.3.0 → 9.4.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.
Files changed (192) hide show
  1. package/.claude/CLAUDE.md +56 -343
  2. package/.claude/rules/agent-authority.md +6 -0
  3. package/.claude/rules/agent-handoff.md +5 -0
  4. package/.claude/rules/cross-squad-routing.md +5 -0
  5. package/.claude/rules/hook-governance.md +6 -0
  6. package/.claude/rules/mcp-usage.md +3 -1
  7. package/.claude/rules/safe-collaboration.md +10 -0
  8. package/.claude/rules/security-data-protection.md +9 -0
  9. package/.claude/rules/squad-awareness.md +3 -1
  10. package/.claude/rules/tool-examples.md +6 -0
  11. package/.claude/rules/workflow-execution.md +7 -0
  12. package/.codex/agents/analyst.md +253 -72
  13. package/.codex/agents/architect.md +455 -68
  14. package/.codex/agents/data-engineer.md +492 -106
  15. package/.codex/agents/developer.md +560 -0
  16. package/.codex/agents/devops.md +518 -69
  17. package/.codex/agents/product-lead.md +335 -0
  18. package/.codex/agents/project-lead.md +377 -0
  19. package/.codex/agents/quality-gate.md +449 -0
  20. package/.codex/agents/sinapse-orqx.md +9 -7
  21. package/.codex/agents/sprint-lead.md +287 -0
  22. package/.codex/agents/squad-creator.md +344 -0
  23. package/.codex/agents/ux-design-expert.md +495 -0
  24. package/.codex/delegation-matrix.json +756 -44
  25. package/.codex/handoff-packet.schema.json +30 -6
  26. package/.sinapse-ai/data/entity-registry.yaml +175 -363
  27. package/.sinapse-ai/data/registry-update-log.jsonl +16 -0
  28. package/.sinapse-ai/development/agents/analyst.md +90 -0
  29. package/.sinapse-ai/development/agents/architect.md +73 -0
  30. package/.sinapse-ai/development/agents/developer.md +69 -0
  31. package/.sinapse-ai/development/agents/devops.md +117 -0
  32. package/.sinapse-ai/development/agents/quality-gate.md +85 -0
  33. package/.sinapse-ai/development/checklists/agent-quality-gate.md +27 -0
  34. package/.sinapse-ai/development/checklists/brownfield-compatibility-checklist.md +20 -0
  35. package/.sinapse-ai/development/checklists/code-review-checklist.md +106 -0
  36. package/.sinapse-ai/development/checklists/issue-triage-checklist.md +9 -0
  37. package/.sinapse-ai/development/checklists/memory-audit-checklist.md +16 -0
  38. package/.sinapse-ai/development/checklists/pr-quality-checklist.md +72 -0
  39. package/.sinapse-ai/development/checklists/security-deployment-checklist.md +54 -0
  40. package/.sinapse-ai/development/checklists/self-critique-checklist.md +19 -1
  41. package/.sinapse-ai/development/skills/debug.md +57 -0
  42. package/.sinapse-ai/development/skills/fast-review.md +69 -0
  43. package/.sinapse-ai/development/skills/research-synthesis.md +77 -0
  44. package/.sinapse-ai/development/skills/security-scan.md +73 -0
  45. package/.sinapse-ai/development/skills/verify.md +53 -0
  46. package/.sinapse-ai/development/templates/squad/agent-template.md +17 -4
  47. package/.sinapse-ai/development/templates/squad/checklist-template.md +13 -5
  48. package/.sinapse-ai/development/templates/squad/task-template.md +7 -0
  49. package/.sinapse-ai/development/templates/squad/workflow-template.yaml +7 -0
  50. package/.sinapse-ai/development/workflows/fast-track.yaml +87 -0
  51. package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +3 -1
  52. package/.sinapse-ai/install-manifest.yaml +71 -35
  53. package/docs/codex-integration-process.md +22 -0
  54. package/docs/codex-parity-program.md +27 -0
  55. package/docs/ide-integration.md +36 -0
  56. package/package.json +1 -1
  57. package/squads/claude-code-mastery/knowledge-base/claude-code-internals-reference.md +927 -0
  58. package/squads/squad-brand/knowledge-base/archetype-brand-mapping.md +12 -1
  59. package/squads/squad-brand/knowledge-base/brand-activism-cultural-branding.md +216 -0
  60. package/squads/squad-brand/knowledge-base/brand-audit-criteria.md +58 -0
  61. package/squads/squad-brand/knowledge-base/brand-digital-strategy.md +188 -0
  62. package/squads/squad-brand/knowledge-base/brand-legal-ip.md +222 -0
  63. package/squads/squad-brand/knowledge-base/brand-naming-framework.md +163 -0
  64. package/squads/squad-brand/knowledge-base/branding-master-reference.md +1001 -0
  65. package/squads/squad-brand/knowledge-base/color-psychology.md +25 -12
  66. package/squads/squad-brand/knowledge-base/employer-personal-branding.md +206 -0
  67. package/squads/squad-brand/knowledge-base/routing-catalog.md +34 -0
  68. package/squads/squad-brand/knowledge-base/sonic-branding-principles.md +6 -1
  69. package/squads/squad-brand/knowledge-base/typography-personality.md +34 -0
  70. package/squads/squad-claude/knowledge-base/context-window-optimization.md +334 -0
  71. package/squads/squad-claude/knowledge-base/knowledge-architecture-reference.md +403 -0
  72. package/squads/squad-claude/knowledge-base/memory-systems-reference.md +412 -0
  73. package/squads/squad-claude/knowledge-base/obsidian-claude-integration.md +423 -0
  74. package/squads/squad-claude/knowledge-base/retrieval-augmented-generation.md +320 -0
  75. package/squads/squad-claude/knowledge-base/skill-creation-patterns.md +380 -0
  76. package/squads/squad-claude/knowledge-base/swarm-orchestration-patterns.md +411 -0
  77. package/squads/squad-cloning/knowledge-base/clone-quality-assurance.md +211 -0
  78. package/squads/squad-cloning/knowledge-base/confidence-scoring.md +51 -0
  79. package/squads/squad-cloning/knowledge-base/cross-squad-deployment.md +47 -0
  80. package/squads/squad-cloning/knowledge-base/ethical-guidelines.md +237 -0
  81. package/squads/squad-cloning/knowledge-base/knowledge-graph-for-clones.md +295 -0
  82. package/squads/squad-cloning/knowledge-base/memory-architecture-for-clones.md +229 -0
  83. package/squads/squad-cloning/knowledge-base/multi-agent-deployment-patterns.md +320 -0
  84. package/squads/squad-cloning/knowledge-base/skill-standard-for-clones.md +262 -0
  85. package/squads/squad-cloning/knowledge-base/sop-extraction-guide.md +243 -0
  86. package/squads/squad-commercial/knowledge-base/account-based-selling.md +206 -0
  87. package/squads/squad-commercial/knowledge-base/ai-as-competitive-infrastructure.md +14 -0
  88. package/squads/squad-commercial/knowledge-base/ai-in-sales.md +199 -0
  89. package/squads/squad-commercial/knowledge-base/brazilian-sales-context.md +195 -0
  90. package/squads/squad-commercial/knowledge-base/customer-success-operations.md +83 -2
  91. package/squads/squad-commercial/knowledge-base/prospecting-pipeline-generation.md +69 -0
  92. package/squads/squad-commercial/knowledge-base/sales-enablement-playbook.md +260 -0
  93. package/squads/squad-commercial/knowledge-base/sales-methodology-comparison.md +185 -0
  94. package/squads/squad-commercial/knowledge-base/sales-revenue-master-reference.md +1123 -0
  95. package/squads/squad-content/knowledge-base/brazilian-content-context.md +176 -0
  96. package/squads/squad-content/knowledge-base/competitor-analysis-methods.md +40 -1
  97. package/squads/squad-content/knowledge-base/content-architecture-taxonomy.md +206 -0
  98. package/squads/squad-content/knowledge-base/content-formats-encyclopedia.md +58 -1
  99. package/squads/squad-content/knowledge-base/content-references-bibliography.md +130 -0
  100. package/squads/squad-content/knowledge-base/content-strategy-master-reference.md +1097 -0
  101. package/squads/squad-content/knowledge-base/content-tech-stack.md +150 -0
  102. package/squads/squad-content/knowledge-base/copywriting-formulas-library.md +188 -0
  103. package/squads/squad-content/knowledge-base/email-newsletter-strategy.md +161 -0
  104. package/squads/squad-content/knowledge-base/platform-algorithm-intelligence.md +86 -1
  105. package/squads/squad-content/knowledge-base/social-algorithms-master-reference.md +1007 -0
  106. package/squads/squad-content/knowledge-base/video-audio-content-playbook.md +218 -0
  107. package/squads/squad-copy/knowledge-base/ai-copy-production.md +254 -0
  108. package/squads/squad-copy/knowledge-base/brazilian-copywriting-context.md +242 -0
  109. package/squads/squad-copy/knowledge-base/email-copywriting-system.md +299 -0
  110. package/squads/squad-copy/knowledge-base/landing-page-copy-architecture.md +267 -0
  111. package/squads/squad-copy/knowledge-base/power-words-catalog.md +205 -0
  112. package/squads/squad-copy/knowledge-base/seo-copywriting.md +255 -0
  113. package/squads/squad-copy/knowledge-base/video-script-copywriting.md +239 -0
  114. package/squads/squad-council/knowledge-base/brand-strategy-models.md +193 -0
  115. package/squads/squad-council/knowledge-base/growth-strategy-models.md +267 -0
  116. package/squads/squad-council/knowledge-base/innovation-disruption-frameworks.md +193 -0
  117. package/squads/squad-council/knowledge-base/market-analysis-frameworks.md +240 -0
  118. package/squads/squad-council/knowledge-base/organizational-leadership-models.md +212 -0
  119. package/squads/squad-council/knowledge-base/sales-strategy-models.md +215 -0
  120. package/squads/squad-courses/knowledge-base/course-launch-strategy.md +251 -0
  121. package/squads/squad-courses/knowledge-base/domain-advocacia-curriculum.md +385 -0
  122. package/squads/squad-courses/knowledge-base/domain-contabilidade-curriculum.md +266 -0
  123. package/squads/squad-courses/knowledge-base/platform-comparison.md +68 -0
  124. package/squads/squad-courses/knowledge-base/video-production-guide.md +70 -0
  125. package/squads/squad-cybersecurity/knowledge-base/cloud-security-reference.md +363 -0
  126. package/squads/squad-cybersecurity/knowledge-base/compliance-frameworks.md +273 -0
  127. package/squads/squad-cybersecurity/knowledge-base/database-security.md +438 -0
  128. package/squads/squad-cybersecurity/knowledge-base/incident-response-playbook.md +420 -0
  129. package/squads/squad-cybersecurity/knowledge-base/network-security-reference.md +477 -0
  130. package/squads/squad-cybersecurity/knowledge-base/penetration-testing-methodology.md +350 -0
  131. package/squads/squad-cybersecurity/knowledge-base/vulnerability-management.md +349 -0
  132. package/squads/squad-design/knowledge-base/brazilian-design-context.md +223 -0
  133. package/squads/squad-design/knowledge-base/component-api-patterns.md +208 -4
  134. package/squads/squad-design/knowledge-base/design-system-master-reference.md +1302 -0
  135. package/squads/squad-design/knowledge-base/design-systems-frameworks.md +91 -1
  136. package/squads/squad-design/knowledge-base/responsive-modern-css.md +96 -4
  137. package/squads/squad-design/knowledge-base/wcag-aria-reference.md +117 -5
  138. package/squads/squad-design/knowledge-base/web-performance-reference.md +127 -4
  139. package/squads/squad-finance/knowledge-base/brazilian-taxation.md +263 -0
  140. package/squads/squad-finance/knowledge-base/contabilidade-master-reference.md +998 -0
  141. package/squads/squad-finance/knowledge-base/finance-master-reference.md +946 -0
  142. package/squads/squad-finance/knowledge-base/financial-reporting-analysis.md +316 -0
  143. package/squads/squad-finance/knowledge-base/fintech-brazilian-context.md +242 -0
  144. package/squads/squad-finance/knowledge-base/fpa-planning-frameworks.md +286 -0
  145. package/squads/squad-finance/knowledge-base/ma-and-transactions.md +285 -0
  146. package/squads/squad-finance/knowledge-base/risk-management.md +233 -0
  147. package/squads/squad-finance/knowledge-base/startups-venture-capital.md +337 -0
  148. package/squads/squad-growth/knowledge-base/ai-growth-playbook.md +216 -0
  149. package/squads/squad-growth/knowledge-base/attribution-models.md +78 -0
  150. package/squads/squad-growth/knowledge-base/brazilian-growth-context.md +208 -0
  151. package/squads/squad-growth/knowledge-base/community-led-growth.md +175 -0
  152. package/squads/squad-growth/knowledge-base/content-marketing-flywheel.md +190 -0
  153. package/squads/squad-growth/knowledge-base/email-lifecycle-framework.md +192 -0
  154. package/squads/squad-growth/knowledge-base/growth-frameworks-catalog.md +82 -0
  155. package/squads/squad-growth/knowledge-base/growth-master-reference.md +1168 -0
  156. package/squads/squad-growth/knowledge-base/routing-catalog.md +53 -11
  157. package/squads/squad-paidmedia/knowledge-base/audiences-segmentation-deep.md +285 -0
  158. package/squads/squad-paidmedia/knowledge-base/creative-strategy-deep.md +294 -0
  159. package/squads/squad-paidmedia/knowledge-base/google-ads-account-architecture.md +87 -0
  160. package/squads/squad-paidmedia/knowledge-base/meta-ads-campaign-architecture.md +76 -0
  161. package/squads/squad-paidmedia/knowledge-base/paid-media-metrics-reference.md +117 -0
  162. package/squads/squad-paidmedia/knowledge-base/paid-traffic-master-reference.md +1308 -0
  163. package/squads/squad-paidmedia/knowledge-base/routing-catalog.md +95 -18
  164. package/squads/squad-paidmedia/knowledge-base/traffic-masters-frameworks.md +71 -0
  165. package/squads/squad-product/knowledge-base/brazilian-product-context.md +284 -0
  166. package/squads/squad-product/knowledge-base/discovery-methodology-playbook.md +141 -0
  167. package/squads/squad-product/knowledge-base/pm-frameworks-reference.md +125 -9
  168. package/squads/squad-product/knowledge-base/product-analytics-formulas.md +72 -0
  169. package/squads/squad-product/knowledge-base/product-led-growth-reference.md +155 -13
  170. package/squads/squad-product/knowledge-base/product-market-fit-framework.md +222 -0
  171. package/squads/squad-product/knowledge-base/routing-catalog.md +32 -0
  172. package/squads/squad-research/knowledge-base/agentic-second-brain-reference.md +591 -0
  173. package/squads/squad-research/knowledge-base/ai-augmented-research.md +212 -0
  174. package/squads/squad-research/knowledge-base/brazilian-market-research-sources.md +197 -0
  175. package/squads/squad-research/knowledge-base/community-platforms-reference.md +786 -0
  176. package/squads/squad-research/knowledge-base/community-research-methods.md +194 -0
  177. package/squads/squad-research/knowledge-base/mixed-methods-research-design.md +168 -0
  178. package/squads/squad-research/knowledge-base/network-effects-analysis.md +192 -0
  179. package/squads/squad-research/knowledge-base/qualitative-research-deep-methods.md +202 -0
  180. package/squads/squad-research/knowledge-base/quantitative-research-methods.md +208 -0
  181. package/squads/squad-research/knowledge-base/research-frameworks-encyclopedia.md +40 -0
  182. package/squads/squad-research/knowledge-base/research-synthesis-frameworks.md +223 -0
  183. package/squads/squad-storytelling/knowledge-base/brand-mythology-framework.md +236 -0
  184. package/squads/squad-storytelling/knowledge-base/brazilian-storytelling-context.md +237 -0
  185. package/squads/squad-storytelling/knowledge-base/data-storytelling.md +232 -0
  186. package/squads/squad-storytelling/knowledge-base/improv-storytelling.md +226 -0
  187. package/squads/squad-storytelling/knowledge-base/persuasion-narrative-techniques.md +269 -0
  188. package/squads/squad-storytelling/knowledge-base/social-movement-narratives.md +191 -0
  189. package/squads/squad-storytelling/knowledge-base/video-storytelling.md +252 -0
  190. package/squads/claude-code-mastery/data/swarm-orchestration-patterns.yaml +0 -378
  191. package/squads/squad-animations/knowledge-base/framer-motion-complete-reference.md +0 -710
  192. package/squads/squad-animations/knowledge-base/web-animations-api-view-transitions.md +0 -478
@@ -0,0 +1,236 @@
1
+ # Brand Mythology Framework
2
+
3
+ > Version: 1.0.0 | Agent: joseph-campbell, park-howell | Domain: brand-storytelling, mythology
4
+
5
+ ## Overview
6
+
7
+ Brand mythology is the full narrative universe a brand creates over time — not just a single story, but a living system of origin stories, heroes, rituals, symbols, beliefs, and enemies that gives the brand cultural meaning.
8
+
9
+ This file synthesizes Douglas Holt's Cultural Branding model (from MS-006 Branding research) with Campbell's mythic framework and Howell's brand storytelling system.
10
+
11
+ ---
12
+
13
+ ## Douglas Holt — Cultural Branding Model
14
+
15
+ **Source:** "How Brands Become Icons: The Principles of Cultural Branding" (2004)
16
+
17
+ ### The Core Thesis
18
+
19
+ The most powerful brands don't build equity through advertising — they build it by **performing identity myths** that resolve cultural tensions.
20
+
21
+ Holt's observation: when society faces a tension (between freedom and constraint, individuality and conformity, progress and nature), certain brands step into that tension and offer a narrative resolution. This narrative becomes the brand's mythic core.
22
+
23
+ ### The Cultural Branding Model
24
+
25
+ 1. **Identify the cultural tension** — What is the society anxious about at this historical moment?
26
+ 2. **Create an identity myth** — What narrative resolves that tension?
27
+ 3. **Find the populist world** — What authentic, credible world embodies that myth? (Not manufactured — drawn from real subcultures, communities, or historical worlds)
28
+ 4. **Perform the myth consistently** — Every piece of communication reinforces the same mythic narrative
29
+
30
+ ### Case Studies
31
+
32
+ **Marlboro:**
33
+ - Cultural tension: Post-war corporate conformity vs. the mythology of American freedom
34
+ - Identity myth: The cowboy — rugged, independent, masculine, unbounded
35
+ - Populist world: The American West (already mythologized in cinema)
36
+ - Myth performed: Every ad, every campaign returned to the cowboy as icon of freedom
37
+
38
+ **Apple (1984-2000s):**
39
+ - Cultural tension: Mass conformity of corporate America vs. individual creative expression
40
+ - Identity myth: The rebel who thinks differently, who creates rather than consumes
41
+ - Populist world: Counter-cultural creative class (artists, designers, musicians)
42
+ - Myth performed: "Think Different," the 1984 commercial, Steve Jobs persona
43
+
44
+ **Patagonia:**
45
+ - Cultural tension: Consumer capitalism vs. ecological survival
46
+ - Identity myth: Genuine environmental warriors — not performative, but sacrificial
47
+ - Populist world: Wilderness subculture (climbers, surfers, adventurers who live the values)
48
+ - Myth performed: "Don't buy this jacket," donating the company, anti-growth stance
49
+
50
+ **Nubank (Brazil):**
51
+ - Cultural tension: Opacity and exploitation of traditional banking vs. desire for financial agency
52
+ - Identity myth: The friend who explains — accessible, honest, on the side of the customer
53
+ - Populist world: Young, urban Brazilians locked out of or underserved by traditional banks
54
+ - Myth performed: Purple as anti-establishment color, plain-language communication, transparent fees
55
+
56
+ ---
57
+
58
+ ## The 6 Elements of Brand Mythology
59
+
60
+ ### 1. Origin Story
61
+
62
+ The foundational narrative: how the brand came into existence, what problem it was created to solve, what sacrifice was made to create it.
63
+
64
+ **Characteristics of powerful origin stories:**
65
+ - A specific founder facing a specific, real problem
66
+ - A moment of decision (often against conventional wisdom)
67
+ - An unconventional path taken
68
+ - Personal cost and risk
69
+
70
+ **Examples:**
71
+ - Apple: Steve Jobs and Wozniak in the garage — technology for the people, not corporations
72
+ - Amazon: Jeff Bezos quits his finance job, drives cross-country, writes the business plan on the road
73
+ - Airbnb: Two designers who can't pay rent rent out air mattresses in their apartment to survive
74
+
75
+ **Brand mythology function:** Origin stories establish moral authority. They say: "We didn't start this for money. We started it because we believed in something."
76
+
77
+ ### 2. Heroes
78
+
79
+ The humans who embody the brand's values. Can be:
80
+ - **Founders:** Jobs, Musk, Bezos as living myths
81
+ - **Employees:** "Stories from the frontline" — employees who embody values
82
+ - **Customers:** Customers who achieved transformation through the brand
83
+
84
+ **The hero function:** Heroes make abstract brand values concrete. "We believe in innovation" is a claim. The story of the engineer who stayed all night to solve a customer's impossible problem is the myth.
85
+
86
+ ### 3. Rituals
87
+
88
+ Repeated experiences that carry symbolic weight and create shared identity.
89
+
90
+ **Brand ritual examples:**
91
+ - Apple product launches — theatrical events with religious overtones (announcement, revelation, collective reaction)
92
+ - Starbucks Red Cups season — marks the beginning of winter, creates belonging
93
+ - Nike Race events — shared suffering creates community
94
+ - Black Friday — shared fever of acquisition (ironic ritual for some brands)
95
+
96
+ **Ritual function:** Rituals create "us" — shared experience that defines membership. Members of a community recognize each other through participation in ritual.
97
+
98
+ ### 4. Symbols
99
+
100
+ Objects, colors, sounds, or images that carry the brand's mythic meaning.
101
+
102
+ | Brand | Symbol | Mythic Meaning |
103
+ |-------|--------|---------------|
104
+ | Apple | Bitten apple | Knowledge, rebellion, forbidden fruit |
105
+ | Tiffany | Blue box | Luxury, anticipation, romance |
106
+ | Starbucks | Siren cup | Urban sanctuary, caffeinated belonging |
107
+ | Harley-Davidson | Eagle bar shield | American freedom, outlaw identity |
108
+ | Nubank | Purple card | Anti-establishment, young, different |
109
+
110
+ **Symbol function:** Symbols compress the full myth into a single recognizable image. They work across languages and cultures. They trigger emotional memory.
111
+
112
+ ### 5. Lexicon
113
+
114
+ A brand's private language — words, phrases, and naming conventions that mark insiders.
115
+
116
+ | Brand | Lexicon |
117
+ |-------|---------|
118
+ | Starbucks | Tall/Grande/Venti (not small/medium/large) |
119
+ | Apple | Genius Bar, Macbook, iPhone, ecosystem |
120
+ | Disney | Cast members (not employees), Guests (not customers), Magic Kingdom |
121
+ | IKEA | Product names in Swedish, Allen key |
122
+ | Airbnb | Host, Guest, "Belong Anywhere" |
123
+
124
+ **Lexicon function:** Using the brand's language signals membership. It creates an in-group. It also makes the brand harder to substitute — you don't "get a coffee at Starbucks," you "order a venti oat latte."
125
+
126
+ ### 6. Sacred Beliefs
127
+
128
+ The inviolable principles that define what the brand stands for — the things the brand would die for rather than betray.
129
+
130
+ | Brand | Sacred Belief |
131
+ |-------|-------------|
132
+ | Patagonia | "We're in business to save our home planet" |
133
+ | Google | "Don't be evil" (early) / "Organize the world's information" |
134
+ | Apple | "Technology should be beautifully simple" |
135
+ | Ben & Jerry's | Business must be a force for social good |
136
+ | Natura (Brazil) | Human beings connected to nature, purpose over profit |
137
+
138
+ **Sacred beliefs function:** They define the brand's enemies (forces opposed to the belief) and its allies (those who share it). Customers join a brand's sacred belief as an act of identity — "I am the kind of person who believes this."
139
+
140
+ ---
141
+
142
+ ## Brand Archetypes — Jung's 12 Applied to Branding
143
+
144
+ From MS-006 research (Margaret Mark & Carol Pearson, "The Hero and the Outlaw", 2001):
145
+
146
+ | Archetype | Core Motivation | Promise | Brand Examples |
147
+ |-----------|----------------|---------|---------------|
148
+ | **The Innocent** | Safety | Happiness, purity | Dove, Coca-Cola, Disney |
149
+ | **The Explorer** | Freedom | Discovery, adventure | Jeep, Patagonia, National Geographic |
150
+ | **The Sage** | Knowledge | Wisdom, truth | Google, BBC, Harvard |
151
+ | **The Hero** | Mastery | Courage, achievement | Nike, FedEx, BMW |
152
+ | **The Outlaw** | Liberation | Revolution, freedom | Harley-Davidson, Diesel, early Apple |
153
+ | **The Magician** | Power | Transformation, magic | Apple (current), Tesla, Disney |
154
+ | **The Regular Guy** | Belonging | Equality, accessibility | IKEA, Havaianas, Walmart |
155
+ | **The Lover** | Intimacy | Passion, beauty | Chanel, Godiva, Victoria's Secret |
156
+ | **The Jester** | Pleasure | Fun, irreverence | M&M's, Old Spice, Ponto (Brazil) |
157
+ | **The Caregiver** | Service | Nurturing, safety | Natura, Johnson & Johnson, Volvo |
158
+ | **The Creator** | Innovation | Imagination, self-expression | LEGO, Adobe, Crayola |
159
+ | **The Ruler** | Control | Order, authority | Mercedes, Rolex, IBM |
160
+
161
+ ### Archetype as Narrative Guide
162
+
163
+ The chosen archetype determines:
164
+ - What stories the brand tells (Outlaw stories vs Caregiver stories are structurally different)
165
+ - What language the brand uses (Hero brands use conquest language; Caregiver brands use nurturing language)
166
+ - What enemies the brand fights (Explorer brands fight confinement; Sage brands fight ignorance)
167
+ - What rituals the brand creates (Jester brands create play; Ruler brands create ceremony)
168
+
169
+ ---
170
+
171
+ ## Building a Brand Mythology System
172
+
173
+ ### Step 1: Cultural Tension Mapping
174
+ What tensions exist in the market/society that your audience experiences?
175
+ Use: consumer research, social media listening, cultural analysis
176
+
177
+ ### Step 2: Myth Selection
178
+ What identity myth resolves that tension in a way that's authentic to your brand's actual origin and values?
179
+ Test: Does this myth require us to be anything we're not?
180
+
181
+ ### Step 3: Populist World Identification
182
+ What existing world — a subculture, a professional community, a historical tradition — authentically embodies this myth?
183
+ Avoid: Manufactured worlds (they read as hollow)
184
+
185
+ ### Step 4: Story System Creation
186
+ Develop:
187
+ - Origin story (founder narrative in myth-hero form)
188
+ - Hero gallery (employees and customers who embody the myth)
189
+ - Ritual calendar (recurring brand experiences)
190
+ - Symbol inventory (visual and verbal elements)
191
+ - Lexicon list (brand-specific language)
192
+ - Sacred beliefs articulation (3-5 inviolable principles)
193
+
194
+ ### Step 5: Consistent Myth Performance
195
+ Every communication — from customer service email to Super Bowl ad — reinforces the same mythic narrative. The consistency of performance is what builds mythic resonance over time.
196
+
197
+ ---
198
+
199
+ ## Brand Activism and Narrative Authenticity
200
+
201
+ From MS-006 research, Philip Kotler's test for authentic brand activism:
202
+
203
+ | Test | Question |
204
+ |------|---------|
205
+ | History | Does the brand have a track record on this issue — or did it start yesterday? |
206
+ | Resources | Does the brand invest real money, time, and operational change — not just posts? |
207
+ | Cost | Has the brand lost customers or revenue by taking this stand? |
208
+ | Internal alignment | Do employees confirm the external message reflects internal reality? |
209
+ | Transparency | Does the brand acknowledge its own gaps and failures on this issue? |
210
+
211
+ **Performative activism (wokewashing):** Using a cause as marketing without genuine commitment. Audiences detect this with high accuracy. The narrative consequence: the brand myth is damaged, not strengthened, because the contrast between stated values and actual behavior destroys credibility.
212
+
213
+ **Genuine activism as mythology:** Patagonia donating the company, Ben & Jerry's refusing to stay quiet on contentious political issues, Natura integrating sustainability into its founding mission — these create myth because the sacrifice is real.
214
+
215
+ ---
216
+
217
+ ## The Golden Circle as Myth Structure (Sinek)
218
+
219
+ Simon Sinek's Golden Circle maps onto mythology:
220
+
221
+ ```
222
+ WHY (Purpose) → The sacred belief — the myth at the core
223
+ HOW (Process) → The ritual — how the myth is enacted
224
+ WHAT (Product) → The symbol — the material artifact of the myth
225
+ ```
226
+
227
+ "People don't buy what you do; they buy why you do it" is a statement about the primacy of myth over product in building brand identity.
228
+
229
+ ---
230
+
231
+ ## Cross-Reference
232
+
233
+ - **Joseph Campbell's Archetypes** provide the mythic roles (Hero, Mentor, Shadow) that populate brand mythology
234
+ - **Park Howell's Story Cycle** provides the structural framework for building the full brand mythology system
235
+ - **Marshall Ganz's Public Narrative** applies when the brand mythology becomes a social movement
236
+ - **Kindra Hall's 4 Stories** provides the practical stories (founder, value, customer, purpose) that constitute the brand mythology
@@ -0,0 +1,237 @@
1
+ # Brazilian Storytelling Context
2
+
3
+ > Version: 1.0.0 | Domain: cultural-context, PT-BR storytelling, Brazilian narrative
4
+
5
+ ## Overview
6
+
7
+ Brazil has one of the most distinctive storytelling cultures in the world — shaped by a complex mix of Indigenous traditions, Portuguese colonialism, African diaspora, immigrant cultures, and a deeply oral communication tradition. Understanding Brazilian storytelling is essential for any narrative work targeting Brazilian audiences.
8
+
9
+ **Research sources:** MS-008 Content Section 16, MS-006 Branding Sections 15 and 12.
10
+
11
+ ---
12
+
13
+ ## Core Brazilian Narrative Values
14
+
15
+ ### 1. Afetividade (Warmth and Emotional Connection)
16
+
17
+ Brazilian communication is fundamentally relational. Stories that feel "cold," "corporate," or "distant" fail to connect.
18
+
19
+ **Storytelling implication:** Personal vulnerability, warmth, and genuine emotion are not weaknesses in Brazilian narrative — they are the foundation of trust. The storyteller who reveals human imperfection is trusted more than the one who projects only competence.
20
+
21
+ **Contrast with Northern European/US norms:** American "professional storytelling" often maintains emotional distance to signal authority. In Brazil, this distance signals inaccessibility and creates distrust.
22
+
23
+ ### 2. Aspiracao (Aspiration and Social Mobility)
24
+
25
+ Brazil is a highly aspirational society. Stories of transformation — from struggle to achievement — resonate deeply because they reflect real lived experiences and hopes.
26
+
27
+ **Storytelling implication:** The hero's journey archetype is particularly potent in Brazil. The underdog who achieves through creativity, persistence, and ingenuity is deeply culturally resonant.
28
+
29
+ **Examples:** Flavio Augusto da Silva (started with nothing, built a media empire), Magazine Luiza (Lu do Magalu as aspirational brand ambassador), Nubank (financial empowerment as aspiration).
30
+
31
+ ### 3. Humor and Irreverence
32
+
33
+ Brazilians have a deeply developed relationship with humor — including self-deprecating humor, irreverence toward authority, and the ability to find lightness in difficulty.
34
+
35
+ **Storytelling implication:** Brand stories that incorporate appropriate humor build more affinity than purely serious narratives. The "jogo de cintura" (hip wiggle — metaphor for adaptability and playfulness) is a cultural value.
36
+
37
+ **Examples:** Ponto (ex-Ponto Frio) social media, Guarana Antarctica campaigns, Havaianas' approach to global positioning.
38
+
39
+ **Warning:** Humor that "punches down" (targets vulnerable groups) fails completely. Brazilian humor is typically self-deprecating, situational, or directed at power (not at marginalized groups).
40
+
41
+ ### 4. Informalidade (Informality)
42
+
43
+ Even premium Brazilian brands adopt more informal communication than equivalent brands in the US or Europe. "Voce" replaces "vossa senhoria." First names replace titles. Conversational tone replaces formal registers.
44
+
45
+ **Storytelling implication:** Stories told in formal register feel alienating to most Brazilian audiences. The narrator should sound like a trusted friend, not an institutional voice.
46
+
47
+ ### 5. Brasilidade (Brazilian Identity)
48
+
49
+ Stories that incorporate authentic Brazilian cultural elements create deep connection — particularly with middle-class and working-class audiences who see their reality reflected.
50
+
51
+ **Elements of Brasilidade in storytelling:**
52
+ - Regional specificity (not a generic "Brazil" but a specific Nordeste, Sul, Sertao)
53
+ - Cultural celebrations (Carnaval, Festa Junina, Copa, Black Friday)
54
+ - Language nuances (regionalismos, gírias, the richness of Portuguese Brasil)
55
+ - Diversity and inclusion (Brazil is a majority non-white country — representation matters)
56
+
57
+ ---
58
+
59
+ ## Brazilian Oral Tradition
60
+
61
+ ### The Cordel Tradition
62
+
63
+ "Literatura de Cordel" is a Northeastern Brazilian tradition of printed verse narratives sold at markets — small pamphlets with rhymed, metered stories covering politics, religion, supernatural events, and local heroes.
64
+
65
+ **Narrative characteristics:**
66
+ - Strong rhyme and rhythm
67
+ - Heroes and villains are clearly defined
68
+ - Supernatural elements treated as real
69
+ - Social commentary through story
70
+ - Direct address to the reader/listener
71
+
72
+ **Storytelling lesson:** Brazilians have deep affinity for narrative that rhymes, flows, and has a clear moral. This is not just for folk contexts — the rhythmic quality of storytelling (cadence, repetition, memorable phrasing) is valued at all levels.
73
+
74
+ ### The Contador de Historias Tradition
75
+
76
+ Oral storytelling — "contar historias" — is a valued social skill in Brazil. Family gatherings, community events, and religious contexts all feature storytelling as a central social act.
77
+
78
+ **Storytelling lesson:** Brazilians are experienced audiences for live storytelling. They respond to:
79
+ - The storyteller's embodiment (not just words — presence, gesture, voice)
80
+ - The "good timing" (o timing certo — knowing when to pause, when to rush)
81
+ - The "sala de estar quality" — stories feel like they're being told in someone's living room
82
+
83
+ ---
84
+
85
+ ## Brazilian Cultural References for Storytellers
86
+
87
+ ### Narrative Archetypes Specific to Brazil
88
+
89
+ | Archetype | Description | Story Usage |
90
+ |-----------|-------------|------------|
91
+ | **O Malandro** | The witty trickster who survives through cleverness, not force | Comedy, underdog stories, anti-establishment narrative |
92
+ | **O Sertanejo** | The resilient Northeastern farmer — endures drought, poverty, with dignity | Resilience stories, national character, authentic Brazil |
93
+ | **O Carioca** | The urban, pleasure-loving, adaptable Rio dweller | Consumer brands, leisure, Brasilidade |
94
+ | **A Baiana** | The Afro-Brazilian woman as force of culture, food, and spiritual power | Cultural authority, tradition, identity |
95
+ | **O Empreendedor Popular** | The working-class entrepreneur who builds from nothing | Aspirational business stories, social mobility |
96
+
97
+ ### Key Cultural Narratives
98
+
99
+ **"Jeitinho Brasileiro"** — The distinctively Brazilian capacity to find creative solutions to obstacles, bend rules with charm, and improvise under constraint. In storytelling: the hero who lacks resources but not creativity; who wins through adaptability rather than power.
100
+
101
+ **"Saudade"** — The Portuguese-Brazilian concept of nostalgic longing — the bittersweet feeling for something loved and absent. In storytelling: the emotional depth that comes from acknowledging loss while celebrating connection. Stories that evoke saudade create profound emotional resonance.
102
+
103
+ **"Jogo de Cintura"** — Literally "hip game" — the ability to adapt fluidly to changing situations. In storytelling: the character who flexes, pivots, and finds a way through rather than fighting head-on.
104
+
105
+ ---
106
+
107
+ ## The Brazilian Creator Ecosystem
108
+
109
+ From MS-008 research — key references for understanding Brazilian content and storytelling culture:
110
+
111
+ ### Reference Storytellers by Domain
112
+
113
+ | Domain | Key Creators | Storytelling Style |
114
+ |--------|-------------|-------------------|
115
+ | **Empreendedorismo** | Flavio Augusto, Joel Jota | Aspirational journeys; social mobility narrative |
116
+ | **Financas pessoais** | Nathalia Arcuri (Me Poupe!), Primo Rico | Accessible explanation + personal story |
117
+ | **Tecnologia/Dev** | Fabio Akita, Filipe Deschamps | Deep-dive narrative; maker culture |
118
+ | **Marketing Digital** | Erico Rocha, Conrado Adolpho | Authority through system-building stories |
119
+ | **Bem-estar/Saude** | Multiple creators | Transformation narrative; vulnerability |
120
+
121
+ ### Brazilian Podcast Storytelling
122
+
123
+ Brazil is the **2nd largest podcast market in the world** (after the US). ~44% of the population listens weekly. This has cultivated a sophisticated audience for long-form narrative.
124
+
125
+ **Brazilian podcast narrative culture:**
126
+ - Longer average duration than US podcasts (Brazilians tolerate and prefer longer conversations)
127
+ - Personal story and vulnerability are core to host credibility
128
+ - Experts are trusted more when they tell their own failure stories
129
+ - Warmth between host and guest reads as authenticity, not unprofessionalism
130
+
131
+ ---
132
+
133
+ ## Platform-Specific Storytelling in Brazil
134
+
135
+ ### WhatsApp as Storytelling Channel
136
+
137
+ Brazil has a unique relationship with WhatsApp — it's used not just for messaging but for:
138
+ - Content distribution (news, tutorials, community groups)
139
+ - E-commerce storytelling (brands tell stories through WhatsApp broadcasts)
140
+ - Community narrative (groups form around shared experiences and values)
141
+
142
+ **Storytelling for WhatsApp:**
143
+ - Voice messages perform better than text (audio = intimacy)
144
+ - Short video (under 2 minutes) outperforms long video
145
+ - Personal tone — write and record as if to a friend
146
+ - No "corporate" language — readers will immediately forward to someone else or leave the group
147
+
148
+ ### Instagram Stories vs Feed
149
+
150
+ Brazilian Instagram users distinguish sharply between:
151
+ - **Feed:** The curated identity — more polished, aspiration-forward
152
+ - **Stories:** The authentic self — raw, quick, in-the-moment
153
+
154
+ **Brand storytelling implication:**
155
+ - Feed content should embody the brand's aspirational narrative
156
+ - Stories content should reveal the authentic, human, behind-the-scenes story
157
+ - The contrast between the two creates depth — audience sees both the vision and the reality
158
+
159
+ ---
160
+
161
+ ## Language Nuances for Brazilian Storytelling
162
+
163
+ From MS-008 research on PT-BR content nuances:
164
+
165
+ ### Registers and Contexts
166
+
167
+ | Register | Context | Tone |
168
+ |----------|---------|------|
169
+ | **Formal** | B2B enterprise, legal, financial documentation | "Prezado cliente," full conjugations |
170
+ | **Semiformal** | Professional newsletters, LinkedIn, B2B marketing | Natural, clear, minimal jargon |
171
+ | **Informal** | Social media, community content, creator content | Conversational, contractions, first person |
172
+ | **Coloquial** | TikTok, memes, close communities | Gírias, abbreviations, in-group language |
173
+
174
+ ### Common Mistakes in Brazilian Storytelling
175
+
176
+ **For non-native Portuguese speakers and AI tools:**
177
+ - Using "utilizador" (Portugal) instead of "usuário" (Brazil)
178
+ - Using "telemóvel" instead of "celular"
179
+ - Translating English idioms literally ("bottom line" → "linha de baixo" is meaningless)
180
+ - Too formal register for informal channel
181
+ - Not adapting date format (DD/MM/YYYY in Brazil, not MM/DD/YYYY)
182
+ - Using $ instead of R$
183
+
184
+ ### Regional Storytelling Variations
185
+
186
+ Brazil is continental (8.5 million km²). A story that lands in São Paulo may not land in Fortaleza or Porto Alegre.
187
+
188
+ | Region | Cultural Identity | Storytelling Notes |
189
+ |--------|------------------|-------------------|
190
+ | **Sudeste (SP, RJ, MG)** | Urban, cosmopolitan, aspirational | Fast pace, business language, global references |
191
+ | **Nordeste** | Deeply cultural, communal, warm | Regional pride, local identity, slower rhythm |
192
+ | **Sul** | European heritage, formal, proud | More formal tone, regional identity, tradition |
193
+ | **Norte/Centro-Oeste** | Nature, indigenous heritage, frontier | Environmental identity, community, nature narratives |
194
+
195
+ ---
196
+
197
+ ## Cultural Calendar for Brazilian Storytelling
198
+
199
+ From MS-008 Content Section 16.6:
200
+
201
+ | Month | Key Dates | Storytelling Opportunities |
202
+ |-------|-----------|--------------------------|
203
+ | Jan | Volta as aulas | Transformation/new beginning narratives |
204
+ | Fev | Carnaval | Celebration, joy, Brazilian identity, lightness |
205
+ | Mar | Dia da Mulher (8) | Empowerment, women's stories, diversity |
206
+ | Abr | Pascoa, Dia do Livro (18) | Contemplation, education, family |
207
+ | Mai | Dia das Maes | Most powerful emotional storytelling moment of the year |
208
+ | Jun | Dia dos Namorados (12), Festa Junina | Connection, romance, Brazilian tradition |
209
+ | Jul | Ferias escolares | Entertainment, family, escape |
210
+ | Ago | Dia dos Pais | Second most emotional storytelling moment |
211
+ | Set | Independencia (7) | National identity, pride, entrepreneurship |
212
+ | Out | Dia das Criancas (12) | Family, joy, nostalgia |
213
+ | Nov | Black Friday (ultima sexta), Consciencia Negra (20) | Biggest commercial opportunity + identity/racial justice |
214
+ | Dez | Natal, Ano Novo | Year retrospective, hope, future narrative |
215
+
216
+ **Storytelling note for Dia das Maes:** This is the highest-engagement day for emotional brand storytelling in Brazil. Case studies of successful campaigns consistently show: authentic emotional story > product feature. Natura's Dia das Maes campaigns are the gold standard.
217
+
218
+ ---
219
+
220
+ ## The Brazilification of Global Frameworks
221
+
222
+ When applying global storytelling frameworks to Brazilian audiences, certain adaptations improve performance:
223
+
224
+ | Framework | Brazilian Adaptation |
225
+ |-----------|---------------------|
226
+ | **Hero's Journey** | The Brazilian hero often wins through creativity and relationship ("jogo de cintura") rather than force. The mentor is often a community, not an individual. |
227
+ | **Kindra Hall 4 Stories** | Customer stories in Brazil need more relational warmth than US versions. The "specific moment" should include sensory, cultural details that signal Brazilian context. |
228
+ | **Sparkline (Duarte)** | "What Could Be" in Brazil often connects to social mobility, not just personal achievement. The vision resonates most when it includes community. |
229
+ | **Story Circle (Harmon)** | Brazilian stories often spend more time in the "Search" phase — the struggle is itself the cultural badge of honor. The "Finding" is more satisfying after longer struggle. |
230
+
231
+ ---
232
+
233
+ ## Cross-Reference
234
+
235
+ - **Brand Mythology Framework** — for building Brazilian brand narratives that connect to national cultural identity
236
+ - **Social Movement Narratives (Ganz)** — for storytelling connected to Brazilian social and political movements
237
+ - **Persuasion Narrative Techniques** — for the specific PT-BR power words and persuasion patterns