@jaimevalasek/aioson 1.6.0 → 1.7.2

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 (275) hide show
  1. package/CHANGELOG.md +74 -0
  2. package/README.md +729 -232
  3. package/docs/design-previews/pt.squarespace.com-homepage.html +889 -0
  4. package/docs/integrations/sdlc-genius-boundary.md +76 -0
  5. package/docs/integrations/sdlc-genius-eval-matrix.md +75 -0
  6. package/docs/integrations/sdlc-genius-install-checklist.md +93 -0
  7. package/docs/integrations/sdlc-genius-review-samples.md +86 -0
  8. package/docs/pt/README.md +3 -0
  9. package/docs/pt/agentes.md +1 -0
  10. package/docs/pt/comandos-cli.md +888 -2
  11. package/docs/pt/design-hybrid-forge.md +255 -6
  12. package/docs/pt/devlog-pipeline.md +270 -0
  13. package/docs/pt/fluxo-artefatos.md +178 -0
  14. package/docs/pt/hooks-session-guard.md +454 -0
  15. package/docs/pt/monitor-de-contexto.md +59 -5
  16. package/docs/pt/sdd-automation-scripts.md +557 -0
  17. package/docs/pt/site-forge.md +309 -0
  18. package/docs/pt/spec-learnings-pipeline.md +265 -0
  19. package/package.json +1 -1
  20. package/src/a2a/client.js +165 -0
  21. package/src/a2a/server.js +223 -0
  22. package/src/cli.js +235 -1
  23. package/src/commands/agent-audit.js +397 -0
  24. package/src/commands/agent-export-skill.js +229 -0
  25. package/src/commands/artifact-validate.js +189 -0
  26. package/src/commands/brief-gen.js +405 -0
  27. package/src/commands/brief-validate.js +65 -0
  28. package/src/commands/classify.js +256 -0
  29. package/src/commands/context-compact.js +49 -0
  30. package/src/commands/context-health.js +175 -0
  31. package/src/commands/context-monitor.js +71 -0
  32. package/src/commands/context-trim.js +177 -0
  33. package/src/commands/detect-test-runner.js +55 -0
  34. package/src/commands/devlog-export-brains.js +27 -0
  35. package/src/commands/devlog-process.js +292 -0
  36. package/src/commands/devlog-watch.js +131 -0
  37. package/src/commands/feature-close.js +165 -0
  38. package/src/commands/gate-check.js +228 -0
  39. package/src/commands/hooks-emit.js +253 -0
  40. package/src/commands/hooks-install.js +347 -0
  41. package/src/commands/learning-auto-promote.js +195 -0
  42. package/src/commands/learning-evolve.js +18 -9
  43. package/src/commands/learning-export.js +103 -0
  44. package/src/commands/learning-rollback.js +164 -0
  45. package/src/commands/live.js +25 -1
  46. package/src/commands/pattern-detect.js +33 -0
  47. package/src/commands/preflight-context.js +30 -0
  48. package/src/commands/preflight.js +208 -0
  49. package/src/commands/pulse-update.js +130 -0
  50. package/src/commands/runner-daemon.js +274 -0
  51. package/src/commands/runner-plan.js +70 -0
  52. package/src/commands/runner-queue-from-plan.js +166 -0
  53. package/src/commands/runner-queue.js +189 -0
  54. package/src/commands/runner-run.js +129 -0
  55. package/src/commands/runtime.js +47 -1
  56. package/src/commands/self-implement-loop.js +256 -0
  57. package/src/commands/session-guard.js +218 -0
  58. package/src/commands/sizing.js +165 -0
  59. package/src/commands/skill.js +65 -0
  60. package/src/commands/spec-checkpoint.js +177 -0
  61. package/src/commands/spec-status.js +79 -0
  62. package/src/commands/spec-sync.js +190 -0
  63. package/src/commands/spec-tasks.js +288 -0
  64. package/src/commands/squad-autorun.js +1220 -0
  65. package/src/commands/squad-bus.js +217 -0
  66. package/src/commands/squad-card.js +149 -0
  67. package/src/commands/squad-daemon.js +134 -0
  68. package/src/commands/squad-dependency-graph.js +164 -0
  69. package/src/commands/squad-review.js +106 -0
  70. package/src/commands/squad-scaffold.js +55 -0
  71. package/src/commands/squad-tool-register.js +157 -0
  72. package/src/commands/state-save.js +122 -0
  73. package/src/commands/update.js +2 -0
  74. package/src/commands/verify-gate.js +572 -0
  75. package/src/commands/workflow-execute.js +241 -0
  76. package/src/constants.js +22 -0
  77. package/src/install-profile.js +2 -2
  78. package/src/install-wizard.js +3 -2
  79. package/src/installer.js +6 -0
  80. package/src/lib/health-check.js +158 -0
  81. package/src/lib/hook-protocol.js +76 -0
  82. package/src/mcp/apps/squad-dashboard/app.js +163 -0
  83. package/src/mcp/apps/squad-dashboard/index.html +261 -0
  84. package/src/mcp/apps/squad-dashboard/mcp-manifest.json +23 -0
  85. package/src/mcp/resources/squad-state.js +130 -0
  86. package/src/preflight-engine.js +443 -0
  87. package/src/runner/cascade.js +97 -0
  88. package/src/runner/cli-launcher.js +109 -0
  89. package/src/runner/plan-importer.js +63 -0
  90. package/src/runner/queue-store.js +159 -0
  91. package/src/runtime-store.js +61 -3
  92. package/src/squad/agent-teams-adapter.js +264 -0
  93. package/src/squad/brief-validator.js +350 -0
  94. package/src/squad/bus-bridge.js +140 -0
  95. package/src/squad/context-compactor.js +265 -0
  96. package/src/squad/cross-ai-synthesizer.js +250 -0
  97. package/src/squad/hooks-generator.js +196 -0
  98. package/src/squad/inter-squad-events.js +175 -0
  99. package/src/squad/intra-bus.js +345 -0
  100. package/src/squad/learning-extractor.js +213 -0
  101. package/src/squad/pattern-detector.js +365 -0
  102. package/src/squad/preflight-context.js +296 -0
  103. package/src/squad/recovery-context.js +242 -71
  104. package/src/squad/reflection.js +365 -0
  105. package/src/squad/squad-scaffold.js +177 -0
  106. package/src/squad/state-manager.js +310 -0
  107. package/src/squad/task-decomposer.js +652 -0
  108. package/src/squad/verify-gate.js +303 -0
  109. package/src/updater.js +4 -5
  110. package/src/worker-runner.js +186 -1
  111. package/template/.aioson/agents/analyst.md +62 -1
  112. package/template/.aioson/agents/architect.md +61 -1
  113. package/template/.aioson/agents/copywriter.md +463 -0
  114. package/template/.aioson/agents/design-hybrid-forge.md +14 -0
  115. package/template/.aioson/agents/dev.md +271 -25
  116. package/template/.aioson/agents/deyvin.md +67 -8
  117. package/template/.aioson/agents/discovery-design-doc.md +44 -0
  118. package/template/.aioson/agents/genome.md +14 -0
  119. package/template/.aioson/agents/neo.md +83 -2
  120. package/template/.aioson/agents/orache.md +50 -4
  121. package/template/.aioson/agents/orchestrator.md +197 -1
  122. package/template/.aioson/agents/pm.md +35 -0
  123. package/template/.aioson/agents/product.md +50 -5
  124. package/template/.aioson/agents/profiler-enricher.md +14 -0
  125. package/template/.aioson/agents/profiler-forge.md +14 -0
  126. package/template/.aioson/agents/profiler-researcher.md +14 -0
  127. package/template/.aioson/agents/qa.md +273 -21
  128. package/template/.aioson/agents/setup.md +96 -10
  129. package/template/.aioson/agents/sheldon.md +131 -6
  130. package/template/.aioson/agents/site-forge.md +1753 -0
  131. package/template/.aioson/agents/squad.md +352 -0
  132. package/template/.aioson/agents/tester.md +53 -0
  133. package/template/.aioson/agents/ux-ui.md +203 -4
  134. package/template/.aioson/brains/README.md +128 -0
  135. package/template/.aioson/brains/_index.json +16 -0
  136. package/template/.aioson/brains/scripts/query.js +103 -0
  137. package/template/.aioson/brains/site-forge/visual-patterns.brain.json +205 -0
  138. package/template/.aioson/config.md +143 -13
  139. package/template/.aioson/constitution.md +33 -0
  140. package/template/.aioson/context/project-pulse.md +34 -0
  141. package/template/.aioson/docs/LAYERS.md +79 -0
  142. package/template/.aioson/docs/README.md +76 -0
  143. package/template/.aioson/docs/example-external-api-context.md +72 -0
  144. package/template/.aioson/genomes/copywriting.md +204 -0
  145. package/template/.aioson/locales/en/agents/architect.md +17 -0
  146. package/template/.aioson/locales/en/agents/dev.md +79 -13
  147. package/template/.aioson/locales/en/agents/orache.md +6 -0
  148. package/template/.aioson/locales/en/agents/orchestrator.md +24 -0
  149. package/template/.aioson/locales/en/agents/product.md +50 -0
  150. package/template/.aioson/locales/en/agents/sheldon.md +115 -0
  151. package/template/.aioson/locales/en/agents/squad.md +14 -0
  152. package/template/.aioson/locales/en/agents/tester.md +6 -0
  153. package/template/.aioson/locales/es/agents/analyst.md +2 -0
  154. package/template/.aioson/locales/es/agents/architect.md +19 -0
  155. package/template/.aioson/locales/es/agents/dev.md +64 -4
  156. package/template/.aioson/locales/es/agents/deyvin.md +2 -0
  157. package/template/.aioson/locales/es/agents/discovery-design-doc.md +2 -0
  158. package/template/.aioson/locales/es/agents/genome.md +2 -0
  159. package/template/.aioson/locales/es/agents/neo.md +2 -0
  160. package/template/.aioson/locales/es/agents/orache.md +2 -0
  161. package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
  162. package/template/.aioson/locales/es/agents/pair.md +2 -0
  163. package/template/.aioson/locales/es/agents/pm.md +2 -0
  164. package/template/.aioson/locales/es/agents/product.md +52 -0
  165. package/template/.aioson/locales/es/agents/profiler-enricher.md +2 -0
  166. package/template/.aioson/locales/es/agents/profiler-forge.md +2 -0
  167. package/template/.aioson/locales/es/agents/profiler-researcher.md +2 -0
  168. package/template/.aioson/locales/es/agents/qa.md +2 -0
  169. package/template/.aioson/locales/es/agents/setup.md +2 -0
  170. package/template/.aioson/locales/es/agents/sheldon.md +117 -0
  171. package/template/.aioson/locales/es/agents/squad.md +16 -0
  172. package/template/.aioson/locales/es/agents/tester.md +9 -0
  173. package/template/.aioson/locales/es/agents/ux-ui.md +2 -0
  174. package/template/.aioson/locales/fr/agents/analyst.md +2 -0
  175. package/template/.aioson/locales/fr/agents/architect.md +19 -0
  176. package/template/.aioson/locales/fr/agents/dev.md +64 -4
  177. package/template/.aioson/locales/fr/agents/deyvin.md +2 -0
  178. package/template/.aioson/locales/fr/agents/discovery-design-doc.md +2 -0
  179. package/template/.aioson/locales/fr/agents/genome.md +2 -0
  180. package/template/.aioson/locales/fr/agents/neo.md +2 -0
  181. package/template/.aioson/locales/fr/agents/orache.md +2 -0
  182. package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
  183. package/template/.aioson/locales/fr/agents/pair.md +2 -0
  184. package/template/.aioson/locales/fr/agents/pm.md +2 -0
  185. package/template/.aioson/locales/fr/agents/product.md +52 -0
  186. package/template/.aioson/locales/fr/agents/profiler-enricher.md +2 -0
  187. package/template/.aioson/locales/fr/agents/profiler-forge.md +2 -0
  188. package/template/.aioson/locales/fr/agents/profiler-researcher.md +2 -0
  189. package/template/.aioson/locales/fr/agents/qa.md +2 -0
  190. package/template/.aioson/locales/fr/agents/setup.md +2 -0
  191. package/template/.aioson/locales/fr/agents/sheldon.md +117 -0
  192. package/template/.aioson/locales/fr/agents/squad.md +16 -0
  193. package/template/.aioson/locales/fr/agents/tester.md +9 -0
  194. package/template/.aioson/locales/fr/agents/ux-ui.md +2 -0
  195. package/template/.aioson/locales/pt-BR/agents/analyst.md +64 -3
  196. package/template/.aioson/locales/pt-BR/agents/architect.md +42 -0
  197. package/template/.aioson/locales/pt-BR/agents/dev.md +147 -14
  198. package/template/.aioson/locales/pt-BR/agents/deyvin.md +47 -0
  199. package/template/.aioson/locales/pt-BR/agents/neo.md +62 -1
  200. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +158 -2
  201. package/template/.aioson/locales/pt-BR/agents/pm.md +95 -1
  202. package/template/.aioson/locales/pt-BR/agents/product.md +145 -18
  203. package/template/.aioson/locales/pt-BR/agents/qa.md +16 -0
  204. package/template/.aioson/locales/pt-BR/agents/setup.md +101 -18
  205. package/template/.aioson/locales/pt-BR/agents/sheldon.md +132 -1
  206. package/template/.aioson/locales/pt-BR/agents/squad.md +14 -0
  207. package/template/.aioson/locales/pt-BR/agents/tester.md +449 -0
  208. package/template/.aioson/rules/README.md +69 -0
  209. package/template/.aioson/rules/data-format-convention.md +136 -0
  210. package/template/.aioson/rules/example-monetary-values.md +30 -0
  211. package/template/.aioson/schemas/squad-manifest.schema.json +124 -3
  212. package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +2 -0
  213. package/template/.aioson/skills/design/pt.squarespace.com/.skill-meta.json +31 -0
  214. package/template/.aioson/skills/design/pt.squarespace.com/SKILL.md +66 -0
  215. package/template/.aioson/skills/design/pt.squarespace.com/references/components.md +368 -0
  216. package/template/.aioson/skills/design/pt.squarespace.com/references/design-tokens.md +150 -0
  217. package/template/.aioson/skills/design/pt.squarespace.com/references/motion.md +270 -0
  218. package/template/.aioson/skills/design/pt.squarespace.com/references/patterns.md +189 -0
  219. package/template/.aioson/skills/design/pt.squarespace.com/references/websites.md +165 -0
  220. package/template/.aioson/skills/marketing/references/anti-patterns.md +254 -0
  221. package/template/.aioson/skills/marketing/references/fascinations.md +192 -0
  222. package/template/.aioson/skills/marketing/references/five-acts.md +248 -0
  223. package/template/.aioson/skills/marketing/references/market-intelligence.md +198 -0
  224. package/template/.aioson/skills/marketing/references/offer-structure.md +203 -0
  225. package/template/.aioson/skills/marketing/references/one-belief.md +149 -0
  226. package/template/.aioson/skills/marketing/references/patterns.md +218 -0
  227. package/template/.aioson/skills/marketing/references/pms-research.md +193 -0
  228. package/template/.aioson/skills/marketing/vsl-craft.md +385 -0
  229. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +1 -0
  230. package/template/.aioson/skills/process/aioson-spec-driven/references/analyst.md +30 -0
  231. package/template/.aioson/skills/process/aioson-spec-driven/references/architect.md +23 -0
  232. package/template/.aioson/skills/process/aioson-spec-driven/references/dev.md +47 -0
  233. package/template/.aioson/skills/process/aioson-spec-driven/references/deyvin.md +27 -0
  234. package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +35 -0
  235. package/template/.aioson/skills/process/aioson-spec-driven/references/product.md +25 -0
  236. package/template/.aioson/skills/process/aioson-spec-driven/references/qa.md +30 -0
  237. package/template/.aioson/skills/process/aioson-spec-driven/references/sheldon.md +25 -0
  238. package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +4 -1
  239. package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +15 -0
  240. package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +32 -0
  241. package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +20 -0
  242. package/template/.aioson/skills/process/simplify/SKILL.md +173 -0
  243. package/template/.aioson/skills/static/context-budget-guide.md +46 -0
  244. package/template/.aioson/skills/static/harness-sensors.md +74 -0
  245. package/template/.aioson/skills/static/landing-page-deploy.md +192 -0
  246. package/template/.aioson/skills/static/landing-page-forge.md +730 -0
  247. package/template/.aioson/skills/static/multi-agent-patterns.md +43 -0
  248. package/template/.aioson/skills/static/react-motion-patterns.md +22 -0
  249. package/template/.aioson/skills/static/static-html-patterns/checklists.md +43 -0
  250. package/template/.aioson/skills/static/static-html-patterns/css-tokens.md +609 -0
  251. package/template/.aioson/skills/static/static-html-patterns/motion.md +193 -0
  252. package/template/.aioson/skills/static/static-html-patterns/premium.md +711 -0
  253. package/template/.aioson/skills/static/static-html-patterns/structure.md +209 -0
  254. package/template/.aioson/skills/static/static-html-patterns/utilities.md +190 -0
  255. package/template/.aioson/skills/static/static-html-patterns.md +58 -1913
  256. package/template/.aioson/skills/static/threejs-patterns.md +929 -0
  257. package/template/.aioson/skills/static/ui-ux-modern.md +1 -0
  258. package/template/.aioson/skills/static/web-research-cache.md +112 -0
  259. package/template/.aioson/tasks/implementation-plan.md +21 -1
  260. package/template/.aioson/tasks/squad-create.md +22 -0
  261. package/template/.aioson/tasks/squad-design.md +30 -0
  262. package/template/.aioson/templates/squads/digital-marketing-agency/template.json +96 -0
  263. package/template/.claude/commands/aioson/agent/design-hybrid-forge.md +5 -0
  264. package/template/.claude/commands/aioson/agent/orache.md +5 -0
  265. package/template/.claude/commands/aioson/agent/sheldon.md +5 -0
  266. package/template/.claude/commands/aioson/agent/site-forge.md +5 -0
  267. package/template/AGENTS.md +55 -3
  268. package/template/CLAUDE.md +31 -0
  269. package/template/OPENCODE.md +4 -0
  270. package/template/researchs/.gitkeep +0 -0
  271. package/template/.aioson/skills/design-system/components/SKILL.md:Zone.Identifier +0 -0
  272. package/template/.aioson/skills/design-system/dashboards/SKILL.md:Zone.Identifier +0 -0
  273. package/template/.aioson/skills/design-system/foundations/SKILL.md:Zone.Identifier +0 -0
  274. package/template/.aioson/skills/design-system/motion/SKILL.md:Zone.Identifier +0 -0
  275. package/template/.aioson/skills/design-system/patterns/SKILL.md:Zone.Identifier +0 -0
@@ -0,0 +1,254 @@
1
+ ---
2
+ name: copy-anti-patterns-reference
3
+ description: Copy anti-patterns — the most common conversion-killing mistakes in sales pages and landing pages. Loaded by @copywriter for quality validation before finalizing copy.
4
+ ---
5
+
6
+ # Copy Anti-Patterns — What Kills Conversion
7
+
8
+ Use this reference as a **validation checklist** after writing copy. Every anti-pattern here has been observed in real pages that underperformed. If your copy matches any pattern below, rewrite that section before delivering.
9
+
10
+ ---
11
+
12
+ ## 1. Generic headlines (the #1 killer)
13
+
14
+ ### The "Welcome" opener
15
+ > "Welcome to [Brand Name]"
16
+ > "Welcome to the future of [category]"
17
+
18
+ **Why it kills:** Zero information, zero curiosity. The prospect already knows they arrived — they need a reason to STAY.
19
+
20
+ ### The "Best Solution" claim
21
+ > "The best solution for your [need]"
22
+ > "The most powerful platform for [category]"
23
+
24
+ **Why it kills:** Unverifiable superlative. Every competitor says the same thing. The prospect's filter catches it as noise.
25
+
26
+ ### The "Powerful Features" list
27
+ > "Powerful features for modern teams"
28
+ > "Everything you need to grow your business"
29
+
30
+ **Why it kills:** Feature-first, not benefit-first. "Powerful" is subjective. "Everything" is vague.
31
+
32
+ ### The "Transform Your" promise
33
+ > "Transform your life with our method"
34
+ > "Revolutionize how you work"
35
+
36
+ **Why it kills:** "Transform" and "revolutionize" are so overused they've lost all meaning. No specific outcome = no click.
37
+
38
+ ### How to fix any generic headline
39
+ Ask: "What specific result does the prospect get, in what timeframe, and why should they believe it?"
40
+ Then write THAT as the headline.
41
+
42
+ ---
43
+
44
+ ## 2. Feature-first copy
45
+
46
+ ### The anti-pattern
47
+ ```
48
+ Our platform includes:
49
+ - AI-powered analytics
50
+ - 50+ integrations
51
+ - Real-time dashboards
52
+ - Custom workflows
53
+ - Team collaboration tools
54
+ ```
55
+
56
+ ### Why it kills
57
+ Features are HOW the product works. The prospect cares about WHAT CHANGES in their life. Features belong in the detail section AFTER the benefit has been established.
58
+
59
+ ### The fix
60
+ Convert every feature to a benefit:
61
+ ```
62
+ With [Product], you will:
63
+ - See exactly which campaigns generate revenue (not just clicks) → makes AI analytics meaningful
64
+ - Connect your existing tools in 5 minutes — no developer needed → makes integrations a benefit
65
+ - Catch problems before your clients do → makes dashboards relevant
66
+ ```
67
+
68
+ ### The rule
69
+ **Features are proof of benefits. Benefits are headlines. Features are supporting evidence.**
70
+
71
+ ---
72
+
73
+ ## 3. Fake urgency
74
+
75
+ ### The anti-pattern
76
+ > "Only 3 spots left!"
77
+ > "Offer ends tonight!"
78
+ > "Limited time — act now!"
79
+ > "This page will be taken down soon"
80
+
81
+ ...when none of these are true.
82
+
83
+ ### Why it kills
84
+ Sophisticated audiences (Level 3+) recognize fake scarcity instantly. It doesn't create urgency — it creates distrust. And distrust kills not just this sale, but the brand's future sales.
85
+
86
+ ### When urgency is legitimate
87
+ - Live event with real capacity limits → "47 of 100 seats remaining" (show real-time count)
88
+ - Price increase on a specific date → "Price goes to R$497 on March 15" (must actually increase)
89
+ - Launch window → "Enrollment closes Friday at midnight" (must actually close)
90
+ - Limited production run → "First 500 units ship in April — after that, 8-week waitlist"
91
+
92
+ ### The rule
93
+ **If the urgency isn't real, don't use it. If it IS real, prove it with specifics.**
94
+
95
+ ---
96
+
97
+ ## 4. Wall of text (no visual hierarchy)
98
+
99
+ ### The anti-pattern
100
+ A long paragraph of unbroken text explaining the product, its benefits, its features, the company's history, and the offer all in one block with no headings, no bullets, no spacing, and no visual breaks, expecting the reader to absorb everything in order.
101
+
102
+ ### Why it kills
103
+ People don't read sales pages — they scan. A wall of text gets zero scanning traction. The eye has nowhere to land.
104
+
105
+ ### The fix
106
+ - Break every concept into its own section with a heading
107
+ - Use bullet points for lists of 3+ items
108
+ - Keep paragraphs to 2-3 sentences max
109
+ - Add visual spacing between sections
110
+ - Use bold for key phrases the scanner should catch
111
+
112
+ ---
113
+
114
+ ## 5. Self-centered copy
115
+
116
+ ### The anti-pattern
117
+ > "We are proud to announce..."
118
+ > "Our team has worked hard to develop..."
119
+ > "At [Company], we believe in..."
120
+ > "Founded in 2015, we have been..."
121
+
122
+ ### Why it kills
123
+ The prospect doesn't care about the company. They care about themselves. Every sentence that starts with "we" is a sentence that doesn't serve the prospect.
124
+
125
+ ### The fix
126
+ Flip the subject:
127
+ - "We are proud to announce our new feature" → "You can now [do specific thing] in half the time"
128
+ - "Our team has worked hard" → "Your [problem] is now solved — here's how"
129
+ - "At [Company], we believe" → "[Specific result] is possible when [mechanism]"
130
+
131
+ ### The rule
132
+ **Count the "we/our" vs "you/your" ratio. If "we" wins, rewrite.**
133
+
134
+ ---
135
+
136
+ ## 6. No social proof (or fake proof)
137
+
138
+ ### The anti-pattern — Missing proof
139
+ A page with claims but zero evidence: no testimonials, no numbers, no case studies, no logos.
140
+
141
+ ### The anti-pattern — Fake proof
142
+ - Stock photo "testimonials" with generic names
143
+ - "Trusted by thousands" without a number
144
+ - Testimonials that sound like they were written by the marketing team
145
+ - Logos of companies that aren't actually clients
146
+
147
+ ### Why it kills
148
+ Claims without proof = marketing noise. The prospect has been trained by years of internet to filter unsupported claims. Missing proof means they assume the product doesn't work. Fake proof, if detected, destroys all trust permanently.
149
+
150
+ ### The fix
151
+ Use any proof you have, in order of strength:
152
+ 1. Specific result testimonials with name + photo + role
153
+ 2. Case studies with before/after numbers
154
+ 3. Raw numbers (users, revenue generated, success rate)
155
+ 4. Media mentions or recognizable logos
156
+ 5. Relevant certifications or credentials
157
+ 6. User-generated content (screenshots, tweets, reviews)
158
+
159
+ If you have NO proof: lead with a strong guarantee to compensate.
160
+
161
+ ---
162
+
163
+ ## 7. Multiple CTAs competing
164
+
165
+ ### The anti-pattern
166
+ ```
167
+ [Buy the Product] [Schedule a Demo] [Download the E-book]
168
+ [Join the Newsletter] [Watch the Video] [Read Our Blog]
169
+ ```
170
+
171
+ ### Why it kills
172
+ Choice paralysis. When everything is a CTA, nothing is a CTA. The prospect doesn't know what to do and does nothing.
173
+
174
+ ### The fix
175
+ - **One primary CTA** per page (the main action you want)
176
+ - **One secondary CTA** (lower commitment alternative — e.g., "not ready? download the free guide")
177
+ - Everything else is a link, not a button
178
+ - The primary CTA should appear 2-3 times on a long page (hero, after mechanism, after offer)
179
+
180
+ ---
181
+
182
+ ## 8. Abstract benefit language
183
+
184
+ ### The anti-pattern
185
+ - "Streamline your workflow"
186
+ - "Optimize your operations"
187
+ - "Leverage cutting-edge technology"
188
+ - "Drive meaningful results"
189
+ - "Unlock your potential"
190
+ - "Empower your team"
191
+
192
+ ### Why it kills
193
+ These phrases sound like they mean something, but they describe nothing specific. The prospect can't visualize what changes. Corporate jargon creates distance, not connection.
194
+
195
+ ### The fix
196
+ Replace every abstract phrase with a concrete scenario:
197
+ - "Streamline your workflow" → "Finish your weekly report in 20 minutes instead of 3 hours"
198
+ - "Optimize your operations" → "Cut your shipping costs by 30% without changing carriers"
199
+ - "Empower your team" → "Your team ships features 2x faster because they stop waiting for approvals"
200
+
201
+ ### The rule
202
+ **If you can't draw a picture of the benefit in the reader's mind, it's too abstract.**
203
+
204
+ ---
205
+
206
+ ## 9. No objection handling
207
+
208
+ ### The anti-pattern
209
+ A page that presents benefits and an offer but never addresses why the prospect might say no.
210
+
211
+ ### Why it kills
212
+ Every prospect has objections. If you don't address them, the prospect addresses them internally — and their internal answer is always "no."
213
+
214
+ ### Common objections every page should address
215
+ 1. "Is this a scam?" → Proof, guarantee, real contact info
216
+ 2. "Will this work for ME?" → "Who this is for" section + specific testimonials from similar people
217
+ 3. "What if it doesn't work?" → Guarantee
218
+ 4. "I don't have time/money" → Reframe: what is the cost of NOT acting?
219
+ 5. "How is this different?" → Mechanism explanation + competitor contrast
220
+
221
+ ---
222
+
223
+ ## 10. Lorem ipsum and placeholder syndrome
224
+
225
+ ### The anti-pattern
226
+ Copy that's technically complete but emotionally empty:
227
+ - "Your compelling headline goes here"
228
+ - "[Insert testimonial]"
229
+ - "Description of your amazing product"
230
+ - Sections that read like templates with blanks filled in mechanically
231
+
232
+ ### Why it kills
233
+ Placeholder copy signals that nobody cared enough to write real copy. If the creator doesn't care about the message, why should the prospect care about the product?
234
+
235
+ ### The rule
236
+ **Every word on the page must earn its place. If a section doesn't have real content, cut the section — don't fill it with filler.**
237
+
238
+ ---
239
+
240
+ ## Validation checklist
241
+
242
+ Before delivering copy, verify NONE of these are present:
243
+
244
+ - [ ] No generic headlines ("Welcome," "Best solution," "Powerful features")
245
+ - [ ] No feature-first sections (benefits lead, features support)
246
+ - [ ] No fake urgency (all scarcity is real and verifiable)
247
+ - [ ] No walls of text (headings, bullets, spacing present)
248
+ - [ ] No self-centered copy ("we/our" doesn't dominate "you/your")
249
+ - [ ] No missing or fake social proof
250
+ - [ ] No competing CTAs (one primary, one secondary max)
251
+ - [ ] No abstract benefit language (every benefit is visualizable)
252
+ - [ ] No unaddressed objections (top 3 objections handled)
253
+ - [ ] No placeholder/template text
254
+ - [ ] No congruence break with ad context (if provided)
@@ -0,0 +1,192 @@
1
+ ---
2
+ name: fascinations-reference
3
+ description: Fascinations (curiosity bullets) — high-converting bullet point formulas for offers, emails, and sales pages. Loaded by @copywriter when writing offer sections, bonus lists, or email subject lines.
4
+ ---
5
+
6
+ # Fascinations — Curiosity Bullets That Sell
7
+
8
+ ## What are fascinations?
9
+
10
+ Fascinations are bullet points designed to create irresistible curiosity about the content inside a product. They don't describe what's inside — they make the reader NEED to know what's inside.
11
+
12
+ The best fascination makes the prospect think: "I have to know this."
13
+ The worst fascination makes them think: "I already know this."
14
+
15
+ ---
16
+
17
+ ## The 12 formulas that work
18
+
19
+ ### 1. The Secret Of
20
+ > "The secret of [desirable group] that allows them to [desirable result] — and how you can use it starting today"
21
+
22
+ **Good:**
23
+ - "The secret of Japanese women over 60 who maintain the metabolism of a 25-year-old — and the one ingredient they all consume before 7 AM"
24
+ - "The secret freelancers earning R$30k/month use to find clients without a portfolio, a website, or a single social media post"
25
+
26
+ **Bad:**
27
+ - "The secret to success" (vague, no specificity)
28
+ - "The secret of productivity" (abstract noun, no desired result)
29
+
30
+ ### 2. The Reason Why
31
+ > "Why [common belief] is actually [counterintuitive truth] — and what to do instead"
32
+
33
+ **Good:**
34
+ - "Why drinking 8 glasses of water a day is actually making you MORE dehydrated — and the 3-ingredient drink that fixes it"
35
+ - "Why posting every day on Instagram is killing your reach — and the 2-post-per-week strategy that outperforms daily posting by 340%"
36
+
37
+ **Bad:**
38
+ - "Why most people fail" (no specificity, overused)
39
+ - "Why our product is different" (product-focused, not curiosity-focused)
40
+
41
+ ### 3. The Warning
42
+ > "Warning: never [common action] until you [condition] — or you risk [consequence]"
43
+
44
+ **Good:**
45
+ - "Warning: never sign a commercial lease until you check clause 14.3 — or you could be locked into a 5-year obligation with no exit"
46
+ - "Warning: never take vitamin D without this co-factor — Harvard researchers found it can actually INCREASE deficiency symptoms"
47
+
48
+ **Bad:**
49
+ - "Warning: don't miss this opportunity!" (fake urgency, no content)
50
+
51
+ ### 4. The Specific Number
52
+ > "[Specific number] [things] that [produce specific result]"
53
+
54
+ **Good:**
55
+ - "The 3 foods that spike your cortisol by 47% when eaten after 6 PM — and the one swap that eliminates the spike completely"
56
+ - "7 LinkedIn headline formulas that generated 12,000+ profile views in 30 days (I tested all 7 — #4 outperformed the rest by 3x)"
57
+ - "The 11-minute evening routine that reduced insomnia in 78% of participants in a University of Zurich study"
58
+
59
+ **Bad:**
60
+ - "10 tips for better health" (generic, no specificity in the result)
61
+ - "5 ways to make money" (vague outcome)
62
+
63
+ ### 5. The Unusual Ingredient
64
+ > "The [unexpected thing] that [produces desired result] — discovered by [authority/source]"
65
+
66
+ **Good:**
67
+ - "The kitchen spice that dissolves 23% more arterial plaque than statins — according to a 2023 study from Johns Hopkins"
68
+ - "The free Chrome extension that replaced my R$2,400/year email marketing tool — and actually converts better"
69
+ - "The 1940s sales letter technique that still outperforms AI-generated copy by 4:1 in split tests"
70
+
71
+ **Bad:**
72
+ - "The amazing thing that will change your life" (no specificity)
73
+ - "Our special ingredient" (hidden behind vagueness instead of curiosity)
74
+
75
+ ### 6. The Mistake
76
+ > "The #1 mistake [audience] makes when [action] — and how it's costing you [specific loss]"
77
+
78
+ **Good:**
79
+ - "The #1 mistake new landlords make in month 2 that costs an average of R$14,000 in the first year — and the one-paragraph clause that prevents it"
80
+ - "The warm-up mistake that 90% of runners make before every race — according to a biomechanics study, it increases injury risk by 34%"
81
+
82
+ **Bad:**
83
+ - "Common mistakes people make" (no specificity, no stakes)
84
+
85
+ ### 7. The Hidden Cause
86
+ > "The hidden reason [bad thing happens] — and it's NOT [what they think]"
87
+
88
+ **Good:**
89
+ - "The hidden reason your Facebook ads stop working after 3 days — and it's NOT ad fatigue, audience saturation, or your creative"
90
+ - "The hidden reason your back pain keeps coming back — it's NOT your posture, your mattress, or your core strength (page 47)"
91
+
92
+ **Bad:**
93
+ - "The real reason you're not succeeding" (vague, no specificity)
94
+
95
+ ### 8. The Time-Bound Result
96
+ > "How to [achieve result] in [specific timeframe] — even if [objection]"
97
+
98
+ **Good:**
99
+ - "How to write a complete sales page in 90 minutes — even if you've never written a single line of copy in your life"
100
+ - "How to go from 0 to 1,000 email subscribers in 14 days — even if you don't have a website, a product, or a social media following"
101
+
102
+ **Bad:**
103
+ - "How to get results fast" (no timeframe, no specificity)
104
+ - "How to be successful" (no specific result)
105
+
106
+ ### 9. The Contrast
107
+ > "Why [seemingly bad thing] works better than [seemingly good thing] for [result]"
108
+
109
+ **Good:**
110
+ - "Why an 'ugly' one-page website converts 3x more than a R$25,000 professionally designed site — and how to build one in 2 hours"
111
+ - "Why walking 20 minutes beats running 60 minutes for fat loss — the metabolic math your trainer won't tell you"
112
+
113
+ **Bad:**
114
+ - "Why our thing is better than their thing" (comparative claim, not curiosity)
115
+
116
+ ### 10. The Forbidden Knowledge
117
+ > "What [authority/industry] doesn't want you to know about [topic]"
118
+
119
+ **Good:**
120
+ - "What dermatologists privately admit about sunscreen that contradicts everything on their office pamphlets — and the one product they actually use on their own children"
121
+ - "What your real estate agent is legally not allowed to tell you about neighborhood pricing — and how to find the data yourself in 5 minutes"
122
+
123
+ **Bad:**
124
+ - "What THEY don't want you to know" (conspiracy tone, no specificity)
125
+
126
+ ### 11. The Page Number / Location
127
+ > "[Fascinating claim] — see page [X] / module [X] / minute [X]"
128
+
129
+ **Good:**
130
+ - "The exact email script that recovered R$47,000 in abandoned carts in one weekend — copy it word-for-word from page 34"
131
+ - "The 4-word phrase that turns a 'maybe later' into a 'where do I sign?' — demonstrated live in Module 3, minute 12:45"
132
+
133
+ **Why it works:** Implies the content is real, organized, and findable. Adds tangibility.
134
+
135
+ ### 12. The Paradox
136
+ > "How [seemingly contradictory pair] produces [desirable result]"
137
+
138
+ **Good:**
139
+ - "How eating MORE fat made 2,400 study participants lose an average of 8.2 kg in 12 weeks — without hunger, without exercise, without counting a single calorie"
140
+ - "How sending FEWER emails increased this e-commerce store's revenue by 61% — the 'less is more' sequence that defies marketing orthodoxy"
141
+
142
+ ---
143
+
144
+ ## Fascination quality checklist
145
+
146
+ Before using a fascination, verify:
147
+
148
+ - [ ] **Specificity:** Does it contain at least one specific number, name, or detail?
149
+ - [ ] **Curiosity gap:** Does it make the reader NEED to know the answer?
150
+ - [ ] **Believability:** Is the claim bold but not absurd?
151
+ - [ ] **Benefit clarity:** Is the desired outcome obvious?
152
+ - [ ] **No spoiler:** Does it tease without revealing the answer?
153
+ - [ ] **No filler words:** "Amazing," "incredible," "revolutionary" = filler. Cut them.
154
+
155
+ ---
156
+
157
+ ## Anti-pattern collection: Fascinations that kill conversion
158
+
159
+ ### Generic fascinations (no curiosity gap)
160
+ - "Learn about nutrition" → Who cares?
161
+ - "Discover our features" → Feature-focused
162
+ - "Get tips for your business" → Vague
163
+ - "Everything you need to know about X" → Overused, no specificity
164
+
165
+ ### Spoiler fascinations (answer revealed = no reason to buy)
166
+ - "Meditation reduces stress — and we'll show you how to meditate" → Already knows the method
167
+ - "Drink more water to improve your skin" → Already knows the solution
168
+
169
+ ### Hype fascinations (unbelievable = ignored)
170
+ - "The miracle molecule that cures ALL diseases"
171
+ - "Make R$100,000 in your first month guaranteed"
172
+ - "The secret that will make you a genius overnight"
173
+
174
+ ### Self-centered fascinations (about the product, not the prospect)
175
+ - "Our award-winning platform"
176
+ - "Built with cutting-edge technology"
177
+ - "Trusted by industry leaders" (without naming them)
178
+
179
+ ---
180
+
181
+ ## How many fascinations per section?
182
+
183
+ | Context | Quantity |
184
+ |---|---|
185
+ | Offer section (what you get) | 5–8 bullets per component |
186
+ | Bonus description | 3–4 bullets each |
187
+ | Email subject line testing | Write 10, pick best 3 |
188
+ | Sales page body | 1–2 per section as proof hooks |
189
+ | VSL script | 3–5 sprinkled in the mechanism act |
190
+
191
+ ### Ordering rule
192
+ Put the 2nd best fascination first and the best fascination last. The first one earns attention; the last one earns the click.