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,269 @@
1
+ # Persuasion & Narrative Techniques
2
+
3
+ > Version: 1.0.0 | Agent: park-howell, kindra-hall | Domain: copywriting, persuasion, narrative
4
+
5
+ ## Overview
6
+
7
+ Persuasion is narrative applied to behavior change. The techniques in this file bridge copywriting and storytelling — they are structural patterns that use narrative logic to move audiences toward specific actions.
8
+
9
+ Sources: copywriting traditions (AIDA, PAS, BAB), narrative theory, and Cialdini's persuasion science, as distilled from MS-008 Content research.
10
+
11
+ ---
12
+
13
+ ## The Fundamental Distinction: Content vs Copy
14
+
15
+ **Content** educates, entertains, and builds relationship over time. The goal is trust and authority.
16
+
17
+ **Copy** persuades and drives a specific, immediate action. The goal is conversion.
18
+
19
+ **Narrative serves both:** Stories are the mechanism by which content builds trust AND the mechanism by which copy achieves emotional persuasion. The difference is specificity of the ask.
20
+
21
+ ---
22
+
23
+ ## The 5 Levels of Customer Consciousness (Eugene Schwartz)
24
+
25
+ Before selecting a narrative technique, diagnose where your audience sits:
26
+
27
+ | Level | Awareness State | Their Internal Monologue | Narrative Approach |
28
+ |-------|----------------|--------------------------|-------------------|
29
+ | 1 | **Unaware** | "I don't know I have a problem" | Lead with story/provocative question — no product mention |
30
+ | 2 | **Problem Aware** | "I know I have this problem, I don't know solutions exist" | Story of suffering; plant hope |
31
+ | 3 | **Solution Aware** | "I know solutions exist; I don't know yours" | Differentiation story; your unique mechanism |
32
+ | 4 | **Product Aware** | "I know your product; I haven't bought" | Social proof stories; urgency; objection-handling narrative |
33
+ | 5 | **Most Aware** | "I know exactly what I want" | Direct offer; minimal story needed |
34
+
35
+ **The mistake:** Using a Level 5 approach (direct offer) with a Level 1 or 2 audience. They disengage because the story (their situation) hasn't been acknowledged first.
36
+
37
+ ---
38
+
39
+ ## AIDA — The Universal Narrative Arc
40
+
41
+ **Origin:** E. St. Elmo Lewis, 1898. The oldest documented persuasion framework.
42
+
43
+ ```
44
+ [A] ATTENTION — Stop the scroll; interrupt the pattern
45
+ [I] INTEREST — Maintain engagement; connect to their situation
46
+ [D] DESIRE — Create want; paint the vivid after
47
+ [A] ACTION — Direct the next step; make it easy
48
+ ```
49
+
50
+ ### AIDA as Story Structure
51
+
52
+ Each element of AIDA corresponds to a narrative function:
53
+
54
+ - **Attention:** The hook — a surprising fact, a provocative question, a vivid scene
55
+ - **Interest:** The story — their situation narrated back to them with recognition
56
+ - **Desire:** The transformation — the story of someone who got the result they want
57
+ - **Action:** The invitation — the next chapter starts here
58
+
59
+ ### AIDA Application by Format
60
+
61
+ | Format | Attention | Interest | Desire | Action |
62
+ |--------|-----------|---------|--------|--------|
63
+ | **Video ad** | First 3 seconds | Story of the problem | Demo or testimonial | Swipe up / link |
64
+ | **Email** | Subject line | Opening narrative hook | Feature story / case | Single CTA |
65
+ | **Blog post** | Headline | Introduction problem | Middle content | Closing CTA |
66
+ | **Landing page** | Hero headline | Subhead + opener | Social proof + features | Button |
67
+
68
+ ---
69
+
70
+ ## PAS — Problem, Agitate, Solve
71
+
72
+ **Origin:** Dan Kennedy (direct response marketing)
73
+
74
+ The most effective framework for emotionally engaging copy. Works because of **loss aversion** — humans feel the pain of problems more acutely than the pleasure of solutions.
75
+
76
+ ```
77
+ [P] PROBLEM — Name the specific pain with precise language
78
+ [A] AGITATE — Deepen the pain; show consequences, costs, frustrations
79
+ [S] SOLVE — Present your solution as the relief
80
+ ```
81
+
82
+ ### The Agitation is the Narrative
83
+
84
+ The most underused element is the Agitation. Most copy goes from Problem to Solution too quickly, skipping the emotional deepening that makes the solution feel necessary.
85
+
86
+ Effective agitation uses **narrative specificity:**
87
+ - Not "you're losing customers" but "every day you wake up and check your churn report and there it is — another 5, another 10 — leaving without telling you why"
88
+ - Not "it's hard to scale" but "you've hired, trained, redone the process three times. Every new person takes 60 days to get up to speed and then they leave."
89
+
90
+ ### PAS + Story (The Narrative PAS)
91
+
92
+ Upgrade PAS by embedding a story in the Agitation:
93
+
94
+ ```
95
+ PROBLEM: [State the situation in 1-2 sentences]
96
+ STORY: "Here's what [customer just like you] experienced..."
97
+ [Tell the specific story of the problem's consequence]
98
+ AGITATE: Connect their emotion to the story: "Sound familiar?"
99
+ SOLVE: "That's exactly why we built [solution]"
100
+ ```
101
+
102
+ ---
103
+
104
+ ## BAB — Before, After, Bridge
105
+
106
+ **Origin:** Copywriting tradition (origin disputed)
107
+
108
+ The transformation framework. Shows the contrast between current reality and desired future, then positions your solution as the bridge.
109
+
110
+ ```
111
+ [B] BEFORE — The painful current state
112
+ [A] AFTER — The desired future state
113
+ [B] BRIDGE — How to get from one to the other
114
+ ```
115
+
116
+ ### BAB as Mini-Narrative
117
+
118
+ Each element is a story beat:
119
+ - **Before:** The ordinary world — with specific, recognizable details
120
+ - **After:** The new bliss — vivid, specific, emotionally resonant
121
+ - **Bridge:** The mentor's gift — the mechanism of transformation
122
+
123
+ ### BAB Application
124
+
125
+ **Email subject line:**
126
+ "Before: 2 hours building reports. After: 5 minutes. [Bridge = product name]"
127
+
128
+ **Social post opening:**
129
+ "A year ago I was manually pulling data from 6 platforms every Monday morning.
130
+ Today it's automated. Here's what changed: [bridge]"
131
+
132
+ **Sales page:**
133
+ "Right now you're [specific before situation].
134
+ Imagine [specific after situation].
135
+ [Product] gets you there by [bridge mechanism]."
136
+
137
+ ---
138
+
139
+ ## 4Ps — Promise, Picture, Proof, Push
140
+
141
+ **Origin:** Henry Hoke Sr. (direct mail tradition)
142
+
143
+ Most effective for longer-form persuasion: landing pages, sales emails, pitch decks.
144
+
145
+ ```
146
+ [P] PROMISE — A bold, specific, believable promise
147
+ [P] PICTURE — Paint the vivid scenario of the result
148
+ [P] PROOF — Evidence that the promise is real
149
+ [P] PUSH — Urgency and the specific next action
150
+ ```
151
+
152
+ ### 4Ps Narrative Layer
153
+
154
+ Each P is stronger with narrative:
155
+ - **Promise as story:** "In the next 12 months, [specific transformation]" — not a claim, a story of the future
156
+ - **Picture as scene:** Don't just list benefits — describe a specific day in the life after transformation
157
+ - **Proof as customer story:** Not testimonial quotes alone — a mini narrative of a real customer
158
+ - **Push as Story of Now:** Why act today — what changes, what closes, what's possible only now
159
+
160
+ ---
161
+
162
+ ## Before-After-Bridge vs BAB
163
+
164
+ Distinction in application:
165
+
166
+ | Framework | Emphasis | Best For |
167
+ |-----------|---------|---------|
168
+ | **BAB** (copy) | Contrast between states | Short-form ads, emails, social |
169
+ | **Normal-Explosion-New Normal** (Hall) | The moment of change | Business storytelling, sales meetings |
170
+ | **What Is / What Could Be** (Duarte) | Repeated oscillation | Presentations, keynotes |
171
+
172
+ All three are structurally related — they're variations of the same "contrast creates meaning" principle.
173
+
174
+ ---
175
+
176
+ ## Cialdini's 7 Principles in Narrative Form
177
+
178
+ Robert Cialdini's principles of persuasion ("Influence", 1984; "Pre-Suasion", 2016) work more powerfully when delivered through story rather than assertion:
179
+
180
+ ### Reciprocity as Story
181
+ **Assertion:** "We provide great free resources"
182
+ **Story:** "When [specific person] was struggling with [X], they found our guide. Six months later, they sent us this message: [quote]. We never asked for anything. That's who we are."
183
+
184
+ ### Social Proof as Story
185
+ **Assertion:** "10,000 customers trust us"
186
+ **Story:** Tell one of the 10,000 — specifically. The number doesn't persuade. The individual story does.
187
+
188
+ ### Authority as Story
189
+ **Assertion:** "We have 15 years of experience"
190
+ **Story:** "In 2009, when the market crashed, we made a bet that [most experts disagreed with]. Here's what we learned: [insight only experience provides]"
191
+
192
+ ### Scarcity as Story
193
+ **Assertion:** "Only 3 spots left"
194
+ **Story:** "The last time we opened a cohort, [person] joined on the last day. She told us later: 'I almost didn't. I'm glad I did.' We can't guarantee there's another cohort this year."
195
+
196
+ ### Commitment and Consistency
197
+ In narrative: tell a small story that leads the reader to agree to a small premise, then escalate. Each agreement builds toward the larger commitment.
198
+
199
+ ### Liking Through Story
200
+ Vulnerability in personal narrative creates liking faster than any achievement. The Story of Self that includes failure, confusion, or human imperfection is more persuasive than the polished success narrative.
201
+
202
+ ### Unity (Ganz Connection)
203
+ Cialdini's 7th principle (added 2016): "We" identity — the deepest persuasion is belonging to a group. The Story of Us (Ganz) is the narrative embodiment of Unity.
204
+
205
+ ---
206
+
207
+ ## Narrative Power Words (PT-BR Context)
208
+
209
+ From MS-008 research — words that trigger emotional response in Brazilian Portuguese:
210
+
211
+ | Emotion | High-Impact Words |
212
+ |---------|-----------------|
213
+ | **Urgency** | Agora, hoje, ultimo, imediato, deadline, expira |
214
+ | **Exclusivity** | Secreto, interno, VIP, restrito, convite |
215
+ | **Curiosity** | Revelado, surpreendente, pouco conhecido, segredo |
216
+ | **Security** | Garantido, comprovado, testado, certificado, seguro |
217
+ | **Novelty** | Novo, lancamento, revolucionario, inedito, primeiro |
218
+ | **Ease** | Simples, rapido, facil, passo-a-passo, automatico |
219
+ | **Value** | Gratis, desconto, economize, sem custo, bonus |
220
+
221
+ **Storytelling note:** Power words are most effective when embedded in narrative, not used as isolated triggers. "Revelado" in a headline works. "Revelado" in a story about the moment someone discovered a hidden truth works three times as hard.
222
+
223
+ ---
224
+
225
+ ## The Pixar Story Template
226
+
227
+ A narrative structure used for all Pixar films — and adaptable to any short-form story:
228
+
229
+ ```
230
+ Once upon a time _______.
231
+ Every day _______.
232
+ Until one day _______.
233
+ Because of that _______.
234
+ Because of that _______.
235
+ Until finally _______.
236
+ ```
237
+
238
+ **In content marketing:**
239
+ ```
240
+ Once upon a time, [customer] struggled with [problem].
241
+ Every day they [attempted solution that wasn't working].
242
+ Until one day they [discovered your product/approach].
243
+ Because of that [first win].
244
+ Because of that [growing momentum].
245
+ Until finally [transformation achieved].
246
+ ```
247
+
248
+ ---
249
+
250
+ ## Made to Stick — The SUCCESs Model (Heath Brothers)
251
+
252
+ From "Made to Stick" (2007) — the six qualities of ideas that stick:
253
+
254
+ | Letter | Quality | Narrative Application |
255
+ |--------|---------|----------------------|
256
+ | **S** | Simple | One core message per story |
257
+ | **U** | Unexpected | Break a pattern in the opening |
258
+ | **C** | Concrete | Specific details over abstractions |
259
+ | **C** | Credible | Source credibility, statistics, specificity |
260
+ | **E** | Emotional | Make the audience feel something |
261
+ | **S** | Stories | Embed the message in narrative |
262
+
263
+ ---
264
+
265
+ ## Cross-Reference
266
+
267
+ - **Oren Klaff's STRONG Method** applies these persuasion principles in high-stakes pitch contexts
268
+ - **Nancy Duarte's Sparkline** applies BAB's Before/After contrast in presentation structure
269
+ - **Park Howell's ABT** is the compression of PAS into narrative diagnosis form
@@ -0,0 +1,191 @@
1
+ # Social Movement Narratives — Marshall Ganz
2
+
3
+ > Version: 1.0.0 | Agent: marshall-ganz | Domain: movement-organizing, public-narrative
4
+
5
+ ## Overview
6
+
7
+ Marshall Ganz spent 16 years as an organizer with Cesar Chavez and the United Farm Workers, then became a faculty member at Harvard Kennedy School. His framework — Public Narrative — is the most powerful methodology for translating personal values into collective action.
8
+
9
+ Ganz's insight: **leaders don't organize people around ideas. They organize people around stories.** A policy position cannot move people to sacrifice. A story about why that policy matters — rooted in specific human experience — can.
10
+
11
+ Obama's 2008 presidential campaign used Ganz's framework at scale. It's also used by climate activists, union organizers, faith communities, and social entrepreneurs worldwide.
12
+
13
+ ---
14
+
15
+ ## The Public Narrative Framework
16
+
17
+ Public Narrative consists of three interlocking stories that together create the conditions for collective action:
18
+
19
+ ```
20
+ STORY OF SELF — Why I was called to lead
21
+ STORY OF US — The shared values that unite us
22
+ STORY OF NOW — The urgent challenge we face together
23
+ ```
24
+
25
+ These are not separate speeches. They are three movements in a single narrative arc that builds from personal to communal to urgent.
26
+
27
+ ---
28
+
29
+ ## Story of Self — Why I Was Called
30
+
31
+ ### Purpose
32
+ Establish leadership credibility not through credentials, but through demonstrated values. The Story of Self answers: "Why should we listen to you? Why are you the one to lead on this?"
33
+
34
+ ### Structure
35
+ A narrative from the leader's own life that reveals the values driving their work — specifically, the moment when they were called to this work.
36
+
37
+ **The call narrative:** A story of a specific moment when the leader faced a choice — a challenge, an injustice, a loss, or an opportunity. The choice they made reveals their values. The consequence of that choice reveals what's at stake.
38
+
39
+ ### Key Elements
40
+
41
+ 1. **A specific moment** — Not "I grew up poor" but "The day the bank knocked on the door and my father wasn't home, I answered. I was nine years old."
42
+ 2. **A genuine challenge** — Something was at risk, something was difficult
43
+ 3. **A choice made** — The leader chose to act (or not act — learning from not acting)
44
+ 4. **An outcome** — What happened as a result
45
+ 5. **The learning** — What this moment taught about the value at stake
46
+
47
+ ### Common Mistakes
48
+
49
+ - **Biography instead of narrative** — Listing background facts is not a Story of Self. The story must have a specific challenge, a choice, and a consequence.
50
+ - **Too polished** — Rehearsed, controlled delivery suggests performance. The Story of Self works when it feels vulnerable and true.
51
+ - **Credentials as story** — "I have 20 years of experience" is not a story. The experience must be embodied in a narrative moment.
52
+ - **Abstract values** — "I believe in justice" is a statement. The story must show a concrete moment when justice was at stake.
53
+
54
+ ---
55
+
56
+ ## Story of Us — Our Shared Values
57
+
58
+ ### Purpose
59
+ Connect the leader's individual story to the shared story of the community — the values, experiences, and challenges that make "us" an "us." The Story of Us answers: "Why do we care about this together?"
60
+
61
+ ### Structure
62
+ Draw on shared experiences, challenges, and values that unite the group. This is not about demographics — it's about the experiences and values that create communal identity.
63
+
64
+ **Key insight:** "Us" is always defined by contrast. "We" the farmworkers who deserve dignity vs. "them" the systems that deny it. The contrast clarifies the shared identity.
65
+
66
+ ### Elements
67
+
68
+ 1. **Shared experience** — "We all know what it's like to [common challenge]"
69
+ 2. **Shared values** — "That's why we believe [specific value]"
70
+ 3. **Shared history** — "We've shown who we are when [previous moment of courage or achievement]"
71
+ 4. **Collective identity** — "That's who we are as [group name/movement name]"
72
+
73
+ ### Building "Us" Without "Them"
74
+
75
+ Effective movements build strong "Us" identity. They may name the "Them" (the problem, the system, the power structure) — but they are careful not to define themselves only in opposition. The strongest identity is positive: "We are for X" not just "We are against Y."
76
+
77
+ ---
78
+
79
+ ## Story of Now — The Urgent Challenge
80
+
81
+ ### Purpose
82
+ Translate values into action by creating a specific, urgent call. The Story of Now answers: "What must we do, and why must we do it now?"
83
+
84
+ ### Structure
85
+
86
+ 1. **The specific challenge** — Not a general problem, but this problem, right now
87
+ 2. **The hopeful choice** — The action available to us
88
+ 3. **The hopeful outcome** — Why taking this action can make a difference
89
+ 4. **The specific ask** — What exactly the audience should do, when, and how
90
+
91
+ ### The Urgency Principle
92
+
93
+ Without urgency, even moved people don't act. Urgency is created by:
94
+ - **Time constraint** — "The vote is tomorrow"
95
+ - **Consequential moment** — "This is the year we can change this"
96
+ - **Momentum** — "We have never been this close"
97
+ - **Threshold** — "We need 500 more signatures to trigger a hearing"
98
+
99
+ ### The Hopeful Frame
100
+
101
+ Ganz is explicit: the Story of Now must be hopeful, not despairing. Fear can motivate individual action but does not build collective resilience. The Story of Now says: "This is hard. It is urgent. AND we can do it, because [evidence of capacity]."
102
+
103
+ ---
104
+
105
+ ## Why Story Works for Organizing
106
+
107
+ ### The Emotional-Values Connection
108
+
109
+ Ganz identifies two types of emotion in narrative:
110
+ - **Fear/isolation** — Paralyzes action; turns inward
111
+ - **Anger/solidarity** — Energizes action; turns outward toward collective change
112
+
113
+ Effective organizing stories move from fear/isolation toward anger/solidarity — not through manipulation, but by showing that the audience is not alone and that action is possible.
114
+
115
+ ### From Values to Action
116
+
117
+ The story pathway:
118
+ ```
119
+ Personal experience → Specific emotion → Values revealed
120
+ Values recognized by audience → Collective identity formed
121
+ Collective identity + Urgent challenge → Motivation to act
122
+ Motivation + Specific ask → Action taken
123
+ ```
124
+
125
+ Without the story, you're asking people to act on abstract principle. With the story, you're asking them to act on lived recognition.
126
+
127
+ ---
128
+
129
+ ## Storytelling for Leadership vs. Marketing
130
+
131
+ Ganz's framework is about **leadership**, not marketing. The distinction matters:
132
+
133
+ | Dimension | Marketing Story | Leadership Story |
134
+ |-----------|----------------|-----------------|
135
+ | Goal | Change behavior (purchase) | Change identity (who we are together) |
136
+ | Direction | Brand to customer | Leader to community |
137
+ | Orientation | Product benefit | Shared values and challenge |
138
+ | Duration | Transactional | Relational |
139
+ | Trust | Built through consistency | Built through vulnerability |
140
+
141
+ However, the structural insights (specific moment, genuine challenge, values revealed, collective identity, urgent action) apply to both.
142
+
143
+ ---
144
+
145
+ ## Applying Public Narrative to Business Leadership
146
+
147
+ ### For Organizational Change
148
+
149
+ When a leader needs to mobilize a team around change:
150
+
151
+ **Story of Self:** The leader's own experience that taught them why this change matters — not the business case, but the human story behind it.
152
+
153
+ **Story of Us:** The team's shared history — past challenges overcome, shared values demonstrated, collective capacity proven.
154
+
155
+ **Story of Now:** The specific challenge facing the organization and the specific action the team must take.
156
+
157
+ ### For Startup Founder Communication
158
+
159
+ - **Story of Self:** Why the founder started this company (the real story, with a specific moment)
160
+ - **Story of Us:** The community the startup serves (their shared problem, their shared aspiration)
161
+ - **Story of Now:** Why this problem must be solved now, and why this team is the one to solve it
162
+
163
+ ### For Activist Campaigns
164
+
165
+ The framework is most powerful when:
166
+ 1. The leader delivers their Story of Self authentically (not a speech — a genuine moment)
167
+ 2. The Us story connects to specific shared experiences (not vague "we all want a better world")
168
+ 3. The Now story has a specific, achievable ask with a clear deadline
169
+
170
+ ---
171
+
172
+ ## The Three Stories as a Full Speech
173
+
174
+ A well-constructed 10-minute public narrative speech:
175
+
176
+ | Section | Duration | Content |
177
+ |---------|----------|---------|
178
+ | Story of Self | 2-3 minutes | One specific challenge → choice → outcome |
179
+ | Transition | 30 seconds | "My story is not unique. You know this story too." |
180
+ | Story of Us | 2-3 minutes | Our shared experience and values |
181
+ | Transition | 30 seconds | "That's why we can't let this moment pass." |
182
+ | Story of Now | 2-3 minutes | The challenge, the choice, the specific ask |
183
+ | Close | 30 seconds | The hopeful vision of what becomes possible |
184
+
185
+ ---
186
+
187
+ ## Cross-Reference
188
+
189
+ - **Joseph Campbell's Monomyth** provides the archetypal depth that Ganz's Story of Self draws from
190
+ - **Nancy Duarte's Sparkline** applies when the public narrative is delivered as a designed presentation
191
+ - **Kindra Hall's 4 Stories** provides structure for the business version of the founder and purpose stories