@lucapimenta/copy-chief-black 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.en.md +185 -0
- package/README.md +211 -0
- package/bin/cli.js +98 -0
- package/framework/.aios-core/.dispatch-iterations.json +8 -0
- package/framework/.aios-core/constitution.md +171 -0
- package/framework/.aios-core/copy-chief/activation/agent-activation-pipeline.js +426 -0
- package/framework/.aios-core/copy-chief/activation/frontmatter-validator.js +81 -0
- package/framework/.aios-core/copy-chief/activation/knowledge-loader.js +608 -0
- package/framework/.aios-core/copy-chief/config/config-cache.js +145 -0
- package/framework/.aios-core/copy-chief/config/config-cache.ts +168 -0
- package/framework/.aios-core/copy-chief/config/config-loader.js +188 -0
- package/framework/.aios-core/copy-chief/config/config-loader.ts +250 -0
- package/framework/.aios-core/copy-chief/config/config-resolver.js +196 -0
- package/framework/.aios-core/copy-chief/config/config-resolver.ts +329 -0
- package/framework/.aios-core/copy-chief/config/env-interpolator.js +88 -0
- package/framework/.aios-core/copy-chief/config/env-interpolator.ts +125 -0
- package/framework/.aios-core/copy-chief/config/merge-utils.js +68 -0
- package/framework/.aios-core/copy-chief/config/merge-utils.ts +94 -0
- package/framework/.aios-core/copy-chief/config/mutability-guard.js +112 -0
- package/framework/.aios-core/copy-chief/context/aios-session-state.js +318 -0
- package/framework/.aios-core/copy-chief/context/aios-session-state.ts +381 -0
- package/framework/.aios-core/copy-chief/context/context-manager.js +316 -0
- package/framework/.aios-core/copy-chief/context/context-manager.ts +374 -0
- package/framework/.aios-core/copy-chief/context/context-tiering.js +196 -0
- package/framework/.aios-core/copy-chief/context/context-tiering.ts +268 -0
- package/framework/.aios-core/copy-chief/copy/copy-versioning.js +131 -0
- package/framework/.aios-core/copy-chief/copy/copy-versioning.ts +162 -0
- package/framework/.aios-core/copy-chief/copy/ids.js +231 -0
- package/framework/.aios-core/copy-chief/copy/ids.ts +345 -0
- package/framework/.aios-core/copy-chief/dispatch/dispatch-queue-manager.js +562 -0
- package/framework/.aios-core/copy-chief/etl/etl-helpers.js +539 -0
- package/framework/.aios-core/copy-chief/etl/etl-helpers.ts +855 -0
- package/framework/.aios-core/copy-chief/etl/platform-actors.js +215 -0
- package/framework/.aios-core/copy-chief/etl/platform-actors.ts +254 -0
- package/framework/.aios-core/copy-chief/execution/condition-evaluator.js +154 -0
- package/framework/.aios-core/copy-chief/execution/copy-prompt-builder.js +253 -0
- package/framework/.aios-core/copy-chief/execution/copy-workflow-executor.js +399 -0
- package/framework/.aios-core/copy-chief/execution/rate-limit-manager.js +277 -0
- package/framework/.aios-core/copy-chief/execution/wave-analyzer.js +285 -0
- package/framework/.aios-core/copy-chief/execution/workflow-validator.js +154 -0
- package/framework/.aios-core/copy-chief/feedback/validation-feedback.js +331 -0
- package/framework/.aios-core/copy-chief/feedback/validation-feedback.ts +392 -0
- package/framework/.aios-core/copy-chief/gates/checklist-generator.js +420 -0
- package/framework/.aios-core/copy-chief/gates/commit-validator.js +203 -0
- package/framework/.aios-core/copy-chief/gates/commit-validator.ts +239 -0
- package/framework/.aios-core/copy-chief/gates/copy-output-validator.js +204 -0
- package/framework/.aios-core/copy-chief/gates/copy-output-validator.ts +244 -0
- package/framework/.aios-core/copy-chief/gates/delivery-gate.js +147 -0
- package/framework/.aios-core/copy-chief/gates/focus-area-recommender.js +285 -0
- package/framework/.aios-core/copy-chief/gates/gate-audit.js +121 -0
- package/framework/.aios-core/copy-chief/gates/gate-evaluator.js +470 -0
- package/framework/.aios-core/copy-chief/gates/gate-evaluator.ts +575 -0
- package/framework/.aios-core/copy-chief/gates/gate-prereq.js +235 -0
- package/framework/.aios-core/copy-chief/gates/gate-prereq.ts +274 -0
- package/framework/.aios-core/copy-chief/gates/gate-resolver.js +252 -0
- package/framework/.aios-core/copy-chief/gates/gate-resolver.ts +321 -0
- package/framework/.aios-core/copy-chief/gates/gate-result-parser.js +81 -0
- package/framework/.aios-core/copy-chief/gates/gate-result-parser.ts +106 -0
- package/framework/.aios-core/copy-chief/gates/gate-trend-analyzer.js +122 -0
- package/framework/.aios-core/copy-chief/gates/mecanismo-gate.js +184 -0
- package/framework/.aios-core/copy-chief/gates/mecanismo-gate.ts +259 -0
- package/framework/.aios-core/copy-chief/gates/production-gates.js +488 -0
- package/framework/.aios-core/copy-chief/gates/production-gates.ts +655 -0
- package/framework/.aios-core/copy-chief/gates/quality-gate-manager.js +462 -0
- package/framework/.aios-core/copy-chief/gates/quality-gate-manager.ts +615 -0
- package/framework/.aios-core/copy-chief/gates/weighted-gates.js +792 -0
- package/framework/.aios-core/copy-chief/gates/weighted-gates.ts +1103 -0
- package/framework/.aios-core/copy-chief/handoff/handoff-engine.js +363 -0
- package/framework/.aios-core/copy-chief/handoff/handoff-engine.ts +562 -0
- package/framework/.aios-core/copy-chief/handoff/handoff-protocol.js +377 -0
- package/framework/.aios-core/copy-chief/health/checks/data-tier-integrity.js +106 -0
- package/framework/.aios-core/copy-chief/health/checks/hooks-heartbeat.js +120 -0
- package/framework/.aios-core/copy-chief/health/checks/synapse-performance.js +83 -0
- package/framework/.aios-core/copy-chief/health/doc-rot-scanner.js +687 -0
- package/framework/.aios-core/copy-chief/health/doc-rot-scanner.ts +853 -0
- package/framework/.aios-core/copy-chief/health/manifest-validator.js +156 -0
- package/framework/.aios-core/copy-chief/ids/mcp-circuit-breaker.js +246 -0
- package/framework/.aios-core/copy-chief/index.js +142 -0
- package/framework/.aios-core/copy-chief/integrations/clickup-client.js +168 -0
- package/framework/.aios-core/copy-chief/integrations/clickup-client.ts +226 -0
- package/framework/.aios-core/copy-chief/learning/gotcha-registry.js +398 -0
- package/framework/.aios-core/copy-chief/learning/gotchas-memory.js +430 -0
- package/framework/.aios-core/copy-chief/learning/gotchas-memory.ts +517 -0
- package/framework/.aios-core/copy-chief/learning/journey-tracker.js +287 -0
- package/framework/.aios-core/copy-chief/learning/journey-tracker.ts +373 -0
- package/framework/.aios-core/copy-chief/learning/self-learning.js +460 -0
- package/framework/.aios-core/copy-chief/learning/self-learning.ts +646 -0
- package/framework/.aios-core/copy-chief/lifecycle/copy-data-lifecycle.js +305 -0
- package/framework/.aios-core/copy-chief/lifecycle/session-digest.js +294 -0
- package/framework/.aios-core/copy-chief/lifecycle/session-digest.ts +327 -0
- package/framework/.aios-core/copy-chief/lifecycle/session-handoff.js +289 -0
- package/framework/.aios-core/copy-chief/lifecycle/session-handoff.ts +330 -0
- package/framework/.aios-core/copy-chief/memory/agent-memory-manager.js +313 -0
- package/framework/.aios-core/copy-chief/memory/agent-memory-writeback.js +178 -0
- package/framework/.aios-core/copy-chief/memory/index-updater.js +104 -0
- package/framework/.aios-core/copy-chief/memory/memory-compactor.js +152 -0
- package/framework/.aios-core/copy-chief/memory/memory-populator.js +215 -0
- package/framework/.aios-core/copy-chief/memory/session-digest-extractor.js +462 -0
- package/framework/.aios-core/copy-chief/observability/copy-status-writer.js +219 -0
- package/framework/.aios-core/copy-chief/observability/dashboard-client.js +302 -0
- package/framework/.aios-core/copy-chief/observability/dashboard-client.ts +366 -0
- package/framework/.aios-core/copy-chief/observability/dashboard-emitter.js +178 -0
- package/framework/.aios-core/copy-chief/observability/semantic-translator.js +264 -0
- package/framework/.aios-core/copy-chief/observability/semantic-translator.ts +354 -0
- package/framework/.aios-core/copy-chief/orchestration/deliverable-assignment.js +84 -0
- package/framework/.aios-core/copy-chief/orchestration/helix-orchestrator.js +403 -0
- package/framework/.aios-core/copy-chief/orchestration/lock-manager.js +301 -0
- package/framework/.aios-core/copy-chief/orchestration/offer-scanner.js +118 -0
- package/framework/.aios-core/copy-chief/orchestration/recovery-handler.js +377 -0
- package/framework/.aios-core/copy-chief/orchestration/task-complexity-classifier.js +253 -0
- package/framework/.aios-core/copy-chief/plan/execution-plan-generator.js +355 -0
- package/framework/.aios-core/copy-chief/plan/plan-metrics.js +129 -0
- package/framework/.aios-core/copy-chief/plan/plan-state-machine.js +403 -0
- package/framework/.aios-core/copy-chief/plan/plan-verification.js +163 -0
- package/framework/.aios-core/copy-chief/quality/persuasion-flow.js +211 -0
- package/framework/.aios-core/copy-chief/quality/persuasion-flow.ts +264 -0
- package/framework/.aios-core/copy-chief/quality/self-critique.js +277 -0
- package/framework/.aios-core/copy-chief/quality/self-critique.ts +284 -0
- package/framework/.aios-core/copy-chief/quality/template-validator.js +276 -0
- package/framework/.aios-core/copy-chief/quality/template-validator.ts +307 -0
- package/framework/.aios-core/copy-chief/recovery/recovery-handler.js +437 -0
- package/framework/.aios-core/copy-chief/recovery/recovery-handler.ts +569 -0
- package/framework/.aios-core/copy-chief/state/mecanismo-updater.js +189 -0
- package/framework/.aios-core/copy-chief/state/mecanismo-updater.ts +233 -0
- package/framework/.aios-core/copy-chief/state/offer-detector.js +117 -0
- package/framework/.aios-core/copy-chief/state/offer-detector.ts +166 -0
- package/framework/.aios-core/copy-chief/state/offer-state.js +338 -0
- package/framework/.aios-core/copy-chief/state/offer-state.ts +477 -0
- package/framework/.aios-core/copy-chief/state/session-state.js +543 -0
- package/framework/.aios-core/copy-chief/state/session-state.ts +729 -0
- package/framework/.aios-core/copy-chief/state/state-machine.js +345 -0
- package/framework/.aios-core/copy-chief/state/state-machine.ts +432 -0
- package/framework/.aios-core/copy-chief/surface/decision-queue.js +172 -0
- package/framework/.aios-core/copy-chief/surface/decision-queue.ts +285 -0
- package/framework/.aios-core/copy-chief/surface/surface-checker.js +155 -0
- package/framework/.aios-core/copy-chief/surface/surface-checker.ts +252 -0
- package/framework/.aios-core/copy-chief/utils/decision-detector.js +138 -0
- package/framework/.aios-core/copy-chief/utils/decision-detector.ts +193 -0
- package/framework/.aios-core/copy-chief/utils/file-discovery.js +180 -0
- package/framework/.aios-core/copy-chief/utils/file-discovery.ts +241 -0
- package/framework/.aios-core/copy-chief/utils/parallel-executor.js +125 -0
- package/framework/.aios-core/copy-chief/utils/parallel-executor.ts +140 -0
- package/framework/.aios-core/copy-chief/utils/processing-registry.js +218 -0
- package/framework/.aios-core/copy-chief/utils/processing-registry.ts +273 -0
- package/framework/.aios-core/copy-chief/utils/repetition-detector.js +157 -0
- package/framework/.aios-core/copy-chief/utils/repetition-detector.ts +173 -0
- package/framework/.aios-core/copy-chief/utils/suggestion-engine.js +328 -0
- package/framework/.aios-core/copy-chief/utils/suggestion-engine.ts +410 -0
- package/framework/.aios-core/copy-chief/utils/task-manager.js +320 -0
- package/framework/.aios-core/copy-chief/utils/task-manager.ts +355 -0
- package/framework/.aios-core/copy-chief/utils/yaml-validator.js +434 -0
- package/framework/.aios-core/copy-chief/utils/yaml-validator.ts +524 -0
- package/framework/.aios-core/copy-chief/workflow/confidence-scorer.js +253 -0
- package/framework/.aios-core/copy-chief/workflow/elicitation-engine.js +154 -0
- package/framework/.aios-core/copy-chief/workflow/gate-auto-advance.js +208 -0
- package/framework/.aios-core/copy-chief/workflow/gate-auto-advance.ts +261 -0
- package/framework/.aios-core/copy-chief/workflow/helix-phases.js +334 -0
- package/framework/.aios-core/copy-chief/workflow/helix-phases.ts +391 -0
- package/framework/.aios-core/copy-chief/workflow/helix-requirements.js +148 -0
- package/framework/.aios-core/copy-chief/workflow/helix-requirements.ts +161 -0
- package/framework/.aios-core/copy-chief/workflow/pattern-capture.js +238 -0
- package/framework/.aios-core/copy-chief/workflow/phase-checklist.js +246 -0
- package/framework/.aios-core/copy-chief/workflow/phase-checklist.ts +269 -0
- package/framework/.aios-core/copy-chief/workflow/skill-triggers.js +180 -0
- package/framework/.aios-core/copy-chief/workflow/skill-triggers.ts +179 -0
- package/framework/.aios-core/copy-chief/workflow/squad-creator.js +113 -0
- package/framework/.aios-core/copy-chief/workflow/story-manager.js +217 -0
- package/framework/.aios-core/copy-chief/workflow/suggestion-engine.js +307 -0
- package/framework/.aios-core/copy-chief/workflow/workflow-intelligence.js +290 -0
- package/framework/.aios-core/copy-chief/workflow/workflow-intelligence.ts +413 -0
- package/framework/.aios-core/copy-chief/workflow/workflow-state-manager.js +418 -0
- package/framework/.aios-core/copy-chief/workflow/workflow-state-manager.ts +516 -0
- package/framework/.aios-core/core/graph-dashboard/mermaid-formatter.js +275 -0
- package/framework/.aios-core/core/synapse/context/context-builder.js +34 -0
- package/framework/.aios-core/core/synapse/context/context-tracker.js +191 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/consistency-collector.js +357 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/hook-collector.js +254 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/manifest-collector.js +82 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/output-analyzer.js +134 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/pipeline-collector.js +75 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/quality-collector.js +363 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/relevance-matrix.js +174 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/safe-read-json.js +31 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/session-collector.js +102 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/timing-collector.js +157 -0
- package/framework/.aios-core/core/synapse/diagnostics/collectors/uap-collector.js +83 -0
- package/framework/.aios-core/core/synapse/diagnostics/report-formatter.js +460 -0
- package/framework/.aios-core/core/synapse/diagnostics/synapse-diagnostics.js +168 -0
- package/framework/.aios-core/core/synapse/domain/domain-loader.js +322 -0
- package/framework/.aios-core/core/synapse/engine.js +380 -0
- package/framework/.aios-core/core/synapse/layers/l0-constitution.js +80 -0
- package/framework/.aios-core/core/synapse/layers/l1-global.js +102 -0
- package/framework/.aios-core/core/synapse/layers/l2-agent.js +94 -0
- package/framework/.aios-core/core/synapse/layers/l3-workflow.js +94 -0
- package/framework/.aios-core/core/synapse/layers/l4-task.js +83 -0
- package/framework/.aios-core/core/synapse/layers/l5-squad.js +244 -0
- package/framework/.aios-core/core/synapse/layers/l6-keyword.js +155 -0
- package/framework/.aios-core/core/synapse/layers/l7-star-command.js +220 -0
- package/framework/.aios-core/core/synapse/layers/layer-processor.js +82 -0
- package/framework/.aios-core/core/synapse/memory/memory-bridge.js +214 -0
- package/framework/.aios-core/core/synapse/output/formatter.js +568 -0
- package/framework/.aios-core/core/synapse/runtime/hook-runtime.js +74 -0
- package/framework/.aios-core/core/synapse/scripts/generate-constitution.js +204 -0
- package/framework/.aios-core/core/synapse/session/session-manager.js +403 -0
- package/framework/.aios-core/core/synapse/utils/paths.js +57 -0
- package/framework/.aios-core/core/synapse/utils/tokens.js +25 -0
- package/framework/.aios-core/core-config.yaml +139 -0
- package/framework/.aios-core/framework-config.yaml +150 -0
- package/framework/.aios-core/package-lock.json +33 -0
- package/framework/.aios-core/package.json +9 -0
- package/framework/CHANGELOG.md +697 -0
- package/framework/CLAUDE.md +93 -0
- package/framework/COPY-CHIEF-INDEX.md +330 -0
- package/framework/COPY-DOCS-INDEX.md +120 -0
- package/framework/GUIA-ECOSSISTEMA.md +940 -0
- package/framework/GUIA-INSTALACAO.md +382 -0
- package/framework/GUIA-USO-ECOSSISTEMA.md +238 -0
- package/framework/QUICK-REFERENCE.md +123 -0
- package/framework/RUNBOOK.md +401 -0
- package/framework/WORKFLOW-CANONICO.md +422 -0
- package/framework/agents/CLAUDE.md +54 -0
- package/framework/agents/atlas/AGENT.md +167 -0
- package/framework/agents/atlas/MEMORY.md +49 -0
- package/framework/agents/atlas/SOUL.md +84 -0
- package/framework/agents/atlas.md +234 -0
- package/framework/agents/blade/AGENT.md +203 -0
- package/framework/agents/blade/MEMORY.md +34 -0
- package/framework/agents/blade/SOUL.md +87 -0
- package/framework/agents/blade.md +245 -0
- package/framework/agents/cipher/AGENT.md +210 -0
- package/framework/agents/cipher/MEMORY.md +38 -0
- package/framework/agents/cipher/SOUL.md +57 -0
- package/framework/agents/cipher.md +184 -0
- package/framework/agents/competitor-analyzer.md +224 -0
- package/framework/agents/copy-validator.md +55 -0
- package/framework/agents/copywriter.md +169 -0
- package/framework/agents/echo/AGENT.md +189 -0
- package/framework/agents/echo/MEMORY.md +41 -0
- package/framework/agents/echo/SOUL.md +58 -0
- package/framework/agents/echo.md +219 -0
- package/framework/agents/forge/AGENT.md +213 -0
- package/framework/agents/forge/MEMORY.md +40 -0
- package/framework/agents/forge/SOUL.md +84 -0
- package/framework/agents/forge.md +220 -0
- package/framework/agents/hawk/AGENT.md +204 -0
- package/framework/agents/hawk/MEMORY.md +47 -0
- package/framework/agents/hawk/SOUL.md +84 -0
- package/framework/agents/hawk.md +251 -0
- package/framework/agents/helix/AGENT.md +250 -0
- package/framework/agents/helix/MEMORY.md +54 -0
- package/framework/agents/helix/SOUL.md +77 -0
- package/framework/agents/helix.md +131 -0
- package/framework/agents/ops.md +134 -0
- package/framework/agents/reflection/AGENT.md +52 -0
- package/framework/agents/reflection/MEMORY.md +33 -0
- package/framework/agents/reflection/SOUL.md +55 -0
- package/framework/agents/researcher.md +209 -0
- package/framework/agents/reviewer.md +209 -0
- package/framework/agents/scad/production-agent.scad.md +221 -0
- package/framework/agents/scout/AGENT.md +190 -0
- package/framework/agents/scout/MEMORY.md +64 -0
- package/framework/agents/scout/SOUL.md +84 -0
- package/framework/agents/scout.md +126 -0
- package/framework/agents/sentinel/AGENT.md +171 -0
- package/framework/agents/sentinel/MEMORY.md +37 -0
- package/framework/agents/sentinel/SOUL.md +71 -0
- package/framework/agents/sentinel.md +77 -0
- package/framework/agents/strategist.md +130 -0
- package/framework/agents/synthesizer.md +167 -0
- package/framework/agents/voc-processor.md +197 -0
- package/framework/agents/vox/AGENT.md +242 -0
- package/framework/agents/vox/MEMORY.md +81 -0
- package/framework/agents/vox/SOUL.md +90 -0
- package/framework/agents/vox.md +140 -0
- package/framework/checklists/aios-verification.yaml +226 -0
- package/framework/commands/CLAUDE.md +1 -0
- package/framework/commands/analyze.md +39 -0
- package/framework/commands/architecture.md +37 -0
- package/framework/commands/assemble.md +39 -0
- package/framework/commands/cc.md +317 -0
- package/framework/commands/checklist.md +35 -0
- package/framework/commands/classify.md +108 -0
- package/framework/commands/clickup-setup.md +107 -0
- package/framework/commands/clone-expert.md +283 -0
- package/framework/commands/conclave.md +55 -0
- package/framework/commands/create-offer.md +245 -0
- package/framework/commands/dag.md +196 -0
- package/framework/commands/debate.md +232 -0
- package/framework/commands/diagnose-offer.md +184 -0
- package/framework/commands/dossier.md +112 -0
- package/framework/commands/expert.md +49 -0
- package/framework/commands/extract-dna.md +193 -0
- package/framework/commands/health.md +242 -0
- package/framework/commands/helix-parallel.md +334 -0
- package/framework/commands/help.md +85 -0
- package/framework/commands/ideate.md +37 -0
- package/framework/commands/inbox.md +164 -0
- package/framework/commands/ingest.md +127 -0
- package/framework/commands/investigate.md +236 -0
- package/framework/commands/merge.md +35 -0
- package/framework/commands/next-action.md +73 -0
- package/framework/commands/overnight.md +177 -0
- package/framework/commands/pipeline.md +67 -0
- package/framework/commands/plan-execution.md +127 -0
- package/framework/commands/pre-delivery.md +55 -0
- package/framework/commands/produce-offer.md +322 -0
- package/framework/commands/production-brief.md +165 -0
- package/framework/commands/registry.md +22 -0
- package/framework/commands/resume.md +422 -0
- package/framework/commands/review-all.md +315 -0
- package/framework/commands/squad-research.md +121 -0
- package/framework/commands/status.md +71 -0
- package/framework/commands/story.md +34 -0
- package/framework/commands/sync-ecosystem.md +359 -0
- package/framework/commands/sync-project.md +69 -0
- package/framework/commands/update-ecosystem.md +382 -0
- package/framework/commands/validate-batch.md +231 -0
- package/framework/commands/validate.md +29 -0
- package/framework/config/batch-validation.yaml +59 -0
- package/framework/config/overnight.yaml +111 -0
- package/framework/config/surface-criteria.yaml +147 -0
- package/framework/config/workflow-loops.yaml +174 -0
- package/framework/constitution.md +199 -0
- package/framework/copy-squad/abraham.md +690 -0
- package/framework/copy-squad/agora.md +624 -0
- package/framework/copy-squad/bencivenga.md +953 -0
- package/framework/copy-squad/brown.md +1336 -0
- package/framework/copy-squad/brunson.md +743 -0
- package/framework/copy-squad/caples.md +1039 -0
- package/framework/copy-squad/carlton.md +872 -0
- package/framework/copy-squad/chaperon.md +520 -0
- package/framework/copy-squad/checklists/abraham-strategy-multiplier.md +416 -0
- package/framework/copy-squad/checklists/agora-promo-audit.md +607 -0
- package/framework/copy-squad/checklists/bencivenga-persuasion-audit.md +448 -0
- package/framework/copy-squad/checklists/brown-e5-method.md +415 -0
- package/framework/copy-squad/checklists/brown-mechanism-audit.md +385 -0
- package/framework/copy-squad/checklists/brunson-funnel-secrets.md +577 -0
- package/framework/copy-squad/checklists/caples-tested-methods.md +358 -0
- package/framework/copy-squad/checklists/carlton-street-smart.md +337 -0
- package/framework/copy-squad/checklists/chaperon-email-arc.md +334 -0
- package/framework/copy-squad/checklists/cialdini-persuasion-principles.md +401 -0
- package/framework/copy-squad/checklists/collier-entry-diagnostic.md +185 -0
- package/framework/copy-squad/checklists/halbert-bullet-proof.md +364 -0
- package/framework/copy-squad/checklists/hopkins-scientific-checklist.md +527 -0
- package/framework/copy-squad/checklists/hormozi-offer-creation.md +612 -0
- package/framework/copy-squad/checklists/kennedy-close-stack.md +239 -0
- package/framework/copy-squad/checklists/kennedy-no-bs-checklist.md +306 -0
- package/framework/copy-squad/checklists/kern-intent-based-branding.md +458 -0
- package/framework/copy-squad/checklists/makepeace-control-killer.md +633 -0
- package/framework/copy-squad/checklists/marcondes-primary.md +50 -0
- package/framework/copy-squad/checklists/ogilvy-brand-response.md +438 -0
- package/framework/copy-squad/checklists/powers-emotional-dr.md +280 -0
- package/framework/copy-squad/checklists/reeves-usp-audit.md +498 -0
- package/framework/copy-squad/checklists/ry-schwartz-conversion-copy.md +479 -0
- package/framework/copy-squad/checklists/sabri-selling-like-crazy.md +329 -0
- package/framework/copy-squad/checklists/schwartz-awareness-calibration.md +380 -0
- package/framework/copy-squad/checklists/schwartz-awareness-levels.md +593 -0
- package/framework/copy-squad/checklists/sugarman-30-triggers.md +437 -0
- package/framework/copy-squad/checklists/vaynerchuk-content-strategy.md +402 -0
- package/framework/copy-squad/cialdini.md +861 -0
- package/framework/copy-squad/collier.md +637 -0
- package/framework/copy-squad/copy-chief.md +204 -0
- package/framework/copy-squad/expert-index.json +2436 -0
- package/framework/copy-squad/halbert.md +1003 -0
- package/framework/copy-squad/hopkins.md +901 -0
- package/framework/copy-squad/hormozi.md +733 -0
- package/framework/copy-squad/kennedy.md +1159 -0
- package/framework/copy-squad/kern.md +626 -0
- package/framework/copy-squad/makepeace.md +895 -0
- package/framework/copy-squad/manifest.yaml +403 -0
- package/framework/copy-squad/manifest.yaml.bak +383 -0
- package/framework/copy-squad/marcondes.md +307 -0
- package/framework/copy-squad/ogilvy.md +1056 -0
- package/framework/copy-squad/powers.md +576 -0
- package/framework/copy-squad/reeves.md +681 -0
- package/framework/copy-squad/ry-schwartz.md +964 -0
- package/framework/copy-squad/sabri.md +936 -0
- package/framework/copy-squad/schwartz.md +1245 -0
- package/framework/copy-squad/sugarman.md +1331 -0
- package/framework/copy-squad/tasks/bullet-writing.md +42 -0
- package/framework/copy-squad/tasks/cta-framework.md +68 -0
- package/framework/copy-squad/tasks/dre-escalation.md +41 -0
- package/framework/copy-squad/tasks/email-sequence.md +39 -0
- package/framework/copy-squad/tasks/future-pacing.md +37 -0
- package/framework/copy-squad/tasks/guarantee-framework.md +59 -0
- package/framework/copy-squad/tasks/headline-testing.md +59 -0
- package/framework/copy-squad/tasks/lead-generation.md +48 -0
- package/framework/copy-squad/tasks/logo-test-verification.md +45 -0
- package/framework/copy-squad/tasks/manifest.yaml +144 -0
- package/framework/copy-squad/tasks/mechanism-naming.md +58 -0
- package/framework/copy-squad/tasks/objection-demolition.md +41 -0
- package/framework/copy-squad/tasks/offer-stack.md +51 -0
- package/framework/copy-squad/tasks/proof-stacking.md +45 -0
- package/framework/copy-squad/tasks/sensory-scene-builder.md +48 -0
- package/framework/copy-squad/tasks/story-framework.md +66 -0
- package/framework/copy-squad/tasks/tribal-exclusivity.md +37 -0
- package/framework/copy-squad/tasks/urgency-framework.md +50 -0
- package/framework/copy-squad/tasks/urgency-injection.md +46 -0
- package/framework/copy-squad/tasks/voc-language-check.md +38 -0
- package/framework/copy-squad/tasks/vsl-hook.md +36 -0
- package/framework/copy-squad/vaynerchuk.md +579 -0
- package/framework/copy-surface-criteria.yaml +101 -0
- package/framework/core-config.yaml +243 -0
- package/framework/data/workflow-patterns.yaml +252 -0
- package/framework/docs/backup-strategy.md +312 -0
- package/framework/docs/commands-index.md +382 -0
- package/framework/docs/copy-fundamentals/01-psicologia-humana.md +282 -0
- package/framework/docs/copy-fundamentals/02-consciencia-mercado.md +262 -0
- package/framework/docs/copy-fundamentals/03-metodologia-3ms.md +289 -0
- package/framework/docs/copy-fundamentals/04-nuuppecc-hooks.md +258 -0
- package/framework/docs/copy-fundamentals/05-curiosity-gap.md +262 -0
- package/framework/docs/copy-fundamentals/06-storytelling.md +301 -0
- package/framework/docs/copy-fundamentals/07-processo-escrita.md +296 -0
- package/framework/docs/copy-fundamentals/08-formato-vs-angulo.md +272 -0
- package/framework/docs/copy-fundamentals/09-estrutura-blocos.md +301 -0
- package/framework/docs/copy-fundamentals/10-tecnicas-execucao.md +625 -0
- package/framework/docs/copy-fundamentals/11-principios-2026.md +338 -0
- package/framework/docs/copy-fundamentals/12-big-ideas.md +345 -0
- package/framework/docs/copy-fundamentals/CLAUDE.md +137 -0
- package/framework/docs/hooks-guide.md +515 -0
- package/framework/docs/mcp-usage-guide.md +423 -0
- package/framework/docs/quality-gates-decision-tree.md +406 -0
- package/framework/docs/swipe-files-index.md +345 -0
- package/framework/dossiers/.archive/person-dr-richter-archived-2026-03-01.yaml +24 -0
- package/framework/dossiers/mechanism/morte-das-celulas-de-lubrificacao.yaml +24 -0
- package/framework/dossiers/person/dr-klaus-richter.yaml +58 -0
- package/framework/ecosystem-status.md +214 -0
- package/framework/experts/fidelity/apex-prompts.yaml +380 -0
- package/framework/framework-config.yaml +282 -0
- package/framework/gotchas/gotchas.yaml +66 -0
- package/framework/hooks/CLAUDE.md +1 -0
- package/framework/hooks/agent-activation-hook.cjs +345 -0
- package/framework/hooks/agent-authority-gate.cjs +100 -0
- package/framework/hooks/agent-memory-writeback.js +23 -0
- package/framework/hooks/agent-memory-writeback.ts +42 -0
- package/framework/hooks/agent-state-recorder.cjs +310 -0
- package/framework/hooks/analyze-production-task.cjs +85 -0
- package/framework/hooks/analyze-production-task.sh +42 -0
- package/framework/hooks/auto-approve-reads.cjs +41 -0
- package/framework/hooks/auto-approve-reads.sh +21 -0
- package/framework/hooks/bun.lock +19 -0
- package/framework/hooks/clickup-deliverable-sync.js +38 -0
- package/framework/hooks/clickup-deliverable-sync.ts +53 -0
- package/framework/hooks/clickup-gate-sync.js +33 -0
- package/framework/hooks/clickup-gate-sync.ts +49 -0
- package/framework/hooks/command-auto-discovery.js +58 -0
- package/framework/hooks/command-auto-discovery.ts +84 -0
- package/framework/hooks/completion-verifier.js +46 -0
- package/framework/hooks/completion-verifier.ts +84 -0
- package/framework/hooks/context-tracker.js +52 -0
- package/framework/hooks/context-tracker.ts +88 -0
- package/framework/hooks/copy-attribution.js +56 -0
- package/framework/hooks/copy-attribution.ts +60 -0
- package/framework/hooks/copy-version-backup.js +26 -0
- package/framework/hooks/copy-version-backup.ts +38 -0
- package/framework/hooks/dashboard-autostart.cjs +68 -0
- package/framework/hooks/dashboard-autostart.sh +47 -0
- package/framework/hooks/dashboard-emit.js +39 -0
- package/framework/hooks/dashboard-emit.ts +29 -0
- package/framework/hooks/data-lifecycle-hook.cjs +64 -0
- package/framework/hooks/decision-detector.js +28 -0
- package/framework/hooks/decision-detector.ts +40 -0
- package/framework/hooks/detect-clear-protect.cjs +79 -0
- package/framework/hooks/detect-clear-protect.sh +90 -0
- package/framework/hooks/discover-offer-context.cjs +327 -0
- package/framework/hooks/discover-offer-context.sh +464 -0
- package/framework/hooks/discovery-before-create.js +21 -0
- package/framework/hooks/discovery-before-create.ts +36 -0
- package/framework/hooks/doc-rot-detector.js +59 -0
- package/framework/hooks/doc-rot-detector.ts +87 -0
- package/framework/hooks/error-handler.js +50 -0
- package/framework/hooks/error-handler.ts +77 -0
- package/framework/hooks/etl-voc-post.js +51 -0
- package/framework/hooks/etl-voc-post.ts +81 -0
- package/framework/hooks/fidelity-check.js +54 -0
- package/framework/hooks/fidelity-check.ts +58 -0
- package/framework/hooks/filter-bash-output.cjs +66 -0
- package/framework/hooks/filter-bash-output.sh +61 -0
- package/framework/hooks/gate-tracker.js +115 -0
- package/framework/hooks/gate-tracker.ts +174 -0
- package/framework/hooks/gotcha-error-capture.js +38 -0
- package/framework/hooks/gotcha-error-capture.ts +65 -0
- package/framework/hooks/handoff-validator-hook.cjs +631 -0
- package/framework/hooks/helix-orchestrator-boot.cjs +227 -0
- package/framework/hooks/helix-phase-mecanismo.cjs +119 -0
- package/framework/hooks/helix-phase-mecanismo.sh +238 -0
- package/framework/hooks/ids-register.js +71 -0
- package/framework/hooks/ids-register.ts +100 -0
- package/framework/hooks/journey-log.js +18 -0
- package/framework/hooks/journey-log.ts +32 -0
- package/framework/hooks/lib/CLAUDE.md +1 -0
- package/framework/hooks/lib/hook-helpers.sh +61 -0
- package/framework/hooks/log-tool-failure.cjs +36 -0
- package/framework/hooks/log-tool-failure.sh +13 -0
- package/framework/hooks/mcp-circuit-breaker-hook.cjs +95 -0
- package/framework/hooks/mcp-query-validator.cjs +58 -0
- package/framework/hooks/mcp-query-validator.sh +69 -0
- package/framework/hooks/mecanismo-validation.js +18 -0
- package/framework/hooks/mecanismo-validation.ts +35 -0
- package/framework/hooks/memory-auto-populate.js +22 -0
- package/framework/hooks/memory-auto-populate.ts +38 -0
- package/framework/hooks/memory-bracket-injector.js +131 -0
- package/framework/hooks/memory-bracket-injector.ts +146 -0
- package/framework/hooks/memory-context.cjs +72 -0
- package/framework/hooks/memory-context.sh +60 -0
- package/framework/hooks/mermaid-auto-update.js +57 -0
- package/framework/hooks/mermaid-auto-update.ts +106 -0
- package/framework/hooks/meta-prompt-reminder.js +103 -0
- package/framework/hooks/meta-prompt-reminder.ts +172 -0
- package/framework/hooks/ops-commit-scanner.cjs +214 -0
- package/framework/hooks/package-lock.json +560 -0
- package/framework/hooks/package.json +11 -0
- package/framework/hooks/persona-detector.cjs +142 -0
- package/framework/hooks/persuasion-flow-check.js +20 -0
- package/framework/hooks/persuasion-flow-check.ts +35 -0
- package/framework/hooks/phase-advance-gate.js +119 -0
- package/framework/hooks/phase-advance-gate.ts +162 -0
- package/framework/hooks/phase-gate.js +124 -0
- package/framework/hooks/phase-gate.ts +184 -0
- package/framework/hooks/pipeline-enforcer.cjs +517 -0
- package/framework/hooks/pipeline-intent-detector.cjs +720 -0
- package/framework/hooks/pipeline-state-projector.cjs +288 -0
- package/framework/hooks/plan-session-guard.cjs +153 -0
- package/framework/hooks/post-gate-auto-advance.js +27 -0
- package/framework/hooks/post-gate-auto-advance.ts +43 -0
- package/framework/hooks/post-mcp-mecanismo-update.js +39 -0
- package/framework/hooks/post-mcp-mecanismo-update.ts +30 -0
- package/framework/hooks/post-production-validate.js +140 -0
- package/framework/hooks/post-production-validate.ts +198 -0
- package/framework/hooks/post-tool-use.js +87 -0
- package/framework/hooks/post-tool-use.ts +141 -0
- package/framework/hooks/post-validation-feedback.js +28 -0
- package/framework/hooks/post-validation-feedback.ts +42 -0
- package/framework/hooks/pre-compact-save.cjs +23 -0
- package/framework/hooks/pre-compact-save.sh +21 -0
- package/framework/hooks/pre-tool-use-gate.js +238 -0
- package/framework/hooks/pre-tool-use-gate.ts +321 -0
- package/framework/hooks/precompact-session-digest.cjs +72 -0
- package/framework/hooks/processing-check.js +22 -0
- package/framework/hooks/processing-check.ts +41 -0
- package/framework/hooks/production-delegation-gate.js +141 -0
- package/framework/hooks/production-delegation-gate.ts +225 -0
- package/framework/hooks/production-preflight.cjs +58 -0
- package/framework/hooks/production-preflight.sh +59 -0
- package/framework/hooks/record-tool-in-offer.js +45 -0
- package/framework/hooks/record-tool-in-offer.ts +81 -0
- package/framework/hooks/registry-check.js +110 -0
- package/framework/hooks/registry-check.ts +130 -0
- package/framework/hooks/regra-2x-detector.js +32 -0
- package/framework/hooks/regra-2x-detector.ts +53 -0
- package/framework/hooks/self-critique-preflight.js +33 -0
- package/framework/hooks/self-critique-preflight.ts +45 -0
- package/framework/hooks/session-digest-save.js +20 -0
- package/framework/hooks/session-digest-save.ts +31 -0
- package/framework/hooks/session-handoff.js +40 -0
- package/framework/hooks/session-handoff.ts +49 -0
- package/framework/hooks/setup-environment.cjs +65 -0
- package/framework/hooks/setup-environment.sh +43 -0
- package/framework/hooks/stop-copy-validation.js +71 -0
- package/framework/hooks/stop-copy-validation.ts +82 -0
- package/framework/hooks/story-required-gate.js +174 -0
- package/framework/hooks/story-required-gate.ts +259 -0
- package/framework/hooks/subagent-start-log.cjs +38 -0
- package/framework/hooks/subagent-start-log.sh +22 -0
- package/framework/hooks/subagent-stop-validate.cjs +42 -0
- package/framework/hooks/subagent-stop-validate.sh +26 -0
- package/framework/hooks/suggestion-on-gate.js +35 -0
- package/framework/hooks/suggestion-on-gate.ts +61 -0
- package/framework/hooks/synapse-engine.cjs +77 -0
- package/framework/hooks/sync-repos-on-stop.cjs +200 -0
- package/framework/hooks/sync-repos-on-stop.sh +75 -0
- package/framework/hooks/sync-site.cjs +54 -0
- package/framework/hooks/sync-site.sh +33 -0
- package/framework/hooks/template-header-validation.js +23 -0
- package/framework/hooks/template-header-validation.ts +41 -0
- package/framework/hooks/tool-enforcement-gate.js +110 -0
- package/framework/hooks/tool-enforcement-gate.ts +147 -0
- package/framework/hooks/tool-matrix-enforcer.js +134 -0
- package/framework/hooks/tool-matrix-enforcer.ts +222 -0
- package/framework/hooks/tsconfig.json +25 -0
- package/framework/hooks/validate-before-commit.js +61 -0
- package/framework/hooks/validate-before-commit.ts +87 -0
- package/framework/hooks/validate-gate-prereq.js +132 -0
- package/framework/hooks/validate-gate-prereq.ts +180 -0
- package/framework/hooks/voc-naming-validator.js +46 -0
- package/framework/hooks/voc-naming-validator.ts +80 -0
- package/framework/ids/decisions.json +657 -0
- package/framework/knowledge/README.md +88 -0
- package/framework/knowledge/classification-maap.md +406 -0
- package/framework/knowledge/cloned/leonardo-marcondes-madureira.md +344 -0
- package/framework/knowledge/experts/leonardo-marcondes-madureira.md +93 -0
- package/framework/knowledge/frameworks/maap-marketing-juridico.md +96 -0
- package/framework/knowledge/ingestion-tracking.yaml +19 -0
- package/framework/knowledge/patterns-by-niche.yaml +914 -0
- package/framework/knowledge/universal/aios-architecture-patterns.md +341 -0
- package/framework/knowledge/universal/aios-deep/README.md +21 -0
- package/framework/knowledge/universal/aios-framework.md +73785 -0
- package/framework/knowledge/universal/copy-frameworks.md +6 -0
- package/framework/knowledge/universal/esteira-escalonada.md +122 -0
- package/framework/knowledge/universal/expert-insights.md +6 -0
- package/framework/knowledge/universal/funil-lancamento-3-fases.md +219 -0
- package/framework/knowledge/universal/general.md +6 -0
- package/framework/knowledge/universal/persuasion-principles.md +12 -0
- package/framework/knowledge/voc/maap-advogados-2026.md +143 -0
- package/framework/learned-patterns/.last-tools.json +6 -0
- package/framework/learned-patterns/.suggest-cooldown.json +3 -0
- package/framework/learned-patterns/patterns.yaml +38 -0
- package/framework/learned-patterns/wie-data.json +298 -0
- package/framework/manifest.yaml +751 -0
- package/framework/orchestrator.md +178 -0
- package/framework/reference/anti-homogeneization.md +228 -0
- package/framework/reference/anti-sycophancy.md +171 -0
- package/framework/reference/briefings-helix.md +162 -0
- package/framework/reference/bssf-decision.md +175 -0
- package/framework/reference/ceremony-detection.md +136 -0
- package/framework/reference/constraint-progressivo.md +344 -0
- package/framework/reference/context-management.md +176 -0
- package/framework/reference/copy-chief.md +253 -0
- package/framework/reference/copy-fidelity.md +234 -0
- package/framework/reference/copy-production.md +185 -0
- package/framework/reference/debugging-hypothesis.md +418 -0
- package/framework/reference/dual-doc-taxonomy.md +62 -0
- package/framework/reference/ecosystem.md +219 -0
- package/framework/reference/epistemic-protocol.md +214 -0
- package/framework/reference/mecanismo-unico.md +212 -0
- package/framework/reference/micro-unidades.md +144 -0
- package/framework/reference/offers/concursa-ai.md +66 -0
- package/framework/reference/offers/gabaritando-portugues.md +53 -0
- package/framework/reference/signal-translation.md +256 -0
- package/framework/reference/structured-exploration.md +361 -0
- package/framework/reference/synthesis-flow.md +202 -0
- package/framework/reference/tool-usage-matrix.md +366 -0
- package/framework/reference/voc-research.md +291 -0
- package/framework/references/copy-fundamentals/CLAUDE.md +1 -0
- package/framework/references/copy-fundamentals/SKILL.md +78 -0
- package/framework/references/copy-fundamentals/references/CLAUDE.md +1 -0
- package/framework/references/copy-fundamentals/references/antes-depois-tecnica.md +279 -0
- package/framework/references/copy-fundamentals/references/big-ideas.md +167 -0
- package/framework/references/copy-fundamentals/references/disparos-dopamina.md +172 -0
- package/framework/references/copy-fundamentals/references/erros-fatais.md +275 -0
- package/framework/references/copy-fundamentals/references/escrita-viva-principios.md +273 -0
- package/framework/references/copy-fundamentals/references/estrutura-mecanismo.md +127 -0
- package/framework/references/copy-fundamentals/references/glossario-copy.md +185 -0
- package/framework/references/copy-fundamentals/references/pesquisa-estrategica.md +186 -0
- package/framework/references/copy-fundamentals/references/principios-escrita.md +218 -0
- package/framework/references/copy-fundamentals/references/psicologia-persuasao.md +150 -0
- package/framework/references/copy-fundamentals/references/revisao-universal.md +171 -0
- package/framework/registry.yaml +699 -0
- package/framework/rules/CLAUDE.md +5 -0
- package/framework/rules/offers/cognixor.md +53 -0
- package/framework/rules/offers/florayla.md +50 -0
- package/framework/rules/offers/neuvelys.md +60 -0
- package/framework/rules/offers/quimica-amarracao.md +49 -0
- package/framework/schemas/checklist-definition.schema.yaml +172 -0
- package/framework/schemas/clickup-sync.schema.yaml +89 -0
- package/framework/schemas/copy-attribution.schema.yaml +134 -0
- package/framework/schemas/dispatch-request.schema.yaml +43 -0
- package/framework/schemas/dossier.schema.yaml +70 -0
- package/framework/schemas/helix-phases.yaml +350 -0
- package/framework/schemas/helix-phases.yaml.bak +350 -0
- package/framework/schemas/helix-state.schema.yaml +136 -0
- package/framework/schemas/mecanismo-unico.schema.yaml +249 -0
- package/framework/schemas/mecanismo-unico.schema.yaml.bak +249 -0
- package/framework/schemas/memory-tiers.schema.yaml +360 -0
- package/framework/schemas/persuasion-chunk.schema.yaml +150 -0
- package/framework/schemas/pipeline-dag.schema.yaml +193 -0
- package/framework/schemas/processing-registry.schema.yaml +143 -0
- package/framework/schemas/task-definition.schema.yaml +137 -0
- package/framework/schemas/template-header.schema.yaml +151 -0
- package/framework/schemas/workflow-loop.schema.yaml +231 -0
- package/framework/scripts/CLAUDE.md +1 -0
- package/framework/scripts/export-web.js +120 -0
- package/framework/scripts/health-check.js +413 -0
- package/framework/scripts/health-check.ts +596 -0
- package/framework/scripts/statusline.sh +221 -0
- package/framework/scripts/sync-ide.js +142 -0
- package/framework/skills/.serena/memories/aios-exploration-plan.md +64 -0
- package/framework/skills/.serena/project.yml +121 -0
- package/framework/skills/CLAUDE.md +1 -0
- package/framework/skills/audience-research-agent/CLAUDE.md +1 -0
- package/framework/skills/audience-research-agent/SKILL.md +486 -0
- package/framework/skills/audience-research-agent/references/aula_01_principios_fundamentais.md +559 -0
- package/framework/skills/audience-research-agent/references/aula_02_psicologia_engenheiro.md +191 -0
- package/framework/skills/audience-research-agent/references/aula_04_puzzle_pieces.md +311 -0
- package/framework/skills/audience-research-agent/references/aula_geral_comunicacao_pedreiro_01_intro_conversa.md +62 -0
- package/framework/skills/audience-research-agent/references/aula_geral_comunicacao_pedreiro_02_ritmo_sensorial.md +61 -0
- package/framework/skills/audience-research-agent/references/aula_geral_comunicacao_pedreiro_03_metodo_abc.md +79 -0
- package/framework/skills/audience-research-agent/references/aula_geral_comunicacao_pedreiro_04_edicao_camadas.md +79 -0
- package/framework/skills/audience-research-agent/references/aula_geral_comunicacao_pedreiro_05_problemas_recursos.md +84 -0
- package/framework/skills/audience-research-agent/references/ref_frameworks_georgi_evaldo_makepeace_ramalho_schwartz.md +278 -0
- package/framework/skills/audience-research-agent/references/ref_frameworks_jtbd_robbins_kahneman_empathy.md +277 -0
- package/framework/skills/audience-research-agent/references/ref_gatilhos_reptilianos_10.md +29 -0
- package/framework/skills/audience-research-agent/references/ref_platform_amazon.md +85 -0
- package/framework/skills/audience-research-agent/references/ref_platform_instagram.md +212 -0
- package/framework/skills/audience-research-agent/references/ref_platform_mercadolivre.md +236 -0
- package/framework/skills/audience-research-agent/references/ref_platform_reclameaqui.md +262 -0
- package/framework/skills/audience-research-agent/references/ref_platform_reddit.md +127 -0
- package/framework/skills/audience-research-agent/references/ref_platform_tiktok.md +227 -0
- package/framework/skills/audience-research-agent/references/ref_platform_youtube.md +187 -0
- package/framework/skills/audience-research-agent/references/ref_readiness_score_5_dimensions.md +247 -0
- package/framework/skills/audience-research-agent/references/ref_voc_database_schema.md +362 -0
- package/framework/skills/audience-research-agent/references/ref_voc_sources_rules_templates.md +352 -0
- package/framework/skills/audience-research-agent/references/ref_workflow_modular_4_modules.md +361 -0
- package/framework/skills/audience-research-agent/templates/fase-01-inputs-template.md +278 -0
- package/framework/skills/copy-critic/CLAUDE.md +1 -0
- package/framework/skills/copy-critic/SKILL.md +684 -0
- package/framework/skills/copy-critic/references/anti-patterns.md +270 -0
- package/framework/skills/copy-critic/references/checklist-validacao.md +238 -0
- package/framework/skills/copy-critic/references/escrita.md +569 -0
- package/framework/skills/copy-critic/references/exemplos-aprovados.md +216 -0
- package/framework/skills/copy-critic/references/exemplos-reprovados.md +312 -0
- package/framework/skills/copy-critic/references/metodologia-stand.md +192 -0
- package/framework/skills/copy-critic/references/psicologia.md +333 -0
- package/framework/skills/criativos-agent/CLAUDE.md +238 -0
- package/framework/skills/criativos-agent/SKILL.md +229 -0
- package/framework/skills/criativos-agent/references/angulos.md +68 -0
- package/framework/skills/criativos-agent/references/breakdown.md +328 -0
- package/framework/skills/criativos-agent/references/checklist.md +95 -0
- package/framework/skills/criativos-agent/references/erros-comuns.md +113 -0
- package/framework/skills/criativos-agent/references/escrita.md +667 -0
- package/framework/skills/criativos-agent/references/psicologia.md +207 -0
- package/framework/skills/criativos-agent/references/swipe-files/alzheimer/rejuvenescendo-o-cerebro.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/alzheimer/ritual-do-chile.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/alzheimer/truque-da-gema-do-ovo.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/aumento-peniano/metodo-cabra-macho.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/aumento-peniano/power-performance-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/aumento-peniano/power-performance.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/aumento-peniano/protocolo-aumento-supremo-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/concursos/AD 91 - GPT DOS APROVADOS.md +41 -0
- package/framework/skills/criativos-agent/references/swipe-files/concursos/ADS 77 GPT LANE 01.md +9 -0
- package/framework/skills/criativos-agent/references/swipe-files/concursos/ADS 79 GPT LANE.md +14 -0
- package/framework/skills/criativos-agent/references/swipe-files/concursos/ADS HACKER 37.md +11 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/bacteria-diabetica---gluco-zen.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/bamboo-trick-02.md +20 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/casca-de-uva-03.md +30 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/erva-vulcanica-ancestral---glyco-balance.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/hidden-mineral.md +17 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/planta-antidiabetes.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/ritual-de-6-segundos-07.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/sugar-pro-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/supernervo-12.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/truque-matinal-de-30-segundos-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/verme-diabetico-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/diabetes/verme-diabetico-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/bacteria-inflamatoria-06.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/blue-salt-trick---nordic-power-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/mix-caseiro-que-aumenta-desempenho-e-vigor.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/trick-blue-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-da-agua.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-da-banana---iron-boost-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-do-cavalo.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-do-mel-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-do-mel-amazonico-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-do-pepino-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-do-pepino-esp.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/ed/truque-do-rei-salomao-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/cafe-bariatrico-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/cardapio-infalivel-para-maes-lactantes-10.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/desafio-30-dias-pilates-na-parede.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/desafio-jejum-10x-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/gordura-marrom.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/mounjaro-bariatrico-natural-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/natural-ozempic---ozemburn-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/pink-salt-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/protocolo-natural-desparasite-se.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/training-booster-01.md +65 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/truque-do-caldo-de-ossos-07.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/emagrecimento/truque-do-caldo-de-ossos-16.md +48 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/atividades-de-caligrafia-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/atividades-de-caligrafia-07.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/atividades-de-caligrafia-10.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/desmistificando-matematica-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/gerador-de-livros-09.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/gerador-de-livros-12.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/gerador-de-livros-14.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/escrita/gerador-de-livros.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/exercicios/bumbum-escultural.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/exercicios/desafio-bye-diastase-07.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/exercicios/desafio-bye-diastase-08.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/exercicios/guia-flexivel-20.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/exercicios/seca-abdomen-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/exercicios/seca-abdomen-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/infantil-maternidade/kit-30-livros-os-sons-das-letras.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/infantil-maternidade/kit-de-atividades-para-volta-as-aulas-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/infantil-maternidade/lancheira-feliz-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/infantil-maternidade/quadro-da-paz-materna-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/infantil-maternidade/rotina-de-disciplina-positiva.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/atraindo-a-riqueza.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/destino-divino-05.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/escrita-divina-05.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/escrita-divina-14.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/escrita-divina-19.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/novena-de-sao-jose.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/o-canto-sagrado-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/o-canto-sagrado.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/o-poder-oculto-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/lei-da-atracao/truque-cerebral-das-forcas-americanas-08.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/menopausa/capsula-de-fitoestrogeno-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/menopausa/tecnica-de-compressao-abdominal-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/menopausa/tecnica-de-compressao-abdominal-02.md +18 -0
- package/framework/skills/criativos-agent/references/swipe-files/menopausa/tecnica-de-compressao-abdominal-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/moda/modelos-virtuais-de-alta-conversao-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/moda/modelos-virtuais-de-alta-conversao.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/moda/se-vestindo-com-destaque-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/moda/se-vestindo-com-destaque-06.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pack/conteudos-virais-com-ia-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pack/conteudos-virais-com-ia-05.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pack/conteudos-virais-com-ia.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pack/receitas-da-vovo-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pack/receitas-saudaveis-de-bolo-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pet/adestrando-o-filhote-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pet/adestrando-o-filhote-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pet/adestrando-o-filhote-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pressao-alta/iniciativa-governamental-para-a-hipertensao-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pressao-alta/iniciativa-governamental-para-a-hipertensao-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/pressao-alta/iniciativa-governamental-para-a-hipertensao.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/prisao-de-ventre/metodo-de-coco-de-sete-segundos-02.md +19 -0
- package/framework/skills/criativos-agent/references/swipe-files/prisao-de-ventre/metodo-de-coco-de-sete-segundos-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/prisao-de-ventre/metodo-de-coco-de-sete-segundos-05.md +52 -0
- package/framework/skills/criativos-agent/references/swipe-files/prisao-de-ventre/metodo-de-coco-de-sete-segundos.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/prostata/truque-do-tomate-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/prostata/truque-do-tomate-03.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/prostata/truque-do-tomate-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/prostata/truque-do-tomate-09.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/prostata/truque-do-tomate-10.md +68 -0
- package/framework/skills/criativos-agent/references/swipe-files/rejuvenescimento/acido-japones-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/rejuvenescimento/bacteria-toxica-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/rejuvenescimento/segredo-que-desafia-o-envelhecimento-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/rejuvenescimento/segredo-que-desafia-o-envelhecimento.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/rejuvenescimento/truque-das-japonesas.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/rejuvenescimento/truque-do-vinagre-de-maca.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/3-gatilhos-biologicos-da-atracao.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/desenrolado.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/efeito-nostalgia-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/formula-do-amor-verdadeiro.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/guia-da-obsessao-inabalavel-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/guia-da-obsessao-inabalavel-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/hormonios-do-amor-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/hormonios-do-amor-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/manipulacao-silenciosa-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/relacionamento/perfume-de-eros.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/gustafilm-lab.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/ia-influencer.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/job-em-dolar-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/job-em-dolar-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/job-em-dolar.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/lista-de-fornecedores-04.md +20 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/previsibilidade-de-faturamento-05.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/previsibilidade-de-faturamento.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/programa-de-recompensa-do-youtube-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/renda-extra/truque-da-modelagem.md +40 -0
- package/framework/skills/criativos-agent/references/swipe-files/saude-mental/neurociencias-na-pratica-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/saude-mental/neurociencias-na-pratica.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/saude-mental/recursos-terapeuticos-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/saude-mental/recursos-terapeuticos.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/sexualidade/mulher-poderosa-na-cama.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/sexualidade/os-segredos-da-cleopatra-fr.md +21 -0
- package/framework/skills/criativos-agent/references/swipe-files/sexualidade/os-segredos-da-cleopatra-ingles.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/sexualidade/segredo-das-amantes-br-01.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/sexualidade/the-f-formula-04.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/sexualidade/the-f-formula.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/varizes/lipedema-zero-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/varizes/lipedema-zero.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/visao/hack-do-fluxo-sanguineo-ocular-matinal-de-7s.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/visao/truque-do-pepino-2-02.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/visao/truque-do-pepino-2.md +16 -0
- package/framework/skills/criativos-agent/references/swipe-files/visao/truque-do-pepino.md +16 -0
- package/framework/skills/criativos-agent.zip +0 -0
- package/framework/skills/ecosystem-guide/CLAUDE.md +1 -0
- package/framework/skills/ecosystem-guide/SKILL.md +275 -0
- package/framework/skills/helix-system-agent/CLAUDE.md +1 -0
- package/framework/skills/helix-system-agent/SKILL.md +881 -0
- package/framework/skills/helix-system-agent/references/CLAUDE.md +1 -0
- package/framework/skills/helix-system-agent/references/constraints.md +98 -0
- package/framework/skills/helix-system-agent/references/core/CLAUDE.md +1 -0
- package/framework/skills/helix-system-agent/references/core/DRE.md +195 -0
- package/framework/skills/helix-system-agent/references/core/RMBC.md +144 -0
- package/framework/skills/helix-system-agent/references/core/formulas_e_criterios.md +124 -0
- package/framework/skills/helix-system-agent/references/core/metodologias.md +201 -0
- package/framework/skills/helix-system-agent/references/core/output_format.md +339 -0
- package/framework/skills/helix-system-agent/references/core/session_management.md +146 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/00-index.md +85 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/01-identificacao.md +138 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/02-pesquisa.md +175 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/03-avatar.md +225 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/04-consciencia.md +199 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/05-mup.md +172 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/06-mus.md +216 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/07-big-offer.md +198 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/08-fechamento.md +176 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/09-leads.md +201 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/10-progressao.md +220 -0
- package/framework/skills/helix-system-agent/references/examples/concursos/hacker/CLAUDE.md +56 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/00-index.md +86 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/01-identificacao.md +117 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/02-pesquisa.md +162 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/03-avatar.md +161 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/04-consciencia.md +128 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/05-mup.md +112 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/06-mus.md +213 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/07-big-offer.md +171 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/08-fechamento.md +207 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/09-leads.md +153 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/10-progressao.md +196 -0
- package/framework/skills/helix-system-agent/references/examples/relacionamento/quimica-amarracao-infiel/CLAUDE.md +1 -0
- package/framework/skills/helix-system-agent/references/fundamentos/CLAUDE.md +1 -0
- package/framework/skills/helix-system-agent/references/fundamentos/comunicacao_pedreiro_resumo.md +129 -0
- package/framework/skills/helix-system-agent/references/fundamentos/escrita.md +575 -0
- package/framework/skills/helix-system-agent/references/fundamentos/gatilhos_reptilianos.md +29 -0
- package/framework/skills/helix-system-agent/references/fundamentos/primeiros-principios-copy-chief.md +939 -0
- package/framework/skills/helix-system-agent/references/fundamentos/principios_fundamentais.md +559 -0
- package/framework/skills/helix-system-agent/references/fundamentos/psicologia.md +338 -0
- package/framework/skills/helix-system-agent/references/fundamentos/psicologia_engenheiro.md +191 -0
- package/framework/skills/helix-system-agent/references/fundamentos/puzzle_pieces.md +311 -0
- package/framework/skills/helix-system-agent/references/playbooks/CLAUDE.md +1 -0
- package/framework/skills/helix-system-agent/references/playbooks/fase02_deep_dive_copy.md +390 -0
- package/framework/skills/helix-system-agent/references/playbooks/fase02_mineracao_playbook.md +422 -0
- package/framework/skills/helix-system-agent/references/swipes/ed/masculinity_fruits.md +594 -0
- package/framework/skills/helix-system-agent/references/swipes/ed/sea_salt_01_leads.md +272 -0
- package/framework/skills/helix-system-agent/references/swipes/ed/sea_salt_02_background_emotional.md +140 -0
- package/framework/skills/helix-system-agent/references/swipes/ed/sea_salt_03_marketing_thesis.md +242 -0
- package/framework/skills/helix-system-agent/references/swipes/ed/sea_salt_04_product_offer.md +271 -0
- package/framework/skills/helix-system-agent/references/swipes/ed/sea_salt_05_close_resumo.md +126 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/gut_drops_01_lead_historia.md +360 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/gut_drops_02_problema_mecanismo.md +360 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/gut_drops_03_solucao_produto.md +410 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/gut_drops_04_oferta_fechamento.md +380 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/ozempure_01_leads.md +959 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/ozempure_02_background_emotional.md +305 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/ozempure_03_marketing_thesis.md +420 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/ozempure_04_product_buildup.md +251 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/ozempure_05_oferta.md +334 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/ozempure_06_fechamento.md +418 -0
- package/framework/skills/helix-system-agent/references/swipes/emag/ozempure_07_faq_resumo.md +129 -0
- package/framework/skills/helix-system-agent/references/swipes/swipes_index.md +130 -0
- package/framework/skills/helix-system-agent/references/templates/CLAUDE.md +1 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase01_identificacao.md +78 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase02_pesquisa_mercado.md +386 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase03_avatar_psicologia.md +456 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase04_niveis_consciencia.md +144 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase05_problema_vilao_mup.md +162 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase06_solucao_mus.md +624 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase07_big_offer.md +256 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase08_fechamento_pitch.md +288 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase09_leads_ganchos.md +154 -0
- package/framework/skills/helix-system-agent/references/templates/briefing_fase10_progressao_emocional.md +618 -0
- package/framework/skills/helix-system-agent/references/workflow-phases.md +151 -0
- package/framework/skills/helix-system-agent/scripts/cloaking_detector.py +319 -0
- package/framework/skills/helix-system-agent/scripts/scale_score_calculator.py +186 -0
- package/framework/skills/landing-page-agent/CLAUDE.md +1 -0
- package/framework/skills/landing-page-agent/SKILL.md +602 -0
- package/framework/skills/landing-page-agent/references/escrita.md +569 -0
- package/framework/skills/landing-page-agent/references/exemplos-aprovados.md +159 -0
- package/framework/skills/landing-page-agent/references/psicologia.md +333 -0
- package/framework/skills/landing-page-agent/references/ref_blocos_estrutura_14.md +417 -0
- package/framework/skills/landing-page-agent/references/ref_canva_implementacao.md +184 -0
- package/framework/skills/landing-page-agent/references/ref_copy_patterns_formulas.md +299 -0
- package/framework/skills/landing-page-agent/references/ref_templates_variacoes_nicho.md +263 -0
- package/framework/skills/landing-page-agent/references/swipes/concurso/swipe_lp_gabaritando_portugues.md +633 -0
- package/framework/skills/landing-page-agent/references/swipes/swipes_index.md +101 -0
- package/framework/skills/leads-agent/CLAUDE.md +54 -0
- package/framework/skills/leads-agent/SKILL.md +272 -0
- package/framework/skills/leads-agent/references/anatomia.md +472 -0
- package/framework/skills/leads-agent/references/checklist.md +555 -0
- package/framework/skills/leads-agent/references/escrita.md +430 -0
- package/framework/skills/leads-agent/references/microleads.md +463 -0
- package/framework/skills/leads-agent/references/psicologia.md +341 -0
- package/framework/skills/leads-agent/references/tipos-de-lead.md +346 -0
- package/framework/skills/production-agent/CLAUDE.md +85 -0
- package/framework/skills/production-agent/SKILL.md +648 -0
- package/framework/skills/production-agent/references/escrita.md +569 -0
- package/framework/skills/production-agent/references/production-quick-reference.md +84 -0
- package/framework/skills/production-agent/references/psicologia.md +333 -0
- package/framework/skills/rlm-analyze/skill.md +59 -0
- package/framework/skills/rlm-parallel/skill.md +136 -0
- package/framework/skills/voc-research-agent/CLAUDE.md +1 -0
- package/framework/skills/voc-research-agent/SKILL.md +333 -0
- package/framework/skills/voc-research-agent/references/CLAUDE.md +1 -0
- package/framework/skills/voc-research-agent/references/ref_apify_actors_by_platform.md +45 -0
- package/framework/skills/voc-research-agent/references/ref_limits_and_safety.md +41 -0
- package/framework/skills/voc-research-agent/references/ref_platform_amazon.md +23 -0
- package/framework/skills/voc-research-agent/references/ref_platform_br_mercadolivre.md +41 -0
- package/framework/skills/voc-research-agent/references/ref_platform_br_reclameaqui.md +37 -0
- package/framework/skills/voc-research-agent/references/ref_platform_instagram.md +87 -0
- package/framework/skills/voc-research-agent/references/ref_platform_reddit.md +27 -0
- package/framework/skills/voc-research-agent/references/ref_platform_tiktok.md +94 -0
- package/framework/skills/voc-research-agent/references/ref_platform_youtube.md +82 -0
- package/framework/skills/voc-research-agent/references/ref_protocol_process_save_forget.md +29 -0
- package/framework/stories/florayla-production.md +38 -0
- package/framework/stories/wire-phase-1.md +127 -0
- package/framework/stories/wire-phase-2.md +34 -0
- package/framework/stories/wire-phase-3.md +31 -0
- package/framework/stories/wire-phase-4.md +32 -0
- package/framework/stories/wire-phase-5.md +31 -0
- package/framework/synapse-manifest.yaml +167 -0
- package/framework/templates/CLAUDE.md +1 -0
- package/framework/templates/ads-library-spy-template.md +374 -0
- package/framework/templates/agent-output-template.md +67 -0
- package/framework/templates/agent-prompts/copywriter-prompt.md +71 -0
- package/framework/templates/agent-prompts/linguistic-pattern-extractor.md +128 -0
- package/framework/templates/agent-prompts/researcher-prompt.md +80 -0
- package/framework/templates/agent-prompts/reviewer-prompt.md +59 -0
- package/framework/templates/agent-prompts/synthesizer-prompt.md +43 -0
- package/framework/templates/agent-prompts/voc-instagram-analyst.md +164 -0
- package/framework/templates/agent-prompts/voc-reddit-analyst.md +204 -0
- package/framework/templates/agent-prompts/voc-review-analyst.md +216 -0
- package/framework/templates/agent-prompts/voc-tiktok-analyst.md +185 -0
- package/framework/templates/agent-prompts/voc-youtube-analyst.md +142 -0
- package/framework/templates/agents/agent-template.md +35 -0
- package/framework/templates/agents/memory-template.md +24 -0
- package/framework/templates/agents/soul-template.md +33 -0
- package/framework/templates/aios/agent-template.yaml +82 -0
- package/framework/templates/aios/architecture-tmpl.yaml +651 -0
- package/framework/templates/aios/brainstorming-output-tmpl.yaml +156 -0
- package/framework/templates/aios/brownfield-architecture-tmpl.yaml +476 -0
- package/framework/templates/aios/brownfield-prd-tmpl.yaml +280 -0
- package/framework/templates/aios/competitor-analysis-tmpl.yaml +293 -0
- package/framework/templates/aios/database-schema-request-full.md +522 -0
- package/framework/templates/aios/database-schema-request-lite.md +240 -0
- package/framework/templates/aios/front-end-architecture-tmpl.yaml +206 -0
- package/framework/templates/aios/front-end-spec-tmpl.yaml +349 -0
- package/framework/templates/aios/fullstack-architecture-tmpl.yaml +805 -0
- package/framework/templates/aios/market-research-tmpl.yaml +252 -0
- package/framework/templates/aios/prd-tmpl.yaml +202 -0
- package/framework/templates/aios/project-brief-tmpl.yaml +221 -0
- package/framework/templates/aios/qa-gate-tmpl.yaml +104 -0
- package/framework/templates/aios/story-tmpl.yaml +137 -0
- package/framework/templates/aios/task-template.md +86 -0
- package/framework/templates/aios/workflow-template.yaml +134 -0
- package/framework/templates/briefing-complete-template.md +363 -0
- package/framework/templates/checklists/creative-acceptance.yaml +61 -0
- package/framework/templates/checklists/email-acceptance.yaml +61 -0
- package/framework/templates/checklists/landing-page-acceptance.yaml +68 -0
- package/framework/templates/checklists/mup-mus-acceptance.yaml +111 -0
- package/framework/templates/checklists/vsl-acceptance.yaml +91 -0
- package/framework/templates/context-hierarchy-template.md +314 -0
- package/framework/templates/copy-validation-checklist.md +296 -0
- package/framework/templates/criativos-template.md +251 -0
- package/framework/templates/email-sequence-template.md +263 -0
- package/framework/templates/etl-checklist.md +64 -0
- package/framework/templates/extended-thinking-protocol.md +178 -0
- package/framework/templates/funnel-reverse-template.md +246 -0
- package/framework/templates/helix-state-template.yaml +107 -0
- package/framework/templates/landing-page-template.md +406 -0
- package/framework/templates/mecanismo-unico-template.md +239 -0
- package/framework/templates/mup-consensus-validation.md +154 -0
- package/framework/templates/mup-human-test.md +176 -0
- package/framework/templates/mup-mus-discovery.md +192 -0
- package/framework/templates/niche-pack/biblioteca-template.md +105 -0
- package/framework/templates/niche-pack/cliches-template.md +64 -0
- package/framework/templates/niche-pack/context-template.md +120 -0
- package/framework/templates/niche-pack/helix-state-template.yaml +107 -0
- package/framework/templates/niche-pack/task-plan-template.md +89 -0
- package/framework/templates/partials/attribution-header.md +30 -0
- package/framework/templates/partials/epistemic-header.md +18 -0
- package/framework/templates/phase-review-checklist.md +51 -0
- package/framework/templates/processing-registry-template.yaml +24 -0
- package/framework/templates/research-deliverables-checklist.md +127 -0
- package/framework/templates/rmbc-ii-workflow.md +248 -0
- package/framework/templates/story-criativo.md +392 -0
- package/framework/templates/story-deliverable-generic.md +248 -0
- package/framework/templates/story-email.md +444 -0
- package/framework/templates/story-lp-bloco.md +340 -0
- package/framework/templates/story-vsl-capitulo.md +396 -0
- package/framework/templates/swipe-analysis-specs.md +270 -0
- package/framework/templates/swipe-decomposition.md +171 -0
- package/framework/templates/tools-tracking-template.md +207 -0
- package/framework/templates/trends-analysis-template.md +288 -0
- package/framework/templates/voc-linguistic-patterns.md +148 -0
- package/framework/templates/voc-squad-consolidation.md +268 -0
- package/framework/templates/voc-viral-extraction-template.md +174 -0
- package/framework/templates/vsl-template.md +237 -0
- package/framework/workflows/CLAUDE.md +1 -0
- package/framework/workflows/helix-dag.state.json +16 -0
- package/framework/workflows/helix-dag.yaml +248 -0
- package/framework/workflows/helix-pipeline.yaml +175 -0
- package/framework/workflows/production-dag.yaml +532 -0
- package/framework/workflows/production-workflow.md +97 -0
- package/framework/workflows/production-workflow.yaml +221 -0
- package/framework/workflows/research-dag.yaml +288 -0
- package/framework/workflows/research-workflow.md +89 -0
- package/framework/workflows/research-workflow.yaml +92 -0
- package/framework/workflows/validation-workflow.md +111 -0
- package/installer/doctor.js +142 -0
- package/installer/install.js +272 -0
- package/installer/new-offer.js +108 -0
- package/installer/transpile.js +200 -0
- package/installer/update.js +57 -0
- package/installer/verify.js +124 -0
- package/lib/platform.js +155 -0
- package/lib/settings-builder.js +190 -0
- package/package.json +79 -0
- package/templates/ecosystem/.claude/CLAUDE.md +4 -0
- package/templates/ecosystem/.claude/rules/offers/CLAUDE.md +5 -0
- package/templates/ecosystem/.synapse/agent-atlas +9 -0
- package/templates/ecosystem/.synapse/agent-blade +8 -0
- package/templates/ecosystem/.synapse/agent-cipher +8 -0
- package/templates/ecosystem/.synapse/agent-echo +10 -0
- package/templates/ecosystem/.synapse/agent-forge +9 -0
- package/templates/ecosystem/.synapse/agent-hawk +9 -0
- package/templates/ecosystem/.synapse/agent-ops +7 -0
- package/templates/ecosystem/.synapse/agent-scout +9 -0
- package/templates/ecosystem/.synapse/agent-strategist +7 -0
- package/templates/ecosystem/.synapse/agent-vox +10 -0
- package/templates/ecosystem/.synapse/anti-homog +41 -0
- package/templates/ecosystem/.synapse/bracket-config.yaml +43 -0
- package/templates/ecosystem/.synapse/commands +36 -0
- package/templates/ecosystem/.synapse/constitution +40 -0
- package/templates/ecosystem/.synapse/craft +43 -0
- package/templates/ecosystem/.synapse/dre +27 -0
- package/templates/ecosystem/.synapse/helix +29 -0
- package/templates/ecosystem/.synapse/learning/gotcha-registry.yaml +16 -0
- package/templates/ecosystem/.synapse/manifest +71 -0
- package/templates/ecosystem/.synapse/mecanismo +27 -0
- package/templates/ecosystem/.synapse/metrics/hook-metrics.json +52 -0
- package/templates/ecosystem/.synapse/quality-gates +49 -0
- package/templates/ecosystem/.synapse/sessions/.gitkeep +0 -0
- package/templates/ecosystem/.synapse/star-commands/create-squad +17 -0
- package/templates/ecosystem/.synapse/star-commands/diagnose +15 -0
- package/templates/ecosystem/.synapse/star-commands/elicit-context +11 -0
- package/templates/ecosystem/.synapse/star-commands/elicit-mecanismo +11 -0
- package/templates/ecosystem/.synapse/star-commands/queue +6 -0
- package/templates/ecosystem/.synapse/tool-matrix +50 -0
- package/templates/ecosystem/.synapse/workflow-briefing-pipeline +7 -0
- package/templates/ecosystem/.synapse/workflow-production-pipeline +8 -0
- package/templates/ecosystem/.synapse/workflow-research-pipeline +7 -0
- package/templates/ecosystem/.synapse/workflow-review-pipeline +7 -0
- package/templates/ecosystem/squads/copy-chief/.synapse/manifest +9 -0
- package/templates/ecosystem/squads/copy-chief/.synapse/production-rules +8 -0
- package/templates/ecosystem/squads/copy-chief/.synapse/routing +14 -0
- package/templates/ecosystem/squads/copy-chief/capabilities.yaml +211 -0
- package/templates/ecosystem/squads/copy-chief/checklists/creative-acceptance.md +61 -0
- package/templates/ecosystem/squads/copy-chief/checklists/email-acceptance.md +61 -0
- package/templates/ecosystem/squads/copy-chief/checklists/landing-page-acceptance.md +68 -0
- package/templates/ecosystem/squads/copy-chief/checklists/mup-mus-acceptance.md +111 -0
- package/templates/ecosystem/squads/copy-chief/checklists/vsl-acceptance.md +91 -0
- package/templates/ecosystem/squads/copy-chief/config/copy-standards.md +32 -0
- package/templates/ecosystem/squads/copy-chief/config/mcp-stack.md +48 -0
- package/templates/ecosystem/squads/copy-chief/config/tool-usage-matrix.md +366 -0
- package/templates/ecosystem/squads/copy-chief/data/anti-homogeneization.md +228 -0
- package/templates/ecosystem/squads/copy-chief/data/copy-chief-data-requirements.yaml +171 -0
- package/templates/ecosystem/squads/copy-chief/data/craft/checklist.md +95 -0
- package/templates/ecosystem/squads/copy-chief/data/craft/chief-principles.md +84 -0
- package/templates/ecosystem/squads/copy-chief/data/craft/erros-comuns.md +113 -0
- package/templates/ecosystem/squads/copy-chief/data/craft/escrita.md +667 -0
- package/templates/ecosystem/squads/copy-chief/data/craft/psicologia.md +207 -0
- package/templates/ecosystem/squads/copy-chief/data/creative/angulos.md +68 -0
- package/templates/ecosystem/squads/copy-chief/data/creative/breakdown.md +328 -0
- package/templates/ecosystem/squads/copy-chief/data/critic/anti-patterns.md +270 -0
- package/templates/ecosystem/squads/copy-chief/data/critic/checklist-validacao.md +238 -0
- package/templates/ecosystem/squads/copy-chief/data/critic/exemplos-aprovados.md +216 -0
- package/templates/ecosystem/squads/copy-chief/data/critic/exemplos-reprovados.md +312 -0
- package/templates/ecosystem/squads/copy-chief/data/critic/metodologia-stand.md +192 -0
- package/templates/ecosystem/squads/copy-chief/data/dre-framework.md +62 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-phases-reference.md +162 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/DRE.md +195 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/RMBC.md +144 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/constraints.md +98 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/formulas_e_criterios.md +124 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/fundamentos/comunicacao_pedreiro_resumo.md +129 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/fundamentos/escrita.md +575 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/fundamentos/gatilhos_reptilianos.md +29 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/fundamentos/primeiros-principios-copy-chief.md +939 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/fundamentos/principios_fundamentais.md +559 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/fundamentos/psicologia_engenheiro.md +191 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/fundamentos/puzzle_pieces.md +311 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/metodologias.md +201 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/playbooks/fase02_deep_dive_copy.md +390 -0
- package/templates/ecosystem/squads/copy-chief/data/helix-ref/playbooks/fase02_mineracao_playbook.md +422 -0
- package/templates/ecosystem/squads/copy-chief/data/leads/anatomia.md +472 -0
- package/templates/ecosystem/squads/copy-chief/data/leads/microleads.md +463 -0
- package/templates/ecosystem/squads/copy-chief/data/leads/tipos-de-lead.md +346 -0
- package/templates/ecosystem/squads/copy-chief/data/lp/ref_blocos_estrutura_14.md +417 -0
- package/templates/ecosystem/squads/copy-chief/data/lp/ref_canva_implementacao.md +184 -0
- package/templates/ecosystem/squads/copy-chief/data/lp/ref_copy_patterns_formulas.md +299 -0
- package/templates/ecosystem/squads/copy-chief/data/lp/ref_templates_variacoes_nicho.md +263 -0
- package/templates/ecosystem/squads/copy-chief/data/mecanismo-unico-framework.md +212 -0
- package/templates/ecosystem/squads/copy-chief/data/voc-research.md +291 -0
- package/templates/ecosystem/squads/copy-chief/squad.yaml +89 -0
- package/templates/ecosystem/squads/copy-chief/tasks/competitor-analysis.md +24 -0
- package/templates/ecosystem/squads/copy-chief/tasks/helix-briefing.md +29 -0
- package/templates/ecosystem/squads/copy-chief/tasks/produce-creatives.md +27 -0
- package/templates/ecosystem/squads/copy-chief/tasks/produce-emails.md +23 -0
- package/templates/ecosystem/squads/copy-chief/tasks/produce-landing-page.md +25 -0
- package/templates/ecosystem/squads/copy-chief/tasks/produce-vsl.md +26 -0
- package/templates/ecosystem/squads/copy-chief/tasks/validate-deliverable.md +23 -0
- package/templates/ecosystem/squads/copy-chief/tasks/validate-mecanismo.md +22 -0
- package/templates/ecosystem/squads/copy-chief/tasks/voc-extraction.md +26 -0
- package/templates/ecosystem/squads/copy-chief/templates/delivery-checklist.yaml +61 -0
- package/templates/ecosystem/squads/copy-chief/templates/story-template.yaml +29 -0
- package/templates/ecosystem/squads/copy-chief/workflows/briefing-pipeline.yaml +49 -0
- package/templates/ecosystem/squads/copy-chief/workflows/production-pipeline.yaml +49 -0
- package/templates/ecosystem/squads/copy-chief/workflows/research-pipeline.yaml +38 -0
- package/templates/ecosystem/squads/copy-chief/workflows/review-pipeline.yaml +35 -0
- package/templates/mcp.json.tpl +53 -0
- package/templates/settings.json.tpl +313 -0
|
@@ -0,0 +1,2436 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"generated": "2026-02-24T15:22:21.356Z",
|
|
4
|
+
"totalExperts": 24,
|
|
5
|
+
"experts": {
|
|
6
|
+
"abraham": {
|
|
7
|
+
"name": "Jay Abraham",
|
|
8
|
+
"slug": "abraham",
|
|
9
|
+
"tier": "T1_STRATEGIC",
|
|
10
|
+
"sections": [
|
|
11
|
+
"strategy_multiplier",
|
|
12
|
+
"jv_architecture",
|
|
13
|
+
"preeminence",
|
|
14
|
+
"risk_reversal_advanced",
|
|
15
|
+
"optimization_sequence",
|
|
16
|
+
"parthenon_revenue",
|
|
17
|
+
"referral_systems",
|
|
18
|
+
"usp_positioning"
|
|
19
|
+
],
|
|
20
|
+
"tokenBudget": 400,
|
|
21
|
+
"coreIdentity": "The $21.7 Billion Dollar Man. Strategy of Preeminence. Geometric growth through the 3 Multipliers. JV master. Risk reversal innovator. The man who sees the invisible assets. Optimization before acquisition. Trusted advisor, not salesperson.",
|
|
22
|
+
"principleCount": 10,
|
|
23
|
+
"techniqueCount": 7,
|
|
24
|
+
"principles": [
|
|
25
|
+
"Jay Abraham does not sell.",
|
|
26
|
+
"That distinction is not semantic -- it is the bedrock of everything he has built across 10,000+ clients in 1,000+ industries generating over $21.7 billion in documented results.",
|
|
27
|
+
"The Strategy of Preeminence is Abraham's philosophical core.",
|
|
28
|
+
"It states that you must fall in love with your CLIENT, not your product.",
|
|
29
|
+
"You must care about their well-being more than you care about the transaction.",
|
|
30
|
+
"Identify which multiplier is weakest in the current funnel",
|
|
31
|
+
"Design every piece of copy to impact at least 2 multipliers simultaneously",
|
|
32
|
+
"Recommend against your product when it's genuinely not the right fit",
|
|
33
|
+
"Always operate at Level 2 minimum -- Level 1 is invisible in the market",
|
|
34
|
+
"Name your guarantee (e.g., \"The Triple Protection Promise\")"
|
|
35
|
+
],
|
|
36
|
+
"techniques": [
|
|
37
|
+
"The 3 Multipliers (Geometric Growth Engine)",
|
|
38
|
+
"Strategy of Preeminence (Trusted Advisor Positioning)",
|
|
39
|
+
"Risk Reversal Hierarchy",
|
|
40
|
+
"JV and Host-Beneficiary Architecture",
|
|
41
|
+
"Optimization Before Acquisition",
|
|
42
|
+
"Power Parthenon Strategy",
|
|
43
|
+
"Referral Systems Architecture"
|
|
44
|
+
],
|
|
45
|
+
"useCases": [
|
|
46
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
47
|
+
],
|
|
48
|
+
"qualityCriteria": [],
|
|
49
|
+
"antiPatterns": [
|
|
50
|
+
"What Abraham Would NEVER Do: Why It's Wrong",
|
|
51
|
+
"Diving board model = fragile: Power Parthenon with 7+ pillars",
|
|
52
|
+
"**Commodity positioning**: No USP = price competition = death",
|
|
53
|
+
"Pouring water into a leaky bucket: Optimize all 3 multipliers BEFORE spending on acquisition",
|
|
54
|
+
"**Weak or absent guarantee**: Risk on the buyer = friction = lost sales",
|
|
55
|
+
"Ignoring backend = leaving 80% of revenue on the table: Backend sequences, continuity, LTV maximization",
|
|
56
|
+
"**Selling from need**: Desperation energy repels; advisory energy attracts",
|
|
57
|
+
"Convergence toward commodity = race to the bottom: 43+ JV structures, Parthenon pillars, distinctive USP",
|
|
58
|
+
"**Ignoring dormant assets**: Hidden gold left unmined",
|
|
59
|
+
"Limits upside, misaligns incentives: Performance-based: PI (per inquiry), PO (per order), PLV (per lifetime value)",
|
|
60
|
+
"**Waiting to add value**: Delaying value until payment = transactional"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"agora": {
|
|
64
|
+
"name": "Agora Financial Model",
|
|
65
|
+
"slug": "agora",
|
|
66
|
+
"tier": "T1_STRATEGIC",
|
|
67
|
+
"sections": [
|
|
68
|
+
"financial_promo",
|
|
69
|
+
"magalog",
|
|
70
|
+
"advertorial",
|
|
71
|
+
"fear_greed_copy",
|
|
72
|
+
"fascinations",
|
|
73
|
+
"big_idea",
|
|
74
|
+
"offer_architecture"
|
|
75
|
+
],
|
|
76
|
+
"tokenBudget": 500,
|
|
77
|
+
"coreIdentity": "The Agora model. $2B+ revenue machine built on financial newsletter promotions. Long-form direct response mastery. \"Big Idea\" driven. Control-beating culture with royalty-based copywriter compensation. Fear-greed oscillation at industrial scale. The organization that systematized billion-dollar direct response copy more than any other in history.",
|
|
78
|
+
"principleCount": 10,
|
|
79
|
+
"techniqueCount": 7,
|
|
80
|
+
"principles": [
|
|
81
|
+
"The Agora model has produced more billion-dollar copy than any other organization in direct response history.",
|
|
82
|
+
"The machine grew from $35 million to a high-water mark of $248 million in annual revenue at Agora Financial alone -- one division of a multi-billion-dollar publishing empire spanning 22+ newsletters across finance and health.",
|
|
83
|
+
"The formula is deceptively simple: find a mass fear or mass greed rooted in current events, attach a proprietary mechanism that explains WHY the fear or greed is justified, name it something memorable, and prove it works with overwhelming specificity.",
|
|
84
|
+
"Every promo is a financial thesis disguised as a sales letter.",
|
|
85
|
+
"Every Agora promo follows the same meta-structure: the world is changing in a specific, dramatic way that most people do not understand.",
|
|
86
|
+
"Spend 80% of your time finding the idea, 20% writing the copy",
|
|
87
|
+
"Test 5-10 big ideas before committing to one",
|
|
88
|
+
"Open with fear (more urgent than greed -- fear of loss outweighs desire for gain)",
|
|
89
|
+
"Alternate every 500-800 words in long-form promos",
|
|
90
|
+
"Make predictions SPECIFIC: dates, dollar amounts, percentages"
|
|
91
|
+
],
|
|
92
|
+
"techniques": [
|
|
93
|
+
"The Big Idea (Power of One)",
|
|
94
|
+
"Fear-Greed Oscillation",
|
|
95
|
+
"The Prediction Lead",
|
|
96
|
+
"The Secret Lead",
|
|
97
|
+
"Magalog Voice",
|
|
98
|
+
"The Advertorial",
|
|
99
|
+
"Insider Language and Tribal Exclusivity"
|
|
100
|
+
],
|
|
101
|
+
"useCases": [
|
|
102
|
+
"Best for: VSL, Landing Page, Briefing",
|
|
103
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
104
|
+
],
|
|
105
|
+
"qualityCriteria": [
|
|
106
|
+
"Narrative flow (slippery slope)",
|
|
107
|
+
"Curiosity seeds planted"
|
|
108
|
+
],
|
|
109
|
+
"antiPatterns": [
|
|
110
|
+
"Anti-Pattern: Why It Fails",
|
|
111
|
+
"Reader lost in first 10 seconds; no emotional hook: Power lead with immediate prediction, secret, or fear trigger",
|
|
112
|
+
"**Generic financial advice**: \"Invest in a diversified portfolio\" -- sounds like every broker",
|
|
113
|
+
"Promo becomes a product brochure instead of a thesis: One Big Idea that is timely, contrarian, and emotionally compelling",
|
|
114
|
+
"**Product-first copy**: Leading with the newsletter feels like a sales pitch",
|
|
115
|
+
"\"We pick good stocks\" -- every newsletter says this: Proprietary named mechanism: \"The Livingston Rotation\" or \"The Crash Code\"",
|
|
116
|
+
"**Passive voice**: Academic tone kills urgency and emotional engagement",
|
|
117
|
+
"\"$100,000\" feels made up; \"93%\" feels fabricated: Exact numbers: \"$97,342\" and \"91.7%\" signal real data, not estimates",
|
|
118
|
+
"**Selling the newsletter**: Prospect does not want a newsletter -- they want the RESULT",
|
|
119
|
+
"\"Great newsletter!\" has zero selling power: Named testimonials with specific results: \"Robert K., Tampa: '$43,217 in 6 months'\"",
|
|
120
|
+
"**Missing compliance disclaimers**: FTC/SEC violations can shut down the entire operation",
|
|
121
|
+
"Competing ideas dilute impact and confuse the reader: Ruthless focus: ONE idea, ONE emotion, ONE mechanism, ONE story"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
"bencivenga": {
|
|
125
|
+
"name": "Gary Bencivenga",
|
|
126
|
+
"slug": "bencivenga",
|
|
127
|
+
"tier": "T1_STRATEGIC",
|
|
128
|
+
"sections": [
|
|
129
|
+
"persuasion_core",
|
|
130
|
+
"implicit_promise",
|
|
131
|
+
"proof_structure",
|
|
132
|
+
"belief_shift",
|
|
133
|
+
"conviction_architecture"
|
|
134
|
+
],
|
|
135
|
+
"tokenBudget": 400,
|
|
136
|
+
"coreIdentity": "The greatest living copywriter (retired). Beat more controls than anyone in history. Persuasion equations. Implicit promises. Proof as the ultimate selling force. Conviction over claims. The \"One Key Idea\" discipline. 80/20 research-to-writing ratio. Belief harvesting. Lead type mastery.",
|
|
137
|
+
"principleCount": 10,
|
|
138
|
+
"techniqueCount": 7,
|
|
139
|
+
"principles": [
|
|
140
|
+
"The strongest selling is done by the strongest proof.",
|
|
141
|
+
"And THAT is why proof sells -- because the reader knows instinctively that if you went to the trouble of proving it, it must be true.",
|
|
142
|
+
"The best copy does not ARGUE the prospect into buying.",
|
|
143
|
+
"It creates a CONVICTION so deep that buying feels like the only rational act.",
|
|
144
|
+
"The prospect should feel they DISCOVERED the truth, not that they were SOLD it.",
|
|
145
|
+
"Build ALL FOUR components before writing the first sentence",
|
|
146
|
+
"Verify urgency is FELT, not just logical",
|
|
147
|
+
"Tell stories that IMPLY the promise",
|
|
148
|
+
"Use testimonials where the promise is embedded in someone else's words",
|
|
149
|
+
"Stack minimum 3 proof types for any major claim"
|
|
150
|
+
],
|
|
151
|
+
"techniques": [
|
|
152
|
+
"The Persuasion Equation (Expanded)",
|
|
153
|
+
"Implicit Promises",
|
|
154
|
+
"Proof Architecture (The Proof Sandwich)",
|
|
155
|
+
"Belief Shift Architecture",
|
|
156
|
+
"Conviction Devices",
|
|
157
|
+
"The One Key Idea Principle",
|
|
158
|
+
"The World's Best Control Methodology"
|
|
159
|
+
],
|
|
160
|
+
"useCases": [
|
|
161
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
162
|
+
],
|
|
163
|
+
"qualityCriteria": [
|
|
164
|
+
"Persuasion principles applied correctly",
|
|
165
|
+
"Claims backed by verifiable facts",
|
|
166
|
+
"Research depth before writing",
|
|
167
|
+
"Narrative flow (slippery slope)",
|
|
168
|
+
"Curiosity seeds planted"
|
|
169
|
+
],
|
|
170
|
+
"antiPatterns": [
|
|
171
|
+
"Modern readers assume BS until proven; claims activate the critical faculty: Replace every claim with a proof element that IMPLIES the claim",
|
|
172
|
+
"Explicit promises when implicit is possible: Stated promises are evaluated; inferred promises are believed",
|
|
173
|
+
"Creates resistance, not openness; reader digs in: Validate the old belief, then show a deeper truth that ENCOMPASSES it",
|
|
174
|
+
"Enthusiasm over evidence: Energy without proof = hype; repels sophisticated buyers",
|
|
175
|
+
"Wit that draws attention to itself distracts from the IDEA: Let the IDEA do the selling; clarity over cleverness, always",
|
|
176
|
+
"Writing before studying the control: Cannot beat what you do not understand; flying blind",
|
|
177
|
+
"Reader can only hold one idea; competing ideas cancel each other: Choose ONE, make everything else subordinate",
|
|
178
|
+
"Generic promises: \"Feel better\" and \"lose weight\" can be claimed by anyone",
|
|
179
|
+
"Going straight to biggest claim invites skepticism: Build from moderate to extraordinary with escalating proof",
|
|
180
|
+
"All proof, no emotion: Data alone does not create buying desire",
|
|
181
|
+
"A timid guarantee signals uncertainty about the product: Make the guarantee so bold it functions as proof of confidence",
|
|
182
|
+
"Testing small variations instead of big ideas: Optimizing the wrong concept yields marginal gains",
|
|
183
|
+
"80% research, 20% writing -- violating this ratio means missing the ONE insight: Spend 4x more time on research than writing; find the insight FIRST",
|
|
184
|
+
"Fighting prospect's beliefs: Gravity always wins; you cannot argue someone out of a belief they hold emotionally",
|
|
185
|
+
"\"Dear [FIRST_NAME]\" is not personalization; it is a mail merge: Make the reader feel this solution was DESIGNED for someone in their EXACT situation"
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
"brown": {
|
|
189
|
+
"name": "Todd Brown",
|
|
190
|
+
"slug": "brown",
|
|
191
|
+
"tier": "T1_STRATEGIC",
|
|
192
|
+
"sections": [
|
|
193
|
+
"mecanismo",
|
|
194
|
+
"big_idea",
|
|
195
|
+
"offer_stack",
|
|
196
|
+
"paradigm_shift"
|
|
197
|
+
],
|
|
198
|
+
"tokenBudget": 500,
|
|
199
|
+
"coreIdentity": "The Mechanism Man. E5 Method. Unique Mechanism obsession. Anti-commodity. Marketing OVER copywriting. The offer IS the strategy.",
|
|
200
|
+
"principleCount": 10,
|
|
201
|
+
"techniqueCount": 8,
|
|
202
|
+
"principles": [
|
|
203
|
+
"The mechanism IS the marketing.",
|
|
204
|
+
"Without a unique mechanism, you're selling a commodity.",
|
|
205
|
+
"Commodities compete on price.",
|
|
206
|
+
"Mechanisms compete on BELIEF.",
|
|
207
|
+
"Every successful offer has ONE Big Marketing Idea powered by a unique mechanism that explains WHY this solution works when everything else failed.",
|
|
208
|
+
"Always start with strategy before touching a single word of copy",
|
|
209
|
+
"Diagnose before prescribing: What is the Big Idea? What is the mechanism?",
|
|
210
|
+
"Spend 40-55% of copy on E1+E2 (problem + mechanism). This is where belief is built.",
|
|
211
|
+
"E1 must REFRAME the problem. Not repeat what they already know.",
|
|
212
|
+
"Ground the mechanism in something REAL (anatomy, physiology, psychology)"
|
|
213
|
+
],
|
|
214
|
+
"techniques": [
|
|
215
|
+
"Marketing Over Copywriting Philosophy",
|
|
216
|
+
"The E5 Method (Complete Campaign Architecture)",
|
|
217
|
+
"Unique Mechanism Architecture (Complete Framework)",
|
|
218
|
+
"Big Marketing Idea (BMI)",
|
|
219
|
+
"New Opportunity vs. Improvement",
|
|
220
|
+
"Paradigm Shift Construction",
|
|
221
|
+
"Offer Stack Architecture",
|
|
222
|
+
"Anti-Commodity Positioning"
|
|
223
|
+
],
|
|
224
|
+
"useCases": [
|
|
225
|
+
"Best for: VSL, Landing Page, Briefing",
|
|
226
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
227
|
+
],
|
|
228
|
+
"qualityCriteria": [
|
|
229
|
+
"Unique Mechanism present and differentiated",
|
|
230
|
+
"New Opportunity positioning (not improvement)",
|
|
231
|
+
"Value Equation optimization",
|
|
232
|
+
"Offer stack coherence"
|
|
233
|
+
],
|
|
234
|
+
"antiPatterns": [
|
|
235
|
+
"#: Pattern",
|
|
236
|
+
"Invites comparison = commodity: \"You just told them to Google your competitors\"",
|
|
237
|
+
"2: No unique mechanism",
|
|
238
|
+
"Commodity positioning (\"me too\"): Prospect mentally files you with everything else",
|
|
239
|
+
"Confuses prospect, dilutes belief: \"One mechanism. One offer. No exceptions.\"",
|
|
240
|
+
"5: Mechanism without paradigm shift",
|
|
241
|
+
"\"If they can fit your mechanism into their OLD paradigm, you haven't shifted anything.\": ### Tactical Anti-Patterns",
|
|
242
|
+
"Feature-based stack: Components without mechanism connection = filler",
|
|
243
|
+
"8: Rushing E1+E2",
|
|
244
|
+
"Abstract paradigm shift: Must be visual and tangible",
|
|
245
|
+
"11: Copy-first approach",
|
|
246
|
+
"Mechanism without visual: If they can't SEE it, they can't believe it",
|
|
247
|
+
"14: Attacking the prospect's old belief",
|
|
248
|
+
"Value stack without mechanism connection: Random bonuses dilute the offer",
|
|
249
|
+
"17: Naming mechanism after the product",
|
|
250
|
+
"Skipping the \"absolve\" function: Prospect still feels blame = resistance",
|
|
251
|
+
"20: Using existing category labels",
|
|
252
|
+
"### The 5 Deadly Sins of Mechanism Marketing: Sin",
|
|
253
|
+
"**No Mechanism**: Selling benefits without explaining WHY",
|
|
254
|
+
"Mechanism that can't be visualized: Prospect doesn't understand, doesn't believe",
|
|
255
|
+
"**Orphan Mechanism**: Mechanism disconnected from the product"
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
"brunson": {
|
|
259
|
+
"name": "Russell Brunson",
|
|
260
|
+
"slug": "brunson",
|
|
261
|
+
"tier": "T2_EXECUTION",
|
|
262
|
+
"sections": [
|
|
263
|
+
"funnel_architecture",
|
|
264
|
+
"attractive_character",
|
|
265
|
+
"epiphany_bridge",
|
|
266
|
+
"webinar_script"
|
|
267
|
+
],
|
|
268
|
+
"tokenBudget": 400,
|
|
269
|
+
"coreIdentity": "DotCom Secrets. Expert Secrets. Traffic Secrets. The Funnel Hacker. Attractive Character architect. Epiphany Bridge storyteller. Perfect Webinar scripter. Value Ladder strategist. New Opportunity evangelist. Dream 100 tactician. Hook-Story-Offer fundamentalist. One Funnel Away mentor. The man who built a $360M company on the thesis that every business problem is a funnel problem.",
|
|
270
|
+
"principleCount": 10,
|
|
271
|
+
"techniqueCount": 7,
|
|
272
|
+
"principles": [
|
|
273
|
+
"You are one funnel away.",
|
|
274
|
+
"This is not a motivational slogan -- it is a structural diagnosis.",
|
|
275
|
+
"Every business that struggles does so because it has a funnel problem, not a product problem, not a traffic problem, not a market problem.",
|
|
276
|
+
"The right funnel matches the right offer to the right traffic at the right temperature.",
|
|
277
|
+
"Fix the funnel and you fix the business.",
|
|
278
|
+
"Choose ONE identity and commit to it consistently across all content",
|
|
279
|
+
"Lead with backstory BEFORE credentials (connection before authority)",
|
|
280
|
+
"Make the backstory RELATABLE (same problems as the prospect, same language)",
|
|
281
|
+
"Include specific failures that VALIDATE the prospect's own failed attempts",
|
|
282
|
+
"Spend 70% of the webinar on BELIEF (Secrets) and 30% on SELLING (Stack/Close)"
|
|
283
|
+
],
|
|
284
|
+
"techniques": [
|
|
285
|
+
"The Attractive Character (4 Identities)",
|
|
286
|
+
"The Epiphany Bridge",
|
|
287
|
+
"The Perfect Webinar Script (3 Secrets Framework)",
|
|
288
|
+
"Funnel Architecture (Value Ladder Execution)",
|
|
289
|
+
"Hook-Story-Offer (The Universal Diagnostic)",
|
|
290
|
+
"Email Architecture (Soap Opera + Seinfeld)",
|
|
291
|
+
"Traffic Architecture (Dream 100 + Core 3)"
|
|
292
|
+
],
|
|
293
|
+
"useCases": [
|
|
294
|
+
"Best for: Funnel Design, Webinar Scripts",
|
|
295
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
296
|
+
],
|
|
297
|
+
"qualityCriteria": [
|
|
298
|
+
"Narrative flow (slippery slope)",
|
|
299
|
+
"Curiosity seeds planted",
|
|
300
|
+
"Value Equation optimization",
|
|
301
|
+
"Offer stack coherence"
|
|
302
|
+
],
|
|
303
|
+
"antiPatterns": [
|
|
304
|
+
"Anti-Pattern: Why Brunson Would NEVER Do This",
|
|
305
|
+
"Invites comparison with every failed attempt: Sell a NEW OPPORTUNITY that makes past failures irrelevant",
|
|
306
|
+
"Presenting without stories: Logic alone doesn't create belief or emotion",
|
|
307
|
+
"No mass movement = no evangelism = no organic growth: Build a Future-Based Cause with identity labels",
|
|
308
|
+
"Launching without funnel hacking: Building from scratch when proven models exist is ego",
|
|
309
|
+
"Revenue ceiling, no customer journey: Value Ladder with ascending offers",
|
|
310
|
+
"Pitching before connecting: Cold audiences reject pitches",
|
|
311
|
+
"Free consulting that generates no revenue: Every piece of content, every email, every video has an offer",
|
|
312
|
+
"Running ads without Dream 100: Fishing without knowing where the fish are",
|
|
313
|
+
"Corporate = forgettable, impersonal, no connection: Conversational, story-driven, Attractive Character voice",
|
|
314
|
+
"Objection handling through logic: Logical arguments trigger counter-arguments"
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
"caples": {
|
|
318
|
+
"name": "John Caples",
|
|
319
|
+
"slug": "caples",
|
|
320
|
+
"tier": "T2_EXECUTION",
|
|
321
|
+
"sections": [
|
|
322
|
+
"headline_testing",
|
|
323
|
+
"ad_copy",
|
|
324
|
+
"split_test",
|
|
325
|
+
"proven_headlines",
|
|
326
|
+
"first_paragraph",
|
|
327
|
+
"lead"
|
|
328
|
+
],
|
|
329
|
+
"tokenBudget": 300,
|
|
330
|
+
"coreIdentity": "The Father of Direct Response. Tested Advertising Methods. The A/B testing pioneer. Headline formulas validated by coupon response. Measurable results over creative ego. Data-driven decisions from 58 years at BBDO.",
|
|
331
|
+
"principleCount": 10,
|
|
332
|
+
"techniqueCount": 7,
|
|
333
|
+
"principles": [
|
|
334
|
+
"The most important decision in advertising is the headline.",
|
|
335
|
+
"On the average, five times as many people read the headline as read the body copy.",
|
|
336
|
+
"When you have written your headline, you have spent eighty cents out of your dollar.",
|
|
337
|
+
"If your headline does not sell, you have wasted 80% of your money.",
|
|
338
|
+
"John Caples spent 58 years at BBDO running controlled split-run tests on thousands of advertisements.",
|
|
339
|
+
"Write 10-25 headline variations before selecting candidates for testing",
|
|
340
|
+
"Include the key benefit directly in the headline -- never rely on subheads",
|
|
341
|
+
"Combine types when possible: Self-Interest + Curiosity is the most powerful combination",
|
|
342
|
+
"Self-Interest headlines should be your default -- they outperform all other types",
|
|
343
|
+
"Test ONE variable at a time -- headline A vs headline B, everything else identical"
|
|
344
|
+
],
|
|
345
|
+
"techniques": [
|
|
346
|
+
"Headline Supremacy (The 80% Rule)",
|
|
347
|
+
"The 4 Headline Types (Caples Classification)",
|
|
348
|
+
"The A/B Testing Discipline",
|
|
349
|
+
"Benefit-First Writing",
|
|
350
|
+
"Story-Driven Persuasion (The \"They Laughed\" Formula)",
|
|
351
|
+
"News Angle Exploitation",
|
|
352
|
+
"Tested Specificity"
|
|
353
|
+
],
|
|
354
|
+
"useCases": [
|
|
355
|
+
"Best for: Creatives, VSL, Landing Page, Emails",
|
|
356
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
357
|
+
],
|
|
358
|
+
"qualityCriteria": [
|
|
359
|
+
"Measurable, testable claims",
|
|
360
|
+
"A/B testing readiness",
|
|
361
|
+
"Headline effectiveness (information gap)"
|
|
362
|
+
],
|
|
363
|
+
"antiPatterns": [
|
|
364
|
+
"#: Name",
|
|
365
|
+
"No specific benefit: Name the benefit explicitly",
|
|
366
|
+
"02: Clever Over Clear",
|
|
367
|
+
"Untested Assumption: Running single headline",
|
|
368
|
+
"Entertainment over selling: Benefit-driven copy always",
|
|
369
|
+
"05: Feature Dump",
|
|
370
|
+
"Missing CTA: No clear next step",
|
|
371
|
+
"Stopping tests too early: Run to statistical significance",
|
|
372
|
+
"08: Multi-Variable Test",
|
|
373
|
+
"Opinion Override: Personal taste over data",
|
|
374
|
+
"Random negativity: Tie negative to specific fear"
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
"carlton": {
|
|
378
|
+
"name": "John Carlton",
|
|
379
|
+
"slug": "carlton",
|
|
380
|
+
"tier": "T2_EXECUTION",
|
|
381
|
+
"sections": [
|
|
382
|
+
"freelance_copy",
|
|
383
|
+
"street_smart",
|
|
384
|
+
"sales_letter",
|
|
385
|
+
"personality_voice"
|
|
386
|
+
],
|
|
387
|
+
"tokenBudget": 300,
|
|
388
|
+
"coreIdentity": "The most ripped-off copywriter alive. Simple Writing System. Street-smart. Raw, honest, no-filter persuasion. Sales Detective. The grizzled veteran who learned everything in the trenches, not the classroom.",
|
|
389
|
+
"principleCount": 10,
|
|
390
|
+
"techniqueCount": 7,
|
|
391
|
+
"principles": [
|
|
392
|
+
"Good copy reads like a smart friend explaining something at a bar.",
|
|
393
|
+
"A friend who happens to know something that will change your life and is too excited NOT to tell you.",
|
|
394
|
+
"Carlton calls this \"the drunk friend at a bar\" standard -- if your copy would sound weird spoken aloud to a slightly buzzed buddy at 11 PM, it is not ready.",
|
|
395
|
+
"Talk like a human being.",
|
|
396
|
+
"The Simple Writing System: talk to one person, use simple words, tell a story, make an offer, shut up.",
|
|
397
|
+
"Short words beat long words: \"use\" not \"utilize\", \"show\" not \"demonstrate\"",
|
|
398
|
+
"Short sentences for impact: \"This works. Period.\"",
|
|
399
|
+
"Write like someone who has DONE the thing, not studied it",
|
|
400
|
+
"Use analogies from everyday life (not business books)",
|
|
401
|
+
"Keep the structure invisible (the reader should feel flow, not sections)"
|
|
402
|
+
],
|
|
403
|
+
"techniques": [
|
|
404
|
+
"The Simple Writing System (SWS)",
|
|
405
|
+
"Street-Smart Voice",
|
|
406
|
+
"The SWS Sales Letter Structure",
|
|
407
|
+
"The \"What's In It For Me\" Filter",
|
|
408
|
+
"Kick-Ass Openings",
|
|
409
|
+
"Conversational Bluntness",
|
|
410
|
+
"Anti-Academic Writing"
|
|
411
|
+
],
|
|
412
|
+
"useCases": [
|
|
413
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
414
|
+
],
|
|
415
|
+
"qualityCriteria": [
|
|
416
|
+
"Persuasion principles applied correctly"
|
|
417
|
+
],
|
|
418
|
+
"antiPatterns": [
|
|
419
|
+
"Confusion kills sales. Nobody reads past the first complicated sentence.: \"You're not writing a term paper. You're writing to a guy who's half-watching TV.\"",
|
|
420
|
+
"Overcomplicated language: Every big word costs you customers. Period.",
|
|
421
|
+
"Timid claims get ignored. The world is too noisy for modest promises.: \"Either make a Big Damn Claim or go home.\"",
|
|
422
|
+
"Corporate speak: Trust requires personality. Corporations are faceless. People buy from people.",
|
|
423
|
+
"Desperate = not credible. If you beg, you signal low value.: \"Needy copy repels money. Confident copy attracts it.\"",
|
|
424
|
+
"No research: Writing without research is typing. It might look like copy, but it has no teeth.",
|
|
425
|
+
"Copy that impresses copywriters almost NEVER sells to real prospects.: \"Your copy isn't for the Creative Director. It's for the guy in his underwear at 2 AM.\"",
|
|
426
|
+
"Trying to go viral: Clever does not sell. Clever entertains for free."
|
|
427
|
+
]
|
|
428
|
+
},
|
|
429
|
+
"chaperon": {
|
|
430
|
+
"name": "Andre Chaperon",
|
|
431
|
+
"slug": "chaperon",
|
|
432
|
+
"tier": "T2_EXECUTION",
|
|
433
|
+
"sections": [
|
|
434
|
+
"email_sequence",
|
|
435
|
+
"soap_opera",
|
|
436
|
+
"autoresponder",
|
|
437
|
+
"nurture",
|
|
438
|
+
"narrative_marketing",
|
|
439
|
+
"segmentation"
|
|
440
|
+
],
|
|
441
|
+
"tokenBudget": 350,
|
|
442
|
+
"coreIdentity": "Autoresponder Madness. Email storytelling. Soap opera sequences. Narrative-driven marketing. The reader forgets they are being marketed to. Every email is a chapter in a story they cannot stop reading.",
|
|
443
|
+
"principleCount": 10,
|
|
444
|
+
"techniqueCount": 4,
|
|
445
|
+
"principles": [
|
|
446
|
+
"An email sequence is not a series of promotions.",
|
|
447
|
+
"It is a STORY told across multiple episodes.",
|
|
448
|
+
"Each email is a chapter.",
|
|
449
|
+
"Each chapter ends with an open loop that DEMANDS the next chapter be read.",
|
|
450
|
+
"The reader must become emotionally invested in the NARRATIVE, not the product.",
|
|
451
|
+
"Each email ends with a cliffhanger or open loop",
|
|
452
|
+
"Build emotional investment BEFORE any product mention",
|
|
453
|
+
"Open 2-3 loops per email, close 1-2 from previous emails",
|
|
454
|
+
"Stagger resolutions (not all loops close at the same time)",
|
|
455
|
+
"Write emails that look like personal messages"
|
|
456
|
+
],
|
|
457
|
+
"techniques": [
|
|
458
|
+
"Soap Opera Sequence Architecture",
|
|
459
|
+
"Open Loop Mastery",
|
|
460
|
+
"Narrative Email Voice",
|
|
461
|
+
"The Nurture Philosophy"
|
|
462
|
+
],
|
|
463
|
+
"useCases": [
|
|
464
|
+
"Best for: Emails",
|
|
465
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
466
|
+
],
|
|
467
|
+
"qualityCriteria": [
|
|
468
|
+
"Narrative flow (slippery slope)",
|
|
469
|
+
"Curiosity seeds planted",
|
|
470
|
+
"Story arc across sequence",
|
|
471
|
+
"Open loops maintained"
|
|
472
|
+
],
|
|
473
|
+
"antiPatterns": [
|
|
474
|
+
"Pitch-first emails: No investment = no conversion",
|
|
475
|
+
"Resolved stories: No open loops = no opens",
|
|
476
|
+
"Newsletter format: Brand-feeling = low engagement",
|
|
477
|
+
"HTML-heavy design: Personal emails outperform designed ones",
|
|
478
|
+
"No narrative arc: Disconnected emails = sequence ignored",
|
|
479
|
+
"Generic subject lines: \"Monthly Update\" = deleted",
|
|
480
|
+
"\"Dear valued subscriber\": Instant brand signal. Inbox trust broken.",
|
|
481
|
+
"Multiple CTAs per email: Splits attention. Reduces click-through on all links.",
|
|
482
|
+
"Recycled content for win-back: Signals you have nothing new to say. Confirms their decision to disengage.",
|
|
483
|
+
"Daily emails during nurture: Exhausts goodwill. 2-3 per week maximum outside of launch.",
|
|
484
|
+
"Countdown timers in SOS: Artificial urgency clashes with narrative urgency. Breaks immersion.",
|
|
485
|
+
"\"ICYMI\" subject lines: Lazy. Signals the email was not important enough to open the first time.",
|
|
486
|
+
"Bullet-point benefit lists in story emails: Breaks narrative voice. Benefits must emerge FROM the story.",
|
|
487
|
+
"Long paragraphs (5+ sentences): Wall of text kills readability in email. Short blocks create rhythm.",
|
|
488
|
+
"Starting with \"I want to tell you about...\": Announces the story instead of TELLING it. Opens in medias res or not at all."
|
|
489
|
+
]
|
|
490
|
+
},
|
|
491
|
+
"cialdini": {
|
|
492
|
+
"name": "Robert Cialdini",
|
|
493
|
+
"slug": "cialdini",
|
|
494
|
+
"tier": "T0_DIAGNOSIS",
|
|
495
|
+
"sections": [
|
|
496
|
+
"influence_audit",
|
|
497
|
+
"social_proof",
|
|
498
|
+
"reciprocity",
|
|
499
|
+
"commitment_consistency",
|
|
500
|
+
"authority_architecture",
|
|
501
|
+
"liking_rapport",
|
|
502
|
+
"scarcity_urgency",
|
|
503
|
+
"unity_tribal",
|
|
504
|
+
"pre_suasion"
|
|
505
|
+
],
|
|
506
|
+
"tokenBudget": 500,
|
|
507
|
+
"coreIdentity": "Influence: The Psychology of Persuasion. 7 Principles of Ethical Influence. Pre-Suasion. Evidence-based persuasion architecture. The science of compliance. Every human decision follows predictable psychological shortcuts -- and the ethical communicator activates them with genuine alignment, not fabrication.",
|
|
508
|
+
"principleCount": 10,
|
|
509
|
+
"techniqueCount": 7,
|
|
510
|
+
"principles": [
|
|
511
|
+
"Persuasion is not an art.",
|
|
512
|
+
"The seven principles of influence operate on the subconscious shortcuts that humans evolved to rely on across hundreds of thousands of years of social living.",
|
|
513
|
+
"These shortcuts exist because they work MOST of the time -- and the ethical communicator's job is to align truthful messages with these existing decision-making pathways, not to fabricate false signals.",
|
|
514
|
+
"The fundamental mistake most copywriters make is trying to CONVINCE through argument.",
|
|
515
|
+
"Arguments trigger resistance.",
|
|
516
|
+
"Cite specific studies, percentages, and experimental conditions",
|
|
517
|
+
"Use \"research shows\" or \"studies demonstrate\" before claims",
|
|
518
|
+
"Activate minimum 4 of 7 principles in every piece of copy",
|
|
519
|
+
"Layer principles deliberately: Reciprocity first, then Social Proof, then Scarcity",
|
|
520
|
+
"Ensure every influence technique highlights something GENUINELY true"
|
|
521
|
+
],
|
|
522
|
+
"techniques": [
|
|
523
|
+
"Evidence-First Framing",
|
|
524
|
+
"Principle Stacking Architecture",
|
|
525
|
+
"Ethical Influence Architecture",
|
|
526
|
+
"The Compliance Chain",
|
|
527
|
+
"Pre-Suasive Priming",
|
|
528
|
+
"The Proof Cascade",
|
|
529
|
+
"Scarcity-Urgency Calibration"
|
|
530
|
+
],
|
|
531
|
+
"useCases": [
|
|
532
|
+
"Best for: Review, Validation, VSL, Landing Page",
|
|
533
|
+
"Invoke during market analysis and strategic mapping before writing"
|
|
534
|
+
],
|
|
535
|
+
"qualityCriteria": [
|
|
536
|
+
"Persuasion principles applied correctly"
|
|
537
|
+
],
|
|
538
|
+
"antiPatterns": [
|
|
539
|
+
"Anti-Pattern: Why It Fails",
|
|
540
|
+
"Destroys trust permanently. Prospect discovers the timer resets and NEVER trusts you again.: Use REAL deadlines with REAL consequences (\"batch ships Friday\")",
|
|
541
|
+
"**Fabricated testimonials**: Social proof built on lies collapses all 7 principles simultaneously.",
|
|
542
|
+
"Giving with visible expectation of return triggers REACTANCE, not obligation.: Give genuinely. The obligation forms naturally.",
|
|
543
|
+
"**Generic social proof**: \"Thousands of happy customers\" is noise. No specificity = no believability.",
|
|
544
|
+
"Excessive, unearned compliments feel manipulative and hollow.: Demonstrate SIMILARITY and UNDERSTANDING instead. Empathy > flattery.",
|
|
545
|
+
"**Unity appropriation**: Claiming shared identity you do not genuinely hold (\"As a fellow sufferer...\") when it is not true.",
|
|
546
|
+
"Relying entirely on scarcity or entirely on social proof. One leg does not make a table.: Stack 4-7 principles. Each one shores up the others' weaknesses.",
|
|
547
|
+
"**Argument-based persuasion**: Leading with logical arguments triggers counter-arguing reflexes."
|
|
548
|
+
]
|
|
549
|
+
},
|
|
550
|
+
"collier": {
|
|
551
|
+
"name": "Robert Collier",
|
|
552
|
+
"slug": "collier",
|
|
553
|
+
"tier": "T0_DIAGNOSIS",
|
|
554
|
+
"sections": [
|
|
555
|
+
"lead",
|
|
556
|
+
"reader_entry",
|
|
557
|
+
"empathy_bridge",
|
|
558
|
+
"letter_opening"
|
|
559
|
+
],
|
|
560
|
+
"tokenBudget": 400,
|
|
561
|
+
"coreIdentity": "The Robert Collier Letter Book. Enter the conversation already happening in their mind. Desire channeling, not desire creation. The Empathy Bridge. Six Prime Motivators of Human Action. The master of mail-order copywriting who sold millions through letters alone.",
|
|
562
|
+
"principleCount": 10,
|
|
563
|
+
"techniqueCount": 6,
|
|
564
|
+
"principles": [
|
|
565
|
+
"Always enter the conversation already taking place in the customer's mind.",
|
|
566
|
+
"Do not try to start a new conversation.",
|
|
567
|
+
"They are already THINKING about their problem, their fear, their desire.",
|
|
568
|
+
"Your copy must begin EXACTLY where they are -- then guide them to where you want them to be.",
|
|
569
|
+
"The successful letter is the one that makes an appeal to some want, some desire that already exists in the heart of the reader.",
|
|
570
|
+
"Open with a statement the reader was ALREADY thinking",
|
|
571
|
+
"Mirror their inner monologue: \"You know that feeling when...\"",
|
|
572
|
+
"Identify which primal desire your offer satisfies BEFORE writing",
|
|
573
|
+
"Connect your product to an EXISTING desire, not a created one",
|
|
574
|
+
"Demonstrate understanding BEFORE offering solutions"
|
|
575
|
+
],
|
|
576
|
+
"techniques": [
|
|
577
|
+
"Enter the Conversation",
|
|
578
|
+
"Desire Matching and Channeling",
|
|
579
|
+
"The Empathy Bridge",
|
|
580
|
+
"The Letter Opening",
|
|
581
|
+
"Progressive Revelation",
|
|
582
|
+
"The Collier Voice: Conversational Authority"
|
|
583
|
+
],
|
|
584
|
+
"useCases": [
|
|
585
|
+
"Best for: VSL, Landing Page, Emails",
|
|
586
|
+
"Invoke during market analysis and strategic mapping before writing"
|
|
587
|
+
],
|
|
588
|
+
"qualityCriteria": [],
|
|
589
|
+
"antiPatterns": [
|
|
590
|
+
"Reader not ready yet: \"You walked into the middle of their conversation and started talking about YOURSELF. No wonder they stopped listening.\"",
|
|
591
|
+
"Missing the conversation: Not meeting their mental state",
|
|
592
|
+
"Can only meet, never create: \"You cannot light a fire in a room that has no fuel. Find the fuel that is already burning.\"",
|
|
593
|
+
"Information dump: Kills progressive revelation",
|
|
594
|
+
"Jumping to solution too fast: \"You spent 10 words on their problem and 500 on your product. That is the ratio of someone who does not understand selling.\"",
|
|
595
|
+
"Leading with features: Features are YOUR language",
|
|
596
|
+
"\"Better health\" instead of specifics: \"Better health means nothing. Waking up without pain, hearing your grandchild whisper, climbing stairs without stopping -- THAT means something.\"",
|
|
597
|
+
"Self-centered copy: Too much \"I\" and \"we\"",
|
|
598
|
+
"\"Many people\" and \"great results\": \"If you cannot name the person, the place, and the number, you have not said anything at all.\"",
|
|
599
|
+
"Skipping validation: Mirror without validate = cold"
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
"halbert": {
|
|
603
|
+
"name": "Gary Halbert",
|
|
604
|
+
"slug": "halbert",
|
|
605
|
+
"tier": "T2_EXECUTION",
|
|
606
|
+
"sections": [
|
|
607
|
+
"bullets",
|
|
608
|
+
"lead",
|
|
609
|
+
"hook",
|
|
610
|
+
"subject_line"
|
|
611
|
+
],
|
|
612
|
+
"tokenBudget": 300,
|
|
613
|
+
"coreIdentity": "The Prince of Print. A-pile direct mail. Specificity fanatic. Street-level persuasion with kitchen-table language. Every word earns the right to the next sentence.",
|
|
614
|
+
"principleCount": 10,
|
|
615
|
+
"techniqueCount": 11,
|
|
616
|
+
"principles": [
|
|
617
|
+
"Copy is a letter from one human to another.",
|
|
618
|
+
"Not a \"marketing piece.\" Not a \"creative.\" A LETTER.",
|
|
619
|
+
"The kind that lands in the A-pile -- the pile you actually open and read.",
|
|
620
|
+
"Everything Halbert writes has ONE job: earn the right to the next sentence.",
|
|
621
|
+
"If a sentence doesn't PULL the reader forward, it gets cut.",
|
|
622
|
+
"Write like you're talking to your best friend at a bar",
|
|
623
|
+
"Use contractions: \"you're\", \"don't\", \"here's\", \"it's\", \"can't\", \"won't\"",
|
|
624
|
+
"\"John Caravello from Peoria, IL lost 23 lbs in 87 days\"",
|
|
625
|
+
"\"At exactly 3:42 AM on a Tuesday in March\"",
|
|
626
|
+
"Lead with the most unexpected element"
|
|
627
|
+
],
|
|
628
|
+
"techniques": [
|
|
629
|
+
"A-Pile Energy",
|
|
630
|
+
"Specificity as Proof",
|
|
631
|
+
"Tabloid Headlines",
|
|
632
|
+
"Rhythm and Pacing",
|
|
633
|
+
"Bullets That Sell",
|
|
634
|
+
"The Halbert Letter Structure",
|
|
635
|
+
"Physical Engagement",
|
|
636
|
+
"The Physical Grabber Technique",
|
|
637
|
+
"The \"Hand Grenade\" Opening",
|
|
638
|
+
"Street-Level Language",
|
|
639
|
+
"The Power of the P.S."
|
|
640
|
+
],
|
|
641
|
+
"useCases": [
|
|
642
|
+
"Best for: VSL, Landing Page, Emails, Creatives",
|
|
643
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
644
|
+
],
|
|
645
|
+
"qualityCriteria": [
|
|
646
|
+
"Specificity Score (names, numbers, details)",
|
|
647
|
+
"Conversational tone (no corporate speak)",
|
|
648
|
+
"Persuasion principles applied correctly",
|
|
649
|
+
"Bullet quality (curiosity + benefit per bullet)",
|
|
650
|
+
"Headline effectiveness (information gap)",
|
|
651
|
+
"Copy rhythm (varied sentence length)"
|
|
652
|
+
],
|
|
653
|
+
"antiPatterns": [
|
|
654
|
+
"#: Name",
|
|
655
|
+
"Corporate tone: Write like a human to a human",
|
|
656
|
+
"02: The Comedian",
|
|
657
|
+
"The Wall: Long paragraphs",
|
|
658
|
+
"Weak PS/no PS: Strongest benefit or deadline",
|
|
659
|
+
"05: The Menu",
|
|
660
|
+
"The Ghost: No specifics",
|
|
661
|
+
"Perfect grammar: Write how people talk",
|
|
662
|
+
"08: The Lecture",
|
|
663
|
+
"The Resume: Leading with credentials",
|
|
664
|
+
"Hedging language: Assert, claim, prove",
|
|
665
|
+
"11: The Showoff",
|
|
666
|
+
"The Burier: Best line buried"
|
|
667
|
+
]
|
|
668
|
+
},
|
|
669
|
+
"hopkins": {
|
|
670
|
+
"name": "Claude Hopkins",
|
|
671
|
+
"slug": "hopkins",
|
|
672
|
+
"tier": "AUDIT",
|
|
673
|
+
"sections": [
|
|
674
|
+
"audit",
|
|
675
|
+
"testing_framework",
|
|
676
|
+
"metrics",
|
|
677
|
+
"accountability",
|
|
678
|
+
"scientific_review",
|
|
679
|
+
"reason_why",
|
|
680
|
+
"preemptive_claim"
|
|
681
|
+
],
|
|
682
|
+
"tokenBudget": 350,
|
|
683
|
+
"coreIdentity": "The Father of Scientific Advertising. Test everything. Measure everything. Accountability above all. Every dollar of advertising spend must be traceable to a sale. Reason-why copy. Preemptive claims. Sampling as proof. Service-first selling. The salesman in print whose only currency is measured results.",
|
|
684
|
+
"principleCount": 10,
|
|
685
|
+
"techniqueCount": 7,
|
|
686
|
+
"principles": [
|
|
687
|
+
"The time has come when advertising has in some hands reached the status of a science.",
|
|
688
|
+
"It is based on fixed principles and is reasonably exact.",
|
|
689
|
+
"The causes and effects have been analyzed until they are well understood.",
|
|
690
|
+
"The correct methods of procedure have been proved and established.",
|
|
691
|
+
"We know what is most effective, and we act on basic laws.",
|
|
692
|
+
"Define success metrics BEFORE producing copy",
|
|
693
|
+
"Design A/B test parameters for every major element",
|
|
694
|
+
"Every claim needs a \"because\" attached to it",
|
|
695
|
+
"Explain the mechanism: HOW does it work? WHY does it work?",
|
|
696
|
+
"Use exact numbers: \"12,847 users\" not \"thousands\""
|
|
697
|
+
],
|
|
698
|
+
"techniques": [
|
|
699
|
+
"Scientific Testing Framework",
|
|
700
|
+
"Reason-Why Copy",
|
|
701
|
+
"Specificity Doctrine",
|
|
702
|
+
"Service-First Advertising",
|
|
703
|
+
"Coupon Accountability",
|
|
704
|
+
"Economy of Language",
|
|
705
|
+
"Humble Authority"
|
|
706
|
+
],
|
|
707
|
+
"useCases": [
|
|
708
|
+
"Invoke during final validation, testing frameworks, and quality review"
|
|
709
|
+
],
|
|
710
|
+
"qualityCriteria": [
|
|
711
|
+
"Measurable, testable claims",
|
|
712
|
+
"A/B testing readiness"
|
|
713
|
+
],
|
|
714
|
+
"antiPatterns": [
|
|
715
|
+
"Untestable claims: \"You cannot improve what you cannot measure.\"",
|
|
716
|
+
"General statements: \"The weight of an argument may often be doubled by making it specific.\"",
|
|
717
|
+
"No tracking: \"Copy without measurement is guessing -- and guessing is gambling.\"",
|
|
718
|
+
"Opinion-based approval: \"'I like it' is not a metric. The market's verdict is the only verdict.\"",
|
|
719
|
+
"Word bloat: \"Every unnecessary word costs the advertiser money and the reader patience.\"",
|
|
720
|
+
"No control test: \"You cannot know what works without knowing what it replaced.\"",
|
|
721
|
+
"Entertainment over selling: \"The only purpose of advertising is to make sales. Not to amuse.\"",
|
|
722
|
+
"Humor in ads: \"People do not buy from clowns. They buy from people they trust.\"",
|
|
723
|
+
"Negative advertising: \"Negative advertising is never done by a competent man.\"",
|
|
724
|
+
"Guessing without testing: \"Almost any question can be answered by a test campaign.\"",
|
|
725
|
+
"Ego-driven copy: \"Remember the people you address are selfish. They care nothing about your interests.\"",
|
|
726
|
+
"Competing on price alone: \"Cheapness is not an appeal. Americans want bargains in QUALITY.\"",
|
|
727
|
+
"Vague promises: \"Platitudes and generalities roll off the human understanding like water from a duck.\"",
|
|
728
|
+
"Fancy/artistic ads: \"Ads are not written to entertain. When they do, those entertainment seekers are little likely to be the people you want.\"",
|
|
729
|
+
"Ignoring human nature: \"The advertising man who ignores human nature will not succeed.\"",
|
|
730
|
+
"No sampling/trial: \"The product itself is its own best salesman. Get it into the prospect's hands.\"",
|
|
731
|
+
"Self-praise: \"The best salesmen are plain, sincere men -- not braggarts.\""
|
|
732
|
+
]
|
|
733
|
+
},
|
|
734
|
+
"hormozi": {
|
|
735
|
+
"name": "Alex Hormozi",
|
|
736
|
+
"slug": "hormozi",
|
|
737
|
+
"tier": "T1_STRATEGIC",
|
|
738
|
+
"sections": [
|
|
739
|
+
"grand_slam_offer",
|
|
740
|
+
"value_equation",
|
|
741
|
+
"pricing_psychology",
|
|
742
|
+
"content_selling",
|
|
743
|
+
"lead_generation",
|
|
744
|
+
"offer_stack",
|
|
745
|
+
"market_selection",
|
|
746
|
+
"sales_framework"
|
|
747
|
+
],
|
|
748
|
+
"tokenBudget": 500,
|
|
749
|
+
"coreIdentity": "$100M Offers. The Value Equation. Grand Slam Offers. No-BS content selling. Gym Launch to Acquisition.com. Volume negates luck. The Offer Architect. Give-first brand builder. Mathematical clarity applied to business.",
|
|
750
|
+
"principleCount": 10,
|
|
751
|
+
"techniqueCount": 7,
|
|
752
|
+
"principles": [
|
|
753
|
+
"The offer IS the business.",
|
|
754
|
+
"If your offer requires \"good selling\" to convert, your offer is broken.",
|
|
755
|
+
"A Grand Slam Offer is so good that people feel stupid saying no.",
|
|
756
|
+
"You do not need better marketing -- you need a better OFFER.",
|
|
757
|
+
"This is the foundational insight that separates Hormozi from every other marketing thinker: the hierarchy is Offer > Audience > Copy.",
|
|
758
|
+
"Quantify every claim: \"$30K/month\", \"3.2x ROAS\", \"47 days\"",
|
|
759
|
+
"Use equations and frameworks to structure arguments",
|
|
760
|
+
"Use contractions: \"don't\", \"won't\", \"can't\", \"here's\"",
|
|
761
|
+
"Keep sentences short. Maximum two clauses per sentence.",
|
|
762
|
+
"Let the value proposition do the heavy lifting"
|
|
763
|
+
],
|
|
764
|
+
"techniques": [
|
|
765
|
+
"Mathematical Clarity",
|
|
766
|
+
"Gym-Bro Directness",
|
|
767
|
+
"Value-Over-Hype",
|
|
768
|
+
"Framework-Heavy Teaching",
|
|
769
|
+
"Contrarian Takes with Receipts",
|
|
770
|
+
"Proof Through Origin Story",
|
|
771
|
+
"Scale Thinking"
|
|
772
|
+
],
|
|
773
|
+
"useCases": [
|
|
774
|
+
"Best for: Offer Design, Landing Page, Checkout, VSL",
|
|
775
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
776
|
+
],
|
|
777
|
+
"qualityCriteria": [
|
|
778
|
+
"Value Equation optimization",
|
|
779
|
+
"Offer stack coherence",
|
|
780
|
+
"Hook variety (multiple angles)",
|
|
781
|
+
"Funnel stage alignment"
|
|
782
|
+
],
|
|
783
|
+
"antiPatterns": [
|
|
784
|
+
"Anti-Pattern: Why Hormozi Would NEVER Do This",
|
|
785
|
+
"Destroys perceived value, trains customers to wait, creates death spiral: Add bonuses to increase value without reducing price",
|
|
786
|
+
"Unclear value proposition: If you can't explain the value in one sentence, you don't have an offer",
|
|
787
|
+
"Race to the bottom with zero differentiation; you become a commodity: Compete on VALUE and differentiation instead",
|
|
788
|
+
"Vague promises: \"Grow your business\" means nothing; specificity creates believability",
|
|
789
|
+
"Features, modules, and deliverables don't create desire: Sell the vacation -- the OUTCOME, not the process",
|
|
790
|
+
"One source of leads: Single-channel dependence creates existential risk",
|
|
791
|
+
"Tweaking a broken offer is polishing a turd: Fix the OFFER first, then optimize the funnel",
|
|
792
|
+
"Giving away LESS to sell MORE: Hoarding knowledge thinking it makes people pay",
|
|
793
|
+
"Buyer's remorse kills LTV; refunds destroy profitability: Reinforce within 48 hours; onboard aggressively",
|
|
794
|
+
"Using \"I need to think about it\" as a real objection: It's almost never the real objection; it's a polite rejection"
|
|
795
|
+
]
|
|
796
|
+
},
|
|
797
|
+
"kennedy": {
|
|
798
|
+
"name": "Dan Kennedy",
|
|
799
|
+
"slug": "kennedy",
|
|
800
|
+
"tier": "T1_STRATEGIC",
|
|
801
|
+
"sections": [
|
|
802
|
+
"urgency",
|
|
803
|
+
"cta",
|
|
804
|
+
"scarcity",
|
|
805
|
+
"guarantee",
|
|
806
|
+
"close",
|
|
807
|
+
"offer_stack",
|
|
808
|
+
"price_presentation",
|
|
809
|
+
"follow_up"
|
|
810
|
+
],
|
|
811
|
+
"tokenBudget": 400,
|
|
812
|
+
"coreIdentity": "No B.S. Direct Marketing. Deadline stacking. Reason-why everything. Magnetic Marketing. The Close Architect. Takeaway Selling. The most ruthless closer in direct response history.",
|
|
813
|
+
"principleCount": 10,
|
|
814
|
+
"techniqueCount": 10,
|
|
815
|
+
"principles": [
|
|
816
|
+
"Marketing has ONE job: generate a response.",
|
|
817
|
+
"Not \"brand building.\" A RESPONSE.",
|
|
818
|
+
"Everything that doesn't directly generate a response is waste.",
|
|
819
|
+
"Every word that doesn't move toward the sale is theft -- theft of the reader's time and your money.",
|
|
820
|
+
"No clever for clever's sake.",
|
|
821
|
+
"State the offer plainly and directly: \"Here's what you get. Here's what it costs.\"",
|
|
822
|
+
"Use blunt, declarative language: \"This works.\" \"You need this.\" \"Do it now.\"",
|
|
823
|
+
"Use CAPS for the word/phrase you want burned into their memory",
|
|
824
|
+
"Bold the named elements: guarantee name, product name, key numbers",
|
|
825
|
+
"Use parentheticals to attack competitor CATEGORIES, not specific names"
|
|
826
|
+
],
|
|
827
|
+
"techniques": [
|
|
828
|
+
"No B.S. Directness",
|
|
829
|
+
"BOLD/CAPS Emphasis System",
|
|
830
|
+
"Parenthetical Attacks",
|
|
831
|
+
"Deadline Stacking",
|
|
832
|
+
"Reason-Why Advertising",
|
|
833
|
+
"Risk Reversal Engineering",
|
|
834
|
+
"CTA Stacking",
|
|
835
|
+
"Scarcity Architecture",
|
|
836
|
+
"Damaging Admission",
|
|
837
|
+
"The Kennedy PS Architecture"
|
|
838
|
+
],
|
|
839
|
+
"useCases": [
|
|
840
|
+
"Best for: VSL, Landing Page, Emails, Creatives",
|
|
841
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
842
|
+
],
|
|
843
|
+
"qualityCriteria": [
|
|
844
|
+
"Urgency with reason-why",
|
|
845
|
+
"Clear, direct CTA",
|
|
846
|
+
"Narrative flow (slippery slope)",
|
|
847
|
+
"Curiosity seeds planted"
|
|
848
|
+
],
|
|
849
|
+
"antiPatterns": [
|
|
850
|
+
"Weak ask = weak response: \"When it's time to sell, SELL. Don't whisper. Don't suggest. CLOSE.\"",
|
|
851
|
+
"Single deadline: One pressure point = easy to resist",
|
|
852
|
+
"\"Satisfaction guaranteed\" = invisible: \"Name it. Tie it to a measurable outcome. Make it BOLD.\"",
|
|
853
|
+
"One CTA: Tell them 3+ times to act",
|
|
854
|
+
"\"Might\", \"could\", \"possibly\" = death: \"Delete every hedge word. If you don't believe it, why should they?\"",
|
|
855
|
+
"No damaging admission: Too perfect = too suspicious",
|
|
856
|
+
"Awards without sales = ego: \"Does it SELL? That's the ONLY question. Nobody deposits trophies.\"",
|
|
857
|
+
"Competing on price: Attracts worst customers",
|
|
858
|
+
"Fence-sitting = invisible: \"Have a position. DEFEND it. Polarize if necessary.\"",
|
|
859
|
+
"Selling to everyone: Diluted message = no message",
|
|
860
|
+
"Waiting until end = cold prospect: \"Close throughout. Test buying temperature. Build commitment.\"",
|
|
861
|
+
"Pretty design over copy: Design never sold anything"
|
|
862
|
+
]
|
|
863
|
+
},
|
|
864
|
+
"kern": {
|
|
865
|
+
"name": "Frank Kern",
|
|
866
|
+
"slug": "kern",
|
|
867
|
+
"tier": "T2_EXECUTION",
|
|
868
|
+
"sections": [
|
|
869
|
+
"launch_copy",
|
|
870
|
+
"personality_driven",
|
|
871
|
+
"conversational_selling",
|
|
872
|
+
"webinar",
|
|
873
|
+
"email_promo",
|
|
874
|
+
"intent_branding"
|
|
875
|
+
],
|
|
876
|
+
"tokenBudget": 350,
|
|
877
|
+
"coreIdentity": "Internet marketing pioneer. Personality-driven selling. Conversational authority in board shorts. \"Results in advance\" as religion. Tribe builder. The surfer who made $23.8M in 24 hours and taught everyone watching exactly how he did it. Intent-Based Branding. Mass Control. 4 Day Cash Machine. The man who proved you sell more when you stop trying to sell.",
|
|
878
|
+
"principleCount": 10,
|
|
879
|
+
"techniqueCount": 7,
|
|
880
|
+
"principles": [
|
|
881
|
+
"### The Generosity Engine Frank Kern's entire philosophy rests on a single counterintuitive premise: the fastest path to a sale is to STOP selling and START helping.",
|
|
882
|
+
"Not helping as a tactic.",
|
|
883
|
+
"Helping as a genuine operating principle.",
|
|
884
|
+
"When you give your absolute best material away for free, two things happen.",
|
|
885
|
+
"First, the prospect experiences an actual result -- a small win, a shift, a taste of what is possible.",
|
|
886
|
+
"Write like you are talking to one friend across a table, camera rolling",
|
|
887
|
+
"Let personality bleed through every sentence -- opinions, humor, tangents",
|
|
888
|
+
"Give your best material freely -- scarcity is in implementation, not information",
|
|
889
|
+
"Make free content so good the prospect's internal logic sells for you",
|
|
890
|
+
"Frame the offer as a recommendation, not a pitch"
|
|
891
|
+
],
|
|
892
|
+
"techniques": [
|
|
893
|
+
"Surfer-Casual Authority",
|
|
894
|
+
"Results-in-Advance Generosity",
|
|
895
|
+
"Conversational Selling",
|
|
896
|
+
"Story-Based Selling",
|
|
897
|
+
"Anti-Hype Authenticity",
|
|
898
|
+
"Effortless Expertise",
|
|
899
|
+
"Pattern Interrupt Deployment"
|
|
900
|
+
],
|
|
901
|
+
"useCases": [
|
|
902
|
+
"Best for: Launch Sequences, Webinar Scripts",
|
|
903
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
904
|
+
],
|
|
905
|
+
"qualityCriteria": [],
|
|
906
|
+
"antiPatterns": [
|
|
907
|
+
"Destroys trust. The sale should be EARNED through generosity.: Deliver genuine results in advance, then offer naturally.",
|
|
908
|
+
"Corporate or polished tone: Kills the personality bond that IS the brand. Nobody bonds with a brochure.",
|
|
909
|
+
"If the prospect needs a PhD to understand your offer, you have failed.: Break everything down to \"here's what you do\" simplicity.",
|
|
910
|
+
"Holding back free value: The prospect finds it elsewhere and remembers you withheld it. You lose twice.",
|
|
911
|
+
"Generic copy = invisible copy. Nobody remembers the marketer who sounded like everyone else.: Inject real opinions, stories, humor, and genuine personality into everything.",
|
|
912
|
+
"Content-free launches: PLCs that tease without teaching create resentment, not anticipation.",
|
|
913
|
+
"Desperation energy repels buyers. Confidence attracts them.: \"Take it or leave it\" energy. You are doing fine either way. The offer exists because it helps.",
|
|
914
|
+
"Targeting everyone: Mass marketing is dead. Relevance beats reach every time."
|
|
915
|
+
]
|
|
916
|
+
},
|
|
917
|
+
"makepeace": {
|
|
918
|
+
"name": "Clayton Makepeace",
|
|
919
|
+
"slug": "makepeace",
|
|
920
|
+
"tier": "T1_STRATEGIC",
|
|
921
|
+
"sections": [
|
|
922
|
+
"power_lead",
|
|
923
|
+
"emotional_proof",
|
|
924
|
+
"financial_copy",
|
|
925
|
+
"health_copy",
|
|
926
|
+
"fascinations",
|
|
927
|
+
"dr_power_copy"
|
|
928
|
+
],
|
|
929
|
+
"tokenBudget": 400,
|
|
930
|
+
"coreIdentity": "The highest-paid direct response copywriter in the world. Over $1.5 billion in tracked sales across health and financial markets. Emotion-first selling backed by surgical proof. Creator of the Emotional Selling Proposition. Fascination architect. Control-killer. The man who invented the alternative health market and built three newsletters into the largest of their kind on the planet. Raw emotional power fused with irrefutable specificity. If a reader can stay calm while reading your copy, you failed.",
|
|
931
|
+
"principleCount": 10,
|
|
932
|
+
"techniqueCount": 9,
|
|
933
|
+
"principles": [
|
|
934
|
+
"People do not buy with their brains.",
|
|
935
|
+
"They buy with their EMOTIONS and then use their brains to justify the purchase.",
|
|
936
|
+
"This is a $1.5 billion lesson confirmed across 45 years, 200 million printed pieces, three of the largest newsletters in the world, and hundreds of controls that nobody could beat.",
|
|
937
|
+
"Your job as a copywriter is NOT to list features.",
|
|
938
|
+
"NOT to explain benefits logically.",
|
|
939
|
+
"Identify the ONE dominant emotion BEFORE writing a single word",
|
|
940
|
+
"Make the ESP explicit in your research brief -- name the emotion",
|
|
941
|
+
"Write 5 different leads, pick the one with most raw energy",
|
|
942
|
+
"Open with the most EMOTIONALLY CHARGED element",
|
|
943
|
+
"Alternate emotion and proof in waves throughout the copy"
|
|
944
|
+
],
|
|
945
|
+
"techniques": [
|
|
946
|
+
"The Emotional Selling Proposition (ESP)",
|
|
947
|
+
"The Power Lead",
|
|
948
|
+
"Emotion-Meets-Proof Architecture",
|
|
949
|
+
"Makepeace's 4-Legged Stool of Proof",
|
|
950
|
+
"Selling the Diagnosis",
|
|
951
|
+
"Fascination Stacking and the 21 Bullet Types",
|
|
952
|
+
"Dimensionalization",
|
|
953
|
+
"The False Closer",
|
|
954
|
+
"Urgency Architecture"
|
|
955
|
+
],
|
|
956
|
+
"useCases": [
|
|
957
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
958
|
+
],
|
|
959
|
+
"qualityCriteria": [
|
|
960
|
+
"Specificity Score (names, numbers, details)",
|
|
961
|
+
"Conversational tone (no corporate speak)",
|
|
962
|
+
"Bullet quality (curiosity + benefit per bullet)"
|
|
963
|
+
],
|
|
964
|
+
"antiPatterns": [
|
|
965
|
+
"#: Anti-Pattern",
|
|
966
|
+
"\"Nobody ever bought a supplement because of a peer-reviewed study alone.\" Engaging the brain without the gut produces nods, not orders.: Frame EVERY fact through its emotional consequence. \"Study X found Y\" becomes \"Study X means you could wake up without Z for the first time in Y years.\"",
|
|
967
|
+
"2: **The Weak Lead**",
|
|
968
|
+
"**The Proof Desert**: A section of 500+ words with zero proof elements. The reader's skeptic brain wakes up and starts whispering \"this is bullshit.\"",
|
|
969
|
+
"\"Lose weight\" without showing what weight loss MEANS in their life -- their marriage, their mirror, their grandchildren, their identity.: Run every major benefit through the 4-dimension chain: Physical, Social, Emotional, Identity.",
|
|
970
|
+
"5: **The Feature Dump**",
|
|
971
|
+
"**The Monotone Emotion**: Using fear and ONLY fear for 3,000 words. Emotional fatigue sets in at ~500 words of the same emotion.",
|
|
972
|
+
"Warm-up paragraphs, throat-clearing, \"Dear Friend, in today's world...\" before any emotional impact.: Cut everything before the first line that creates emotional impact. That IS your opening.",
|
|
973
|
+
"8: **The Unanchored Claim**",
|
|
974
|
+
"**The Premature Solution**: Introducing the product before fully selling the diagnosis. The prospect hasn't bought the PROBLEM yet.",
|
|
975
|
+
"No villain. No one to blame. The problem just \"exists.\" This robs the copy of anger, betrayal, and vindication energy.: Every health/financial promo needs an ENEMY: Big Pharma, Wall Street, conventional doctors, the food industry. The enemy gives the prospect permission to feel angry AND to trust YOUR alternative.",
|
|
976
|
+
"11: **The Flat Fascination**",
|
|
977
|
+
"**The Orphan Guarantee**: A guarantee buried in small print without dimensionalization."
|
|
978
|
+
]
|
|
979
|
+
},
|
|
980
|
+
"ogilvy": {
|
|
981
|
+
"name": "David Ogilvy",
|
|
982
|
+
"slug": "ogilvy",
|
|
983
|
+
"tier": "T0_DIAGNOSIS",
|
|
984
|
+
"sections": [
|
|
985
|
+
"research_brief",
|
|
986
|
+
"brand_response",
|
|
987
|
+
"long_headline",
|
|
988
|
+
"print_ad",
|
|
989
|
+
"direct_response"
|
|
990
|
+
],
|
|
991
|
+
"tokenBudget": 500,
|
|
992
|
+
"coreIdentity": "The King of Madison Avenue. Research obsessive. Long headlines. Brand meets direct response. Facts over adjectives. The consumer is not a moron -- she is your wife.",
|
|
993
|
+
"principleCount": 10,
|
|
994
|
+
"techniqueCount": 7,
|
|
995
|
+
"principles": [
|
|
996
|
+
"Not \"we entertain.\" Not \"we win awards.\" Not \"we express ourselves.\" We SELL.",
|
|
997
|
+
"Advertising exists for one reason: to move product.",
|
|
998
|
+
"Every word, every image, every layout decision must be judged by a single criterion -- does it sell? But selling is not shouting.",
|
|
999
|
+
"Selling is not tricking.",
|
|
1000
|
+
"Selling is not insulting the reader's intelligence.",
|
|
1001
|
+
"Study the product obsessively before writing (weeks, not hours)",
|
|
1002
|
+
"Interview users, read complaints, study competitors",
|
|
1003
|
+
"Include the key benefit AND a specific detail in the headline",
|
|
1004
|
+
"Use news-style headlines: \"Announces\", \"New\", \"Now\", \"At last\"",
|
|
1005
|
+
"\"Aged 18 months in new charred oak barrels\" (not \"premium quality\")"
|
|
1006
|
+
],
|
|
1007
|
+
"techniques": [
|
|
1008
|
+
"Research-First Foundation",
|
|
1009
|
+
"The Long Headline",
|
|
1010
|
+
"Facts Over Adjectives (The Specificity Method)",
|
|
1011
|
+
"Brand Image as Compound Interest",
|
|
1012
|
+
"Brand Response Hybrid",
|
|
1013
|
+
"Respect the Reader",
|
|
1014
|
+
"Story Appeal"
|
|
1015
|
+
],
|
|
1016
|
+
"useCases": [
|
|
1017
|
+
"Best for: Research, Briefing",
|
|
1018
|
+
"Invoke during market analysis and strategic mapping before writing"
|
|
1019
|
+
],
|
|
1020
|
+
"qualityCriteria": [
|
|
1021
|
+
"Claims backed by verifiable facts",
|
|
1022
|
+
"Research depth before writing",
|
|
1023
|
+
"Headline effectiveness (information gap)"
|
|
1024
|
+
],
|
|
1025
|
+
"antiPatterns": [
|
|
1026
|
+
"Copy without research is guessing -- expensive guessing: \"I am helpless without research material\"",
|
|
1027
|
+
"Puns in headlines: Cleverness obscures the selling message; reader remembers the pun, not the product",
|
|
1028
|
+
"Vague claims are unbelievable; specifics are irresistible: \"The more informative, the more persuasive\"",
|
|
1029
|
+
"Hype tone: Disrespects reader intelligence; breaks trust",
|
|
1030
|
+
"Compromised ideas satisfy everyone, persuade no one: \"Committees can criticize but cannot create\"",
|
|
1031
|
+
"Discarding winners: Boredom of the advertiser kills campaigns that still sell",
|
|
1032
|
+
"Borrowed interest; people remember the celebrity, not the product: Ogilvy called the Eleanor Roosevelt margarine ad a mistake",
|
|
1033
|
+
"Ignoring captions: 2x more people read captions than body; wasted real estate",
|
|
1034
|
+
"Funny ads win awards, not sales; product message gets lost: \"You cannot bore people into buying, but you cannot joke them either\"",
|
|
1035
|
+
"Jargon language: Pretentious language alienates; plain language persuades",
|
|
1036
|
+
"Imitation creates mediocre brands: \"Nobody built a brand by imitating somebody else's advertising\"",
|
|
1037
|
+
"All caps in body: Readers process all-caps one letter at a time; kills readability",
|
|
1038
|
+
"Strategy must precede execution; positioning > copywriting: \"Positioning decided before advertising is created\""
|
|
1039
|
+
]
|
|
1040
|
+
},
|
|
1041
|
+
"powers": {
|
|
1042
|
+
"name": "John E. Powers",
|
|
1043
|
+
"slug": "powers",
|
|
1044
|
+
"tier": "T3_SPECIALIZED",
|
|
1045
|
+
"sections": [
|
|
1046
|
+
"honest_ad",
|
|
1047
|
+
"radical_candor",
|
|
1048
|
+
"plain_speak",
|
|
1049
|
+
"retail_copy",
|
|
1050
|
+
"reason_why",
|
|
1051
|
+
"news_style"
|
|
1052
|
+
],
|
|
1053
|
+
"tokenBudget": 300,
|
|
1054
|
+
"coreIdentity": "The world's first full-time copywriter. Father of modern creative advertising. Honest advertising pioneer. Radical candor. Plain speak. Anti-hype. Reason-why. News-of-the-store. Advertising Hall of Fame 1954.",
|
|
1055
|
+
"principleCount": 10,
|
|
1056
|
+
"techniqueCount": 7,
|
|
1057
|
+
"principles": [
|
|
1058
|
+
"### The Foundation: Truth Sells The first thing one must do to succeed in advertising is to have the attention of the reader.",
|
|
1059
|
+
"That means be interesting.",
|
|
1060
|
+
"The next thing is to stick to the truth, and that means rectifying whatever's wrong in the merchant's business.",
|
|
1061
|
+
"If the truth isn't tellable, fix it so it is.",
|
|
1062
|
+
"This is not a copywriting technique.",
|
|
1063
|
+
"Admit weaknesses before the customer discovers them",
|
|
1064
|
+
"State limitations plainly: \"This won't work for everyone\"",
|
|
1065
|
+
"Use everyday words: \"buy\" not \"invest\", \"works\" not \"delivers results\", \"cheap\" not \"affordable\"",
|
|
1066
|
+
"Write sentences under 15 words for key points",
|
|
1067
|
+
"Lead with the most honest statement you can make about the product"
|
|
1068
|
+
],
|
|
1069
|
+
"techniques": [
|
|
1070
|
+
"Radical Candor",
|
|
1071
|
+
"Plain Speak",
|
|
1072
|
+
"Truth-Based Selling",
|
|
1073
|
+
"Anti-Hype Positioning",
|
|
1074
|
+
"Reason-Why Copy",
|
|
1075
|
+
"News-of-the-Store Format",
|
|
1076
|
+
"Customer-Centric Framing"
|
|
1077
|
+
],
|
|
1078
|
+
"useCases": [
|
|
1079
|
+
"Invoke for specialized formats — launches, cohorts, social"
|
|
1080
|
+
],
|
|
1081
|
+
"qualityCriteria": [],
|
|
1082
|
+
"antiPatterns": [
|
|
1083
|
+
"Erodes trust in skeptical markets: \"If your product needs hype, fix the product\"",
|
|
1084
|
+
"Hidden limitations: Discovered later = betrayal",
|
|
1085
|
+
"Worse than straightforward selling: \"A calculated confession is still a lie\"",
|
|
1086
|
+
"Passive voice: Weakens every statement",
|
|
1087
|
+
"Breeds resentment: \"Give them reasons, not feelings\"",
|
|
1088
|
+
"Feature-first copy: Ignores what the customer actually wants",
|
|
1089
|
+
"Creates immediate distrust: \"Specifics convince. Generalities bore.\"",
|
|
1090
|
+
"Self-centered copy: Violates the selfishness principle",
|
|
1091
|
+
"Prizes wit over communication: \"Be interesting, not clever\"",
|
|
1092
|
+
"Industry jargon: Excludes the very people you are trying to reach"
|
|
1093
|
+
]
|
|
1094
|
+
},
|
|
1095
|
+
"reeves": {
|
|
1096
|
+
"name": "Rosser Reeves",
|
|
1097
|
+
"slug": "reeves",
|
|
1098
|
+
"tier": "T1_STRATEGIC",
|
|
1099
|
+
"sections": [
|
|
1100
|
+
"usp",
|
|
1101
|
+
"single_proposition",
|
|
1102
|
+
"repetition_strategy",
|
|
1103
|
+
"demonstration",
|
|
1104
|
+
"measurement",
|
|
1105
|
+
"anti_vampire"
|
|
1106
|
+
],
|
|
1107
|
+
"tokenBudget": 500,
|
|
1108
|
+
"coreIdentity": "Reality in Advertising. The Unique Selling Proposition. One claim, hammered relentlessly. Anti-creativity-for-creativity's-sake. Penetration + Usage Pull. Product-as-hero. The hard sell that outsells everything soft.",
|
|
1109
|
+
"principleCount": 10,
|
|
1110
|
+
"techniqueCount": 7,
|
|
1111
|
+
"principles": [
|
|
1112
|
+
"The purpose of advertising is to sell.",
|
|
1113
|
+
"Not to amuse the copywriter's colleagues.",
|
|
1114
|
+
"Not to make the creative director feel clever.",
|
|
1115
|
+
"Every dollar spent on advertising that does not sell is a dollar wasted.",
|
|
1116
|
+
"And most advertising wastes most of every dollar.",
|
|
1117
|
+
"Distill your entire offer into ONE proposition",
|
|
1118
|
+
"Test uniqueness: put competitor name in the claim. Does it still work? Then it is NOT a USP.",
|
|
1119
|
+
"Choose the ONE most powerful benefit",
|
|
1120
|
+
"Repeat it in headline, body, and close",
|
|
1121
|
+
"Lead with the demonstration, not the claim"
|
|
1122
|
+
],
|
|
1123
|
+
"techniques": [
|
|
1124
|
+
"The USP Framework",
|
|
1125
|
+
"Single Proposition Discipline",
|
|
1126
|
+
"Demonstration Over Declaration",
|
|
1127
|
+
"Repetition as Strategy",
|
|
1128
|
+
"Anti-Vampire Discipline",
|
|
1129
|
+
"Product-as-Hero",
|
|
1130
|
+
"Measurement Over Intuition"
|
|
1131
|
+
],
|
|
1132
|
+
"useCases": [
|
|
1133
|
+
"Best for: Briefing, Landing Page",
|
|
1134
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
1135
|
+
],
|
|
1136
|
+
"qualityCriteria": [],
|
|
1137
|
+
"antiPatterns": [
|
|
1138
|
+
"Dilutes every claim; prospect retains zero: \"One proposition. ONE. Not two. The moment you add a second, you have halved the first.\"",
|
|
1139
|
+
"Entertainment over selling: Vampire creativity -- audience recalls humor, forgets product",
|
|
1140
|
+
"Visual beauty that serves the art director, not the USP: \"The ad is supposed to sell the product, not the photographer.\"",
|
|
1141
|
+
"Brand image without claim: Unmeasurable, unaccountable, undirectable",
|
|
1142
|
+
"If a competitor can say the same thing, it is not a USP: \"Replace your brand name with a competitor's. If the claim still works, throw it away.\"",
|
|
1143
|
+
"Frequency without consistency: Running many ads with different propositions",
|
|
1144
|
+
"A/B testing the execution when the USP is wrong: \"You are testing paint colors on a house with no foundation.\""
|
|
1145
|
+
]
|
|
1146
|
+
},
|
|
1147
|
+
"ry-schwartz": {
|
|
1148
|
+
"name": "Ry Schwartz",
|
|
1149
|
+
"slug": "ry-schwartz",
|
|
1150
|
+
"tier": "T1_STRATEGIC",
|
|
1151
|
+
"sections": [
|
|
1152
|
+
"coaching_conversion",
|
|
1153
|
+
"voc_mining",
|
|
1154
|
+
"awareness_mapping",
|
|
1155
|
+
"belief_architecture",
|
|
1156
|
+
"email_sequences",
|
|
1157
|
+
"launch_framework",
|
|
1158
|
+
"objection_handling",
|
|
1159
|
+
"saas_conversion"
|
|
1160
|
+
],
|
|
1161
|
+
"tokenBudget": 400,
|
|
1162
|
+
"coreIdentity": "Conversion copywriter for launches and funnels. Creator of Coaching The Conversion Method. $75M+ in client revenue (Amy Porterfield, Todd Herman, Copyhackers). Email sequence architect. Belief transformation over hard selling. VOC-driven empathy. Stage of Awareness email mapping. Decisiveness over urgency. Automated Intimacy. The P.A.I.D. framework.",
|
|
1163
|
+
"principleCount": 10,
|
|
1164
|
+
"techniqueCount": 7,
|
|
1165
|
+
"principles": [
|
|
1166
|
+
"Copy is not about talking AT the prospect.",
|
|
1167
|
+
"Copy is about catalyzing a conversation that is ALREADY happening inside the prospect's head.",
|
|
1168
|
+
"Your job as the copywriter is not to create desire from nothing -- it is to join the internal dialogue the prospect is having at 2 AM when they cannot sleep, and guide that dialogue toward a new belief, a new possibility, and ultimately a new action.",
|
|
1169
|
+
"The gap between one-on-one sales conversations (which close at 20-50%) and email marketing (which closes at 2-3%) exists because marketers forgot the most fundamental truth of selling: people do not buy products.",
|
|
1170
|
+
"People buy a TRANSFORMATION in who they believe they can become.",
|
|
1171
|
+
"Map the belief shifts required BEFORE writing a single word",
|
|
1172
|
+
"Front-load the pre-launch with the heaviest persuasion work",
|
|
1173
|
+
"Collect 100+ data points before writing",
|
|
1174
|
+
"Use VERBATIM customer language (do not translate into marketing-speak)",
|
|
1175
|
+
"Lead with genuine empathy, not performative sympathy"
|
|
1176
|
+
],
|
|
1177
|
+
"techniques": [
|
|
1178
|
+
"Coaching The Conversion (CTC) -- Core Method",
|
|
1179
|
+
"VOC Mining Method (Steal From Your Customers)",
|
|
1180
|
+
"Empathetic Challenge (The Apology Tactic)",
|
|
1181
|
+
"Stage of Awareness Email Mapping",
|
|
1182
|
+
"Conversational Precision (Writing to One Reader)",
|
|
1183
|
+
"Story-to-CTA Flow",
|
|
1184
|
+
"Objection Anticipation (The Objection Iceberg)"
|
|
1185
|
+
],
|
|
1186
|
+
"useCases": [
|
|
1187
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
1188
|
+
],
|
|
1189
|
+
"qualityCriteria": [
|
|
1190
|
+
"Awareness-level matching",
|
|
1191
|
+
"Sophistication-level calibration",
|
|
1192
|
+
"Urgency with reason-why",
|
|
1193
|
+
"Clear, direct CTA",
|
|
1194
|
+
"Story arc across sequence",
|
|
1195
|
+
"Open loops maintained"
|
|
1196
|
+
],
|
|
1197
|
+
"antiPatterns": [
|
|
1198
|
+
"Anti-Pattern: Why It Fails (Ry's View)",
|
|
1199
|
+
"You end up writing from imagination instead of reality -- the copy sounds like marketing, not like the conversation in the prospect's head: Mine VOC from 3+ sources, use verbatim language, categorize by awareness stage",
|
|
1200
|
+
"Generic benefit statements: \"Save time and money\" could be said by any competitor about any product -- it creates zero differentiation and zero emotional response",
|
|
1201
|
+
"Lists of features overwhelm and bore -- the prospect does not care what the product DOES, they care what it does FOR THEM: One feature per email, framed as a solution to one specific pain point",
|
|
1202
|
+
"Pushing urgency as primary closer: Urgency creates anxiety, and anxious people make NO decision (not fast decisions) -- 60% of lost sales are lost to \"no decision\"",
|
|
1203
|
+
"\"Women 35-50 who want to lose weight\" is not a person -- you cannot write with empathy or precision to a demographic: Write to ONE specific person, name them internally, know their Tuesday morning",
|
|
1204
|
+
"Reflecting VOC without interpretation: Taking survey data at face value and parroting it back is shallow -- the stated pain is the tip of the iceberg",
|
|
1205
|
+
"A bulleted list of objections and answers feels clinical and defensive -- it signals that you know people have doubts: Address objections through stories of real people who had the same doubt and overcame it",
|
|
1206
|
+
"Countdown-timer urgency: Artificial scarcity creates short-term compliance but long-term distrust -- the prospect learns your deadlines are fake"
|
|
1207
|
+
]
|
|
1208
|
+
},
|
|
1209
|
+
"sabri": {
|
|
1210
|
+
"name": "Sabri Suby",
|
|
1211
|
+
"slug": "sabri",
|
|
1212
|
+
"tier": "T2_EXECUTION",
|
|
1213
|
+
"sections": [
|
|
1214
|
+
"ad_creative",
|
|
1215
|
+
"funnel_copy",
|
|
1216
|
+
"high_volume_testing",
|
|
1217
|
+
"scaling_copy",
|
|
1218
|
+
"offer_architecture",
|
|
1219
|
+
"lead_generation"
|
|
1220
|
+
],
|
|
1221
|
+
"tokenBudget": 300,
|
|
1222
|
+
"coreIdentity": "Sell Like Crazy. High-volume ad testing. Funnel-first thinking. The Godfather Offer. Data-driven creativity. King Kong agency methodology. 8-Phase Selling System. Magic Lantern nurture. HVCO lead magnets. The 4% Rule. Larger Market Formula.",
|
|
1223
|
+
"principleCount": 10,
|
|
1224
|
+
"techniqueCount": 7,
|
|
1225
|
+
"principles": [
|
|
1226
|
+
"The best copywriter in the world loses to a mediocre copywriter who tests 100 variations.",
|
|
1227
|
+
"Write fast, test faster, kill losers, scale winners.",
|
|
1228
|
+
"The market decides what works, not your opinion.",
|
|
1229
|
+
"Not your creative director's opinion.",
|
|
1230
|
+
"Sabri built King Kong from $50 and a laptop into Australia's fastest-growing digital marketing agency by following this one principle ruthlessly: let data pick winners, not ego.",
|
|
1231
|
+
"Write the hook FIRST and test it in isolation (first 3 seconds)",
|
|
1232
|
+
"Name the specific pain using the prospect's exact words (VOC language)",
|
|
1233
|
+
"Itemize EVERY component with a dollar value (even free bonuses)",
|
|
1234
|
+
"Show total value vs. asking price ($4,997 value for $497)",
|
|
1235
|
+
"Write quantity first, quality through iteration"
|
|
1236
|
+
],
|
|
1237
|
+
"techniques": [
|
|
1238
|
+
"The HPDA Formula (Hook, Problem, Dream, Agitate)",
|
|
1239
|
+
"The Godfather Offer Architecture",
|
|
1240
|
+
"High-Volume Testing Methodology",
|
|
1241
|
+
"Funnel-First Copy",
|
|
1242
|
+
"Aussie Bluntness & Data-Backed Claims",
|
|
1243
|
+
"Value-First Lead Magnets (HVCO Framework)",
|
|
1244
|
+
"Aggressive Urgency & Scarcity"
|
|
1245
|
+
],
|
|
1246
|
+
"useCases": [
|
|
1247
|
+
"Best for: Creatives",
|
|
1248
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
1249
|
+
],
|
|
1250
|
+
"qualityCriteria": [
|
|
1251
|
+
"Value Equation optimization",
|
|
1252
|
+
"Offer stack coherence",
|
|
1253
|
+
"Measurable, testable claims",
|
|
1254
|
+
"A/B testing readiness",
|
|
1255
|
+
"Hook variety (multiple angles)",
|
|
1256
|
+
"Funnel stage alignment"
|
|
1257
|
+
],
|
|
1258
|
+
"antiPatterns": [
|
|
1259
|
+
"#: Name",
|
|
1260
|
+
"Single ad creative: Write 10+, let data pick winner",
|
|
1261
|
+
"02: The Ego-Driven Pick",
|
|
1262
|
+
"The Leaky Pipe: Scaling broken funnel",
|
|
1263
|
+
"Being subtle in offers: Godfather Offer: irresistible value",
|
|
1264
|
+
"05: The Generic Hook",
|
|
1265
|
+
"The Free-Value Fraud: Pitching inside HVCO",
|
|
1266
|
+
"Only targeting ready buyers: Capture and nurture the 97%",
|
|
1267
|
+
"08: The Feature Lister",
|
|
1268
|
+
"The Wimpy Guarantee: Weak risk reversal",
|
|
1269
|
+
"Non-revenue activities: Power 4% activities only"
|
|
1270
|
+
]
|
|
1271
|
+
},
|
|
1272
|
+
"schwartz": {
|
|
1273
|
+
"name": "Eugene Schwartz",
|
|
1274
|
+
"slug": "schwartz",
|
|
1275
|
+
"tier": "T1_STRATEGIC",
|
|
1276
|
+
"sections": [
|
|
1277
|
+
"headline",
|
|
1278
|
+
"awareness_calibration",
|
|
1279
|
+
"sophistication",
|
|
1280
|
+
"lead",
|
|
1281
|
+
"opening"
|
|
1282
|
+
],
|
|
1283
|
+
"tokenBudget": 500,
|
|
1284
|
+
"coreIdentity": "Breakthrough Advertising. Mass desire channeling. Market awareness + sophistication mapping. The strategic foundation upon which ALL copy in this ecosystem is built.",
|
|
1285
|
+
"principleCount": 10,
|
|
1286
|
+
"techniqueCount": 9,
|
|
1287
|
+
"principles": [
|
|
1288
|
+
"You cannot create desire.",
|
|
1289
|
+
"You can only CHANNEL existing desire toward your product.",
|
|
1290
|
+
"The force, the energy, the drive that makes advertising work comes from the market itself.",
|
|
1291
|
+
"Your job is not to create this force -- your job is to direct it.",
|
|
1292
|
+
"You assemble existing desires, existing beliefs, existing emotions -- and you direct them toward your product with surgical precision.",
|
|
1293
|
+
"Start with the prospect's EXISTING conversation, not your product",
|
|
1294
|
+
"Compress maximum meaning into minimum words",
|
|
1295
|
+
"DIAGNOSE awareness level BEFORE writing a single word",
|
|
1296
|
+
"Match headline energy to awareness (unaware = story, most aware = deal)",
|
|
1297
|
+
"Map BOTH awareness AND sophistication before writing"
|
|
1298
|
+
],
|
|
1299
|
+
"techniques": [
|
|
1300
|
+
"Headline as Bridge",
|
|
1301
|
+
"The 5 Levels of Awareness",
|
|
1302
|
+
"The 5 Levels of Market Sophistication",
|
|
1303
|
+
"Mass Desire Channeling",
|
|
1304
|
+
"Headline Construction by Awareness",
|
|
1305
|
+
"Intensification Strategy",
|
|
1306
|
+
"Identification",
|
|
1307
|
+
"Desire Trifecta",
|
|
1308
|
+
"Parallel Structure and Rhythm"
|
|
1309
|
+
],
|
|
1310
|
+
"useCases": [
|
|
1311
|
+
"Best for: VSL, Landing Page, Creatives, Briefing, Emails",
|
|
1312
|
+
"Invoke during big idea development, mechanism design, and positioning"
|
|
1313
|
+
],
|
|
1314
|
+
"qualityCriteria": [
|
|
1315
|
+
"Awareness-level matching",
|
|
1316
|
+
"Sophistication-level calibration",
|
|
1317
|
+
"Headline effectiveness (information gap)",
|
|
1318
|
+
"Copy rhythm (varied sentence length)"
|
|
1319
|
+
],
|
|
1320
|
+
"antiPatterns": [
|
|
1321
|
+
"Talking product to unaware prospect = disconnect: DIAGNOSE before writing. Always.",
|
|
1322
|
+
"Level 1 in Level 4 market: Direct claims in sophisticated market = eye-rolls",
|
|
1323
|
+
"\"If you want success\" matches no one: \"If you wake up at 3AM with your heart pounding...\"",
|
|
1324
|
+
"Naming hidden desire: Must be implied, never stated",
|
|
1325
|
+
"Each awareness/sophistication level needs unique approach: Use the 25-cell matrix",
|
|
1326
|
+
"Ignoring sophistication: Biggest strategic error in copy",
|
|
1327
|
+
"\"Let me tell you about my product\": Prospect-first: \"Let me tell you about YOUR problem\"",
|
|
1328
|
+
"Weak proof stacking: Single testimonial for major claim",
|
|
1329
|
+
"\"I discovered...\" before identification: \"You've noticed...\" before \"I discovered...\"",
|
|
1330
|
+
"Using the same headline for all channels: Email, ad, LP have different sophistication contexts",
|
|
1331
|
+
"Awareness can shift during a campaign: Re-diagnose at each touchpoint",
|
|
1332
|
+
"Confusing sophistication with cynicism: Sophistication is about EXPOSURE, not attitude",
|
|
1333
|
+
"Unaware prospects do not know they need a mechanism: Story first. Mechanism only after problem awareness is established.",
|
|
1334
|
+
"Enlarging claims without proof: Bigger claims without bigger proof = less credibility, not more",
|
|
1335
|
+
"Competitor may be targeting different segment at different level: Diagnose YOUR audience independently. Their data, not theirs.",
|
|
1336
|
+
"Writing headlines in isolation: Headline disconnected from body = broken promise, broken trust"
|
|
1337
|
+
]
|
|
1338
|
+
},
|
|
1339
|
+
"sugarman": {
|
|
1340
|
+
"name": "Joe Sugarman",
|
|
1341
|
+
"slug": "sugarman",
|
|
1342
|
+
"tier": "T2_EXECUTION",
|
|
1343
|
+
"sections": [
|
|
1344
|
+
"body_copy",
|
|
1345
|
+
"story",
|
|
1346
|
+
"flow",
|
|
1347
|
+
"transitions"
|
|
1348
|
+
],
|
|
1349
|
+
"tokenBudget": 300,
|
|
1350
|
+
"coreIdentity": "The Slippery Slope master. BluBlocker sunglasses. JS&A mail-order pioneer. Emotional flow architect. 30 Psychological Triggers. The Buying Environment. Incubation Process. The man who sold $300M in products from print ads alone.",
|
|
1351
|
+
"principleCount": 10,
|
|
1352
|
+
"techniqueCount": 7,
|
|
1353
|
+
"principles": [
|
|
1354
|
+
"The sole purpose of the first sentence is to get you to read the second sentence.",
|
|
1355
|
+
"The sole purpose of the second sentence is to get you to read the third.",
|
|
1356
|
+
"Every element of copy exists for ONE reason: to keep the reader sliding down the slippery slope until they reach the order form.",
|
|
1357
|
+
"Copy is not about information.",
|
|
1358
|
+
"It is about EMOTIONAL FLOW.",
|
|
1359
|
+
"End paragraphs with forward momentum: \"And here's where it gets strange.\"",
|
|
1360
|
+
"Use incomplete thoughts that demand completion",
|
|
1361
|
+
"Plant 2-3 seeds in the first 20% of copy",
|
|
1362
|
+
"Resolve seeds at different points (stagger the payoffs)",
|
|
1363
|
+
"Build emotional investment before introducing the product"
|
|
1364
|
+
],
|
|
1365
|
+
"techniques": [
|
|
1366
|
+
"Slippery Slope Construction",
|
|
1367
|
+
"Curiosity Seeds (The Seed/Harvest Technique)",
|
|
1368
|
+
"Emotional Flow Architecture",
|
|
1369
|
+
"The Buying Environment",
|
|
1370
|
+
"Involvement Devices",
|
|
1371
|
+
"Personal Connection Voice",
|
|
1372
|
+
"Transition Mastery"
|
|
1373
|
+
],
|
|
1374
|
+
"useCases": [
|
|
1375
|
+
"Best for: VSL, Landing Page",
|
|
1376
|
+
"Invoke during copy production — writing hooks, body, bullets, close"
|
|
1377
|
+
],
|
|
1378
|
+
"qualityCriteria": [
|
|
1379
|
+
"Narrative flow (slippery slope)",
|
|
1380
|
+
"Curiosity seeds planted"
|
|
1381
|
+
],
|
|
1382
|
+
"antiPatterns": [
|
|
1383
|
+
"#: Pattern",
|
|
1384
|
+
"Logic before emotion = low conversion. The rational mind does not create desire -- it evaluates it. Leading with features asks the reader to evaluate before they want.: Build emotional desire FIRST. Introduce features only as logical justification AFTER the emotional decision is made.",
|
|
1385
|
+
"2: Resolved paragraphs",
|
|
1386
|
+
"Generic involvement: \"Imagine success\" is meaningless because every reader defines success differently. Generic involvement creates no mental image, therefore no commitment.",
|
|
1387
|
+
"\"Dear customers\" or \"Dear readers\" kills intimacy instantly. You are no longer talking to ONE person -- you are broadcasting. Broadcasting is ignorable.: Always address a SINGLE person. \"You\" singular. \"I\" to \"you.\" One person at the kitchen table.",
|
|
1388
|
+
"5: Summary transitions",
|
|
1389
|
+
"Information dumping: Dense paragraphs of facts, features, or data overwhelm the reader. Cognitive overload triggers disengagement. The brain shuts down when it cannot process.",
|
|
1390
|
+
"Abstract language is forgettable. The brain processes and remembers CONCRETE sensory input far better than abstract concepts. Copy without sensory detail is invisible.: Engage at least 2 senses per major section. Describe textures, sounds, temperatures, visual details. Make the reader FEEL the copy.",
|
|
1391
|
+
"8: Rushed emotional arc",
|
|
1392
|
+
"Manufactured urgency: Fake scarcity, countdown timers that reset, \"only 3 left\" when there are unlimited. Readers have been burned enough to detect manufactured urgency instantly.",
|
|
1393
|
+
"Switching between casual and formal, between personal and corporate, between warm and clinical. Inconsistency signals inauthenticity and breaks trust.: Choose ONE voice and maintain it throughout. If you start conversational, end conversational.",
|
|
1394
|
+
"11: Selling before earning",
|
|
1395
|
+
"Product in the headline: The headline's job is to get the first sentence read. NOT to name the product. Sugarman's best headlines never mentioned the product.",
|
|
1396
|
+
"Aggressive closes (\"BUY NOW OR ELSE\") create resistance. Sugarman's closes feel like natural conclusions, not demands.: Make the close feel like the obvious next step. \"Here's how to get started...\" beats \"ORDER NOW!\"",
|
|
1397
|
+
"14: Skipping incubation",
|
|
1398
|
+
"Telling, not showing: \"This is amazing\" = telling. \"I put them on and the world changed\" = showing. Telling creates skepticism. Showing creates belief.",
|
|
1399
|
+
"If you explain the mechanism before building curiosity about it, there is no curiosity to sustain the slope.: Delay explanations. Build desire to know BEFORE providing the answer."
|
|
1400
|
+
]
|
|
1401
|
+
},
|
|
1402
|
+
"vaynerchuk": {
|
|
1403
|
+
"name": "Gary Vaynerchuk",
|
|
1404
|
+
"slug": "vaynerchuk",
|
|
1405
|
+
"tier": "T3_SPECIALIZED",
|
|
1406
|
+
"sections": [
|
|
1407
|
+
"social_native_copy",
|
|
1408
|
+
"platform_adaptation",
|
|
1409
|
+
"content_volume",
|
|
1410
|
+
"brand_voice",
|
|
1411
|
+
"attention_arbitrage",
|
|
1412
|
+
"community_building"
|
|
1413
|
+
],
|
|
1414
|
+
"tokenBudget": 200,
|
|
1415
|
+
"coreIdentity": "Jab, Jab, Jab, Right Hook. Platform-native content. Volume strategy. Attention arbitrage. Social-first copywriting. Day Trading Attention. Micro speed, macro patience. Document don't create.",
|
|
1416
|
+
"principleCount": 10,
|
|
1417
|
+
"techniqueCount": 7,
|
|
1418
|
+
"principles": [
|
|
1419
|
+
"### Attention Is the Asset Gary Vaynerchuk operates from a single foundational premise: human attention is the most valuable and most scarce commodity in marketing.",
|
|
1420
|
+
"Every strategy, framework, and tactical decision he makes flows from one question -- \"Where is the attention, and is it underpriced?\" This is not abstract theory.",
|
|
1421
|
+
"It is the same instinct that led him to bet on Google AdWords in 2000, YouTube in 2006, Twitter in 2007, Instagram in 2012, TikTok in 2018, and whatever emerges next.",
|
|
1422
|
+
"The marketer who identifies where attention is migrating BEFORE the majority catches on wins.",
|
|
1423
|
+
"The marketer who follows the herd pays a premium for declining returns.",
|
|
1424
|
+
"Study the native language of each platform before posting",
|
|
1425
|
+
"Adapt the same idea into platform-specific formats",
|
|
1426
|
+
"Create content at platform speed (daily, not weekly)",
|
|
1427
|
+
"Repurpose one long-form piece into 7-64 short-form pieces",
|
|
1428
|
+
"Write in fragments. Not sentences."
|
|
1429
|
+
],
|
|
1430
|
+
"techniques": [
|
|
1431
|
+
"Platform-Native Adaptation",
|
|
1432
|
+
"Content Volume Strategy (The GaryVee Content Model)",
|
|
1433
|
+
"Social Copy Voice",
|
|
1434
|
+
"Raw Authenticity Over Production Value",
|
|
1435
|
+
"Empathy-First Marketing",
|
|
1436
|
+
"Speed Over Perfection",
|
|
1437
|
+
"The Long Game Orientation"
|
|
1438
|
+
],
|
|
1439
|
+
"useCases": [
|
|
1440
|
+
"Invoke for specialized formats — launches, cohorts, social"
|
|
1441
|
+
],
|
|
1442
|
+
"qualityCriteria": [
|
|
1443
|
+
"Hook variety (multiple angles)",
|
|
1444
|
+
"Funnel stage alignment"
|
|
1445
|
+
],
|
|
1446
|
+
"antiPatterns": [
|
|
1447
|
+
"Anti-Pattern: Why He Would Never Do This",
|
|
1448
|
+
"Overproduction signals \"ad\" and triggers scroll reflex. 86% of users prefer authentic content.: Ship raw, iterate fast. Imperfection IS the strategy.",
|
|
1449
|
+
"One-size-fits-all content: \"You wouldn't speak Spanish in Iceland.\" Each platform has its own language and culture.",
|
|
1450
|
+
"Comments ARE the platform. Engagement is where trust is built.: Respond to every comment. Treat each as a conversation.",
|
|
1451
|
+
"Chasing vanity metrics: 1M followers with 0.1% engagement = a vanity project.",
|
|
1452
|
+
"Speed IS the competitive advantage. The brand that ships daily beats the brand that ships monthly.: Publish at platform speed. Done > perfect.",
|
|
1453
|
+
"Posting and ghosting: Posting without engaging is like talking at a party and walking away.",
|
|
1454
|
+
"The biggest wins come from being early. Google AdWords 2000, TikTok 2018.: Allocate 10-20% of effort to experimental channels.",
|
|
1455
|
+
"Optimizing only for clicks/conversions: Short-term conversion optimization destroys long-term brand equity.",
|
|
1456
|
+
"People detect automated responses instantly. Destroys trust.: Real human responses, even if slower. Authenticity scales.",
|
|
1457
|
+
"Treating all customers equally by follower count: A customer with 47 followers who loves your brand is more valuable than an influencer with 1M who does not care."
|
|
1458
|
+
]
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"specialtyMap": {
|
|
1462
|
+
"strategy_multiplier": [
|
|
1463
|
+
"abraham"
|
|
1464
|
+
],
|
|
1465
|
+
"jv_architecture": [
|
|
1466
|
+
"abraham"
|
|
1467
|
+
],
|
|
1468
|
+
"preeminence": [
|
|
1469
|
+
"abraham"
|
|
1470
|
+
],
|
|
1471
|
+
"risk_reversal_advanced": [
|
|
1472
|
+
"abraham"
|
|
1473
|
+
],
|
|
1474
|
+
"optimization_sequence": [
|
|
1475
|
+
"abraham"
|
|
1476
|
+
],
|
|
1477
|
+
"parthenon_revenue": [
|
|
1478
|
+
"abraham"
|
|
1479
|
+
],
|
|
1480
|
+
"referral_systems": [
|
|
1481
|
+
"abraham"
|
|
1482
|
+
],
|
|
1483
|
+
"usp_positioning": [
|
|
1484
|
+
"abraham"
|
|
1485
|
+
],
|
|
1486
|
+
"financial_promo": [
|
|
1487
|
+
"agora"
|
|
1488
|
+
],
|
|
1489
|
+
"magalog": [
|
|
1490
|
+
"agora"
|
|
1491
|
+
],
|
|
1492
|
+
"advertorial": [
|
|
1493
|
+
"agora"
|
|
1494
|
+
],
|
|
1495
|
+
"fear_greed_copy": [
|
|
1496
|
+
"agora"
|
|
1497
|
+
],
|
|
1498
|
+
"fascinations": [
|
|
1499
|
+
"agora",
|
|
1500
|
+
"makepeace"
|
|
1501
|
+
],
|
|
1502
|
+
"big_idea": [
|
|
1503
|
+
"agora",
|
|
1504
|
+
"brown"
|
|
1505
|
+
],
|
|
1506
|
+
"offer_architecture": [
|
|
1507
|
+
"agora",
|
|
1508
|
+
"sabri"
|
|
1509
|
+
],
|
|
1510
|
+
"persuasion_core": [
|
|
1511
|
+
"bencivenga"
|
|
1512
|
+
],
|
|
1513
|
+
"implicit_promise": [
|
|
1514
|
+
"bencivenga"
|
|
1515
|
+
],
|
|
1516
|
+
"proof_structure": [
|
|
1517
|
+
"bencivenga"
|
|
1518
|
+
],
|
|
1519
|
+
"belief_shift": [
|
|
1520
|
+
"bencivenga"
|
|
1521
|
+
],
|
|
1522
|
+
"conviction_architecture": [
|
|
1523
|
+
"bencivenga"
|
|
1524
|
+
],
|
|
1525
|
+
"mecanismo": [
|
|
1526
|
+
"brown"
|
|
1527
|
+
],
|
|
1528
|
+
"offer_stack": [
|
|
1529
|
+
"brown",
|
|
1530
|
+
"hormozi",
|
|
1531
|
+
"kennedy"
|
|
1532
|
+
],
|
|
1533
|
+
"paradigm_shift": [
|
|
1534
|
+
"brown"
|
|
1535
|
+
],
|
|
1536
|
+
"funnel_architecture": [
|
|
1537
|
+
"brunson"
|
|
1538
|
+
],
|
|
1539
|
+
"attractive_character": [
|
|
1540
|
+
"brunson"
|
|
1541
|
+
],
|
|
1542
|
+
"epiphany_bridge": [
|
|
1543
|
+
"brunson"
|
|
1544
|
+
],
|
|
1545
|
+
"webinar_script": [
|
|
1546
|
+
"brunson"
|
|
1547
|
+
],
|
|
1548
|
+
"headline_testing": [
|
|
1549
|
+
"caples"
|
|
1550
|
+
],
|
|
1551
|
+
"ad_copy": [
|
|
1552
|
+
"caples"
|
|
1553
|
+
],
|
|
1554
|
+
"split_test": [
|
|
1555
|
+
"caples"
|
|
1556
|
+
],
|
|
1557
|
+
"proven_headlines": [
|
|
1558
|
+
"caples"
|
|
1559
|
+
],
|
|
1560
|
+
"first_paragraph": [
|
|
1561
|
+
"caples"
|
|
1562
|
+
],
|
|
1563
|
+
"lead": [
|
|
1564
|
+
"caples",
|
|
1565
|
+
"collier",
|
|
1566
|
+
"halbert",
|
|
1567
|
+
"schwartz"
|
|
1568
|
+
],
|
|
1569
|
+
"freelance_copy": [
|
|
1570
|
+
"carlton"
|
|
1571
|
+
],
|
|
1572
|
+
"street_smart": [
|
|
1573
|
+
"carlton"
|
|
1574
|
+
],
|
|
1575
|
+
"sales_letter": [
|
|
1576
|
+
"carlton"
|
|
1577
|
+
],
|
|
1578
|
+
"personality_voice": [
|
|
1579
|
+
"carlton"
|
|
1580
|
+
],
|
|
1581
|
+
"email_sequence": [
|
|
1582
|
+
"chaperon"
|
|
1583
|
+
],
|
|
1584
|
+
"soap_opera": [
|
|
1585
|
+
"chaperon"
|
|
1586
|
+
],
|
|
1587
|
+
"autoresponder": [
|
|
1588
|
+
"chaperon"
|
|
1589
|
+
],
|
|
1590
|
+
"nurture": [
|
|
1591
|
+
"chaperon"
|
|
1592
|
+
],
|
|
1593
|
+
"narrative_marketing": [
|
|
1594
|
+
"chaperon"
|
|
1595
|
+
],
|
|
1596
|
+
"segmentation": [
|
|
1597
|
+
"chaperon"
|
|
1598
|
+
],
|
|
1599
|
+
"influence_audit": [
|
|
1600
|
+
"cialdini"
|
|
1601
|
+
],
|
|
1602
|
+
"social_proof": [
|
|
1603
|
+
"cialdini"
|
|
1604
|
+
],
|
|
1605
|
+
"reciprocity": [
|
|
1606
|
+
"cialdini"
|
|
1607
|
+
],
|
|
1608
|
+
"commitment_consistency": [
|
|
1609
|
+
"cialdini"
|
|
1610
|
+
],
|
|
1611
|
+
"authority_architecture": [
|
|
1612
|
+
"cialdini"
|
|
1613
|
+
],
|
|
1614
|
+
"liking_rapport": [
|
|
1615
|
+
"cialdini"
|
|
1616
|
+
],
|
|
1617
|
+
"scarcity_urgency": [
|
|
1618
|
+
"cialdini"
|
|
1619
|
+
],
|
|
1620
|
+
"unity_tribal": [
|
|
1621
|
+
"cialdini"
|
|
1622
|
+
],
|
|
1623
|
+
"pre_suasion": [
|
|
1624
|
+
"cialdini"
|
|
1625
|
+
],
|
|
1626
|
+
"reader_entry": [
|
|
1627
|
+
"collier"
|
|
1628
|
+
],
|
|
1629
|
+
"empathy_bridge": [
|
|
1630
|
+
"collier"
|
|
1631
|
+
],
|
|
1632
|
+
"letter_opening": [
|
|
1633
|
+
"collier"
|
|
1634
|
+
],
|
|
1635
|
+
"bullets": [
|
|
1636
|
+
"halbert"
|
|
1637
|
+
],
|
|
1638
|
+
"hook": [
|
|
1639
|
+
"halbert"
|
|
1640
|
+
],
|
|
1641
|
+
"subject_line": [
|
|
1642
|
+
"halbert"
|
|
1643
|
+
],
|
|
1644
|
+
"audit": [
|
|
1645
|
+
"hopkins"
|
|
1646
|
+
],
|
|
1647
|
+
"testing_framework": [
|
|
1648
|
+
"hopkins"
|
|
1649
|
+
],
|
|
1650
|
+
"metrics": [
|
|
1651
|
+
"hopkins"
|
|
1652
|
+
],
|
|
1653
|
+
"accountability": [
|
|
1654
|
+
"hopkins"
|
|
1655
|
+
],
|
|
1656
|
+
"scientific_review": [
|
|
1657
|
+
"hopkins"
|
|
1658
|
+
],
|
|
1659
|
+
"reason_why": [
|
|
1660
|
+
"hopkins",
|
|
1661
|
+
"powers"
|
|
1662
|
+
],
|
|
1663
|
+
"preemptive_claim": [
|
|
1664
|
+
"hopkins"
|
|
1665
|
+
],
|
|
1666
|
+
"grand_slam_offer": [
|
|
1667
|
+
"hormozi"
|
|
1668
|
+
],
|
|
1669
|
+
"value_equation": [
|
|
1670
|
+
"hormozi"
|
|
1671
|
+
],
|
|
1672
|
+
"pricing_psychology": [
|
|
1673
|
+
"hormozi"
|
|
1674
|
+
],
|
|
1675
|
+
"content_selling": [
|
|
1676
|
+
"hormozi"
|
|
1677
|
+
],
|
|
1678
|
+
"lead_generation": [
|
|
1679
|
+
"hormozi",
|
|
1680
|
+
"sabri"
|
|
1681
|
+
],
|
|
1682
|
+
"market_selection": [
|
|
1683
|
+
"hormozi"
|
|
1684
|
+
],
|
|
1685
|
+
"sales_framework": [
|
|
1686
|
+
"hormozi"
|
|
1687
|
+
],
|
|
1688
|
+
"urgency": [
|
|
1689
|
+
"kennedy"
|
|
1690
|
+
],
|
|
1691
|
+
"cta": [
|
|
1692
|
+
"kennedy"
|
|
1693
|
+
],
|
|
1694
|
+
"scarcity": [
|
|
1695
|
+
"kennedy"
|
|
1696
|
+
],
|
|
1697
|
+
"guarantee": [
|
|
1698
|
+
"kennedy"
|
|
1699
|
+
],
|
|
1700
|
+
"close": [
|
|
1701
|
+
"kennedy"
|
|
1702
|
+
],
|
|
1703
|
+
"price_presentation": [
|
|
1704
|
+
"kennedy"
|
|
1705
|
+
],
|
|
1706
|
+
"follow_up": [
|
|
1707
|
+
"kennedy"
|
|
1708
|
+
],
|
|
1709
|
+
"launch_copy": [
|
|
1710
|
+
"kern"
|
|
1711
|
+
],
|
|
1712
|
+
"personality_driven": [
|
|
1713
|
+
"kern"
|
|
1714
|
+
],
|
|
1715
|
+
"conversational_selling": [
|
|
1716
|
+
"kern"
|
|
1717
|
+
],
|
|
1718
|
+
"webinar": [
|
|
1719
|
+
"kern"
|
|
1720
|
+
],
|
|
1721
|
+
"email_promo": [
|
|
1722
|
+
"kern"
|
|
1723
|
+
],
|
|
1724
|
+
"intent_branding": [
|
|
1725
|
+
"kern"
|
|
1726
|
+
],
|
|
1727
|
+
"power_lead": [
|
|
1728
|
+
"makepeace"
|
|
1729
|
+
],
|
|
1730
|
+
"emotional_proof": [
|
|
1731
|
+
"makepeace"
|
|
1732
|
+
],
|
|
1733
|
+
"financial_copy": [
|
|
1734
|
+
"makepeace"
|
|
1735
|
+
],
|
|
1736
|
+
"health_copy": [
|
|
1737
|
+
"makepeace"
|
|
1738
|
+
],
|
|
1739
|
+
"dr_power_copy": [
|
|
1740
|
+
"makepeace"
|
|
1741
|
+
],
|
|
1742
|
+
"research_brief": [
|
|
1743
|
+
"ogilvy"
|
|
1744
|
+
],
|
|
1745
|
+
"brand_response": [
|
|
1746
|
+
"ogilvy"
|
|
1747
|
+
],
|
|
1748
|
+
"long_headline": [
|
|
1749
|
+
"ogilvy"
|
|
1750
|
+
],
|
|
1751
|
+
"print_ad": [
|
|
1752
|
+
"ogilvy"
|
|
1753
|
+
],
|
|
1754
|
+
"direct_response": [
|
|
1755
|
+
"ogilvy"
|
|
1756
|
+
],
|
|
1757
|
+
"honest_ad": [
|
|
1758
|
+
"powers"
|
|
1759
|
+
],
|
|
1760
|
+
"radical_candor": [
|
|
1761
|
+
"powers"
|
|
1762
|
+
],
|
|
1763
|
+
"plain_speak": [
|
|
1764
|
+
"powers"
|
|
1765
|
+
],
|
|
1766
|
+
"retail_copy": [
|
|
1767
|
+
"powers"
|
|
1768
|
+
],
|
|
1769
|
+
"news_style": [
|
|
1770
|
+
"powers"
|
|
1771
|
+
],
|
|
1772
|
+
"usp": [
|
|
1773
|
+
"reeves"
|
|
1774
|
+
],
|
|
1775
|
+
"single_proposition": [
|
|
1776
|
+
"reeves"
|
|
1777
|
+
],
|
|
1778
|
+
"repetition_strategy": [
|
|
1779
|
+
"reeves"
|
|
1780
|
+
],
|
|
1781
|
+
"demonstration": [
|
|
1782
|
+
"reeves"
|
|
1783
|
+
],
|
|
1784
|
+
"measurement": [
|
|
1785
|
+
"reeves"
|
|
1786
|
+
],
|
|
1787
|
+
"anti_vampire": [
|
|
1788
|
+
"reeves"
|
|
1789
|
+
],
|
|
1790
|
+
"coaching_conversion": [
|
|
1791
|
+
"ry-schwartz"
|
|
1792
|
+
],
|
|
1793
|
+
"voc_mining": [
|
|
1794
|
+
"ry-schwartz"
|
|
1795
|
+
],
|
|
1796
|
+
"awareness_mapping": [
|
|
1797
|
+
"ry-schwartz"
|
|
1798
|
+
],
|
|
1799
|
+
"belief_architecture": [
|
|
1800
|
+
"ry-schwartz"
|
|
1801
|
+
],
|
|
1802
|
+
"email_sequences": [
|
|
1803
|
+
"ry-schwartz"
|
|
1804
|
+
],
|
|
1805
|
+
"launch_framework": [
|
|
1806
|
+
"ry-schwartz"
|
|
1807
|
+
],
|
|
1808
|
+
"objection_handling": [
|
|
1809
|
+
"ry-schwartz"
|
|
1810
|
+
],
|
|
1811
|
+
"saas_conversion": [
|
|
1812
|
+
"ry-schwartz"
|
|
1813
|
+
],
|
|
1814
|
+
"ad_creative": [
|
|
1815
|
+
"sabri"
|
|
1816
|
+
],
|
|
1817
|
+
"funnel_copy": [
|
|
1818
|
+
"sabri"
|
|
1819
|
+
],
|
|
1820
|
+
"high_volume_testing": [
|
|
1821
|
+
"sabri"
|
|
1822
|
+
],
|
|
1823
|
+
"scaling_copy": [
|
|
1824
|
+
"sabri"
|
|
1825
|
+
],
|
|
1826
|
+
"headline": [
|
|
1827
|
+
"schwartz"
|
|
1828
|
+
],
|
|
1829
|
+
"awareness_calibration": [
|
|
1830
|
+
"schwartz"
|
|
1831
|
+
],
|
|
1832
|
+
"sophistication": [
|
|
1833
|
+
"schwartz"
|
|
1834
|
+
],
|
|
1835
|
+
"opening": [
|
|
1836
|
+
"schwartz"
|
|
1837
|
+
],
|
|
1838
|
+
"body_copy": [
|
|
1839
|
+
"sugarman"
|
|
1840
|
+
],
|
|
1841
|
+
"story": [
|
|
1842
|
+
"sugarman"
|
|
1843
|
+
],
|
|
1844
|
+
"flow": [
|
|
1845
|
+
"sugarman"
|
|
1846
|
+
],
|
|
1847
|
+
"transitions": [
|
|
1848
|
+
"sugarman"
|
|
1849
|
+
],
|
|
1850
|
+
"social_native_copy": [
|
|
1851
|
+
"vaynerchuk"
|
|
1852
|
+
],
|
|
1853
|
+
"platform_adaptation": [
|
|
1854
|
+
"vaynerchuk"
|
|
1855
|
+
],
|
|
1856
|
+
"content_volume": [
|
|
1857
|
+
"vaynerchuk"
|
|
1858
|
+
],
|
|
1859
|
+
"brand_voice": [
|
|
1860
|
+
"vaynerchuk"
|
|
1861
|
+
],
|
|
1862
|
+
"attention_arbitrage": [
|
|
1863
|
+
"vaynerchuk"
|
|
1864
|
+
],
|
|
1865
|
+
"community_building": [
|
|
1866
|
+
"vaynerchuk"
|
|
1867
|
+
]
|
|
1868
|
+
},
|
|
1869
|
+
"deliverableMap": {
|
|
1870
|
+
"VSL": [
|
|
1871
|
+
"agora",
|
|
1872
|
+
"brown",
|
|
1873
|
+
"caples",
|
|
1874
|
+
"cialdini",
|
|
1875
|
+
"collier",
|
|
1876
|
+
"halbert",
|
|
1877
|
+
"hormozi",
|
|
1878
|
+
"kennedy",
|
|
1879
|
+
"schwartz",
|
|
1880
|
+
"sugarman"
|
|
1881
|
+
],
|
|
1882
|
+
"Landing Page": [
|
|
1883
|
+
"agora",
|
|
1884
|
+
"brown",
|
|
1885
|
+
"caples",
|
|
1886
|
+
"cialdini",
|
|
1887
|
+
"collier",
|
|
1888
|
+
"halbert",
|
|
1889
|
+
"hormozi",
|
|
1890
|
+
"kennedy",
|
|
1891
|
+
"reeves",
|
|
1892
|
+
"schwartz",
|
|
1893
|
+
"sugarman"
|
|
1894
|
+
],
|
|
1895
|
+
"Briefing": [
|
|
1896
|
+
"agora",
|
|
1897
|
+
"brown",
|
|
1898
|
+
"ogilvy",
|
|
1899
|
+
"reeves",
|
|
1900
|
+
"schwartz"
|
|
1901
|
+
],
|
|
1902
|
+
"Funnel Design": [
|
|
1903
|
+
"brunson"
|
|
1904
|
+
],
|
|
1905
|
+
"Webinar Scripts": [
|
|
1906
|
+
"brunson",
|
|
1907
|
+
"kern"
|
|
1908
|
+
],
|
|
1909
|
+
"Creatives": [
|
|
1910
|
+
"caples",
|
|
1911
|
+
"halbert",
|
|
1912
|
+
"kennedy",
|
|
1913
|
+
"sabri",
|
|
1914
|
+
"schwartz"
|
|
1915
|
+
],
|
|
1916
|
+
"Emails": [
|
|
1917
|
+
"caples",
|
|
1918
|
+
"chaperon",
|
|
1919
|
+
"collier",
|
|
1920
|
+
"halbert",
|
|
1921
|
+
"kennedy",
|
|
1922
|
+
"schwartz"
|
|
1923
|
+
],
|
|
1924
|
+
"Review": [
|
|
1925
|
+
"cialdini"
|
|
1926
|
+
],
|
|
1927
|
+
"Validation": [
|
|
1928
|
+
"cialdini"
|
|
1929
|
+
],
|
|
1930
|
+
"Offer Design": [
|
|
1931
|
+
"hormozi"
|
|
1932
|
+
],
|
|
1933
|
+
"Checkout": [
|
|
1934
|
+
"hormozi"
|
|
1935
|
+
],
|
|
1936
|
+
"Launch Sequences": [
|
|
1937
|
+
"kern"
|
|
1938
|
+
],
|
|
1939
|
+
"Research": [
|
|
1940
|
+
"ogilvy"
|
|
1941
|
+
]
|
|
1942
|
+
},
|
|
1943
|
+
"qualityCriteriaMap": {
|
|
1944
|
+
"Narrative flow (slippery slope)": [
|
|
1945
|
+
"agora",
|
|
1946
|
+
"bencivenga",
|
|
1947
|
+
"brunson",
|
|
1948
|
+
"chaperon",
|
|
1949
|
+
"kennedy",
|
|
1950
|
+
"sugarman"
|
|
1951
|
+
],
|
|
1952
|
+
"Curiosity seeds planted": [
|
|
1953
|
+
"agora",
|
|
1954
|
+
"bencivenga",
|
|
1955
|
+
"brunson",
|
|
1956
|
+
"chaperon",
|
|
1957
|
+
"kennedy",
|
|
1958
|
+
"sugarman"
|
|
1959
|
+
],
|
|
1960
|
+
"Persuasion principles applied correctly": [
|
|
1961
|
+
"bencivenga",
|
|
1962
|
+
"carlton",
|
|
1963
|
+
"cialdini",
|
|
1964
|
+
"halbert"
|
|
1965
|
+
],
|
|
1966
|
+
"Claims backed by verifiable facts": [
|
|
1967
|
+
"bencivenga",
|
|
1968
|
+
"ogilvy"
|
|
1969
|
+
],
|
|
1970
|
+
"Research depth before writing": [
|
|
1971
|
+
"bencivenga",
|
|
1972
|
+
"ogilvy"
|
|
1973
|
+
],
|
|
1974
|
+
"Unique Mechanism present and differentiated": [
|
|
1975
|
+
"brown"
|
|
1976
|
+
],
|
|
1977
|
+
"New Opportunity positioning (not improvement)": [
|
|
1978
|
+
"brown"
|
|
1979
|
+
],
|
|
1980
|
+
"Value Equation optimization": [
|
|
1981
|
+
"brown",
|
|
1982
|
+
"brunson",
|
|
1983
|
+
"hormozi",
|
|
1984
|
+
"sabri"
|
|
1985
|
+
],
|
|
1986
|
+
"Offer stack coherence": [
|
|
1987
|
+
"brown",
|
|
1988
|
+
"brunson",
|
|
1989
|
+
"hormozi",
|
|
1990
|
+
"sabri"
|
|
1991
|
+
],
|
|
1992
|
+
"Measurable, testable claims": [
|
|
1993
|
+
"caples",
|
|
1994
|
+
"hopkins",
|
|
1995
|
+
"sabri"
|
|
1996
|
+
],
|
|
1997
|
+
"A/B testing readiness": [
|
|
1998
|
+
"caples",
|
|
1999
|
+
"hopkins",
|
|
2000
|
+
"sabri"
|
|
2001
|
+
],
|
|
2002
|
+
"Headline effectiveness (information gap)": [
|
|
2003
|
+
"caples",
|
|
2004
|
+
"halbert",
|
|
2005
|
+
"ogilvy",
|
|
2006
|
+
"schwartz"
|
|
2007
|
+
],
|
|
2008
|
+
"Story arc across sequence": [
|
|
2009
|
+
"chaperon",
|
|
2010
|
+
"ry-schwartz"
|
|
2011
|
+
],
|
|
2012
|
+
"Open loops maintained": [
|
|
2013
|
+
"chaperon",
|
|
2014
|
+
"ry-schwartz"
|
|
2015
|
+
],
|
|
2016
|
+
"Specificity Score (names, numbers, details)": [
|
|
2017
|
+
"halbert",
|
|
2018
|
+
"makepeace"
|
|
2019
|
+
],
|
|
2020
|
+
"Conversational tone (no corporate speak)": [
|
|
2021
|
+
"halbert",
|
|
2022
|
+
"makepeace"
|
|
2023
|
+
],
|
|
2024
|
+
"Bullet quality (curiosity + benefit per bullet)": [
|
|
2025
|
+
"halbert",
|
|
2026
|
+
"makepeace"
|
|
2027
|
+
],
|
|
2028
|
+
"Copy rhythm (varied sentence length)": [
|
|
2029
|
+
"halbert",
|
|
2030
|
+
"schwartz"
|
|
2031
|
+
],
|
|
2032
|
+
"Hook variety (multiple angles)": [
|
|
2033
|
+
"hormozi",
|
|
2034
|
+
"sabri",
|
|
2035
|
+
"vaynerchuk"
|
|
2036
|
+
],
|
|
2037
|
+
"Funnel stage alignment": [
|
|
2038
|
+
"hormozi",
|
|
2039
|
+
"sabri",
|
|
2040
|
+
"vaynerchuk"
|
|
2041
|
+
],
|
|
2042
|
+
"Urgency with reason-why": [
|
|
2043
|
+
"kennedy",
|
|
2044
|
+
"ry-schwartz"
|
|
2045
|
+
],
|
|
2046
|
+
"Clear, direct CTA": [
|
|
2047
|
+
"kennedy",
|
|
2048
|
+
"ry-schwartz"
|
|
2049
|
+
],
|
|
2050
|
+
"Awareness-level matching": [
|
|
2051
|
+
"ry-schwartz",
|
|
2052
|
+
"schwartz"
|
|
2053
|
+
],
|
|
2054
|
+
"Sophistication-level calibration": [
|
|
2055
|
+
"ry-schwartz",
|
|
2056
|
+
"schwartz"
|
|
2057
|
+
]
|
|
2058
|
+
},
|
|
2059
|
+
"antiHomogenizationPatterns": {
|
|
2060
|
+
"abraham": [
|
|
2061
|
+
"What Abraham Would NEVER Do: Why It's Wrong",
|
|
2062
|
+
"Diving board model = fragile: Power Parthenon with 7+ pillars",
|
|
2063
|
+
"**Commodity positioning**: No USP = price competition = death",
|
|
2064
|
+
"Pouring water into a leaky bucket: Optimize all 3 multipliers BEFORE spending on acquisition",
|
|
2065
|
+
"**Weak or absent guarantee**: Risk on the buyer = friction = lost sales",
|
|
2066
|
+
"Ignoring backend = leaving 80% of revenue on the table: Backend sequences, continuity, LTV maximization",
|
|
2067
|
+
"**Selling from need**: Desperation energy repels; advisory energy attracts",
|
|
2068
|
+
"Convergence toward commodity = race to the bottom: 43+ JV structures, Parthenon pillars, distinctive USP",
|
|
2069
|
+
"**Ignoring dormant assets**: Hidden gold left unmined",
|
|
2070
|
+
"Limits upside, misaligns incentives: Performance-based: PI (per inquiry), PO (per order), PLV (per lifetime value)",
|
|
2071
|
+
"**Waiting to add value**: Delaying value until payment = transactional"
|
|
2072
|
+
],
|
|
2073
|
+
"agora": [
|
|
2074
|
+
"Anti-Pattern: Why It Fails",
|
|
2075
|
+
"Reader lost in first 10 seconds; no emotional hook: Power lead with immediate prediction, secret, or fear trigger",
|
|
2076
|
+
"**Generic financial advice**: \"Invest in a diversified portfolio\" -- sounds like every broker",
|
|
2077
|
+
"Promo becomes a product brochure instead of a thesis: One Big Idea that is timely, contrarian, and emotionally compelling",
|
|
2078
|
+
"**Product-first copy**: Leading with the newsletter feels like a sales pitch",
|
|
2079
|
+
"\"We pick good stocks\" -- every newsletter says this: Proprietary named mechanism: \"The Livingston Rotation\" or \"The Crash Code\"",
|
|
2080
|
+
"**Passive voice**: Academic tone kills urgency and emotional engagement",
|
|
2081
|
+
"\"$100,000\" feels made up; \"93%\" feels fabricated: Exact numbers: \"$97,342\" and \"91.7%\" signal real data, not estimates",
|
|
2082
|
+
"**Selling the newsletter**: Prospect does not want a newsletter -- they want the RESULT",
|
|
2083
|
+
"\"Great newsletter!\" has zero selling power: Named testimonials with specific results: \"Robert K., Tampa: '$43,217 in 6 months'\"",
|
|
2084
|
+
"**Missing compliance disclaimers**: FTC/SEC violations can shut down the entire operation",
|
|
2085
|
+
"Competing ideas dilute impact and confuse the reader: Ruthless focus: ONE idea, ONE emotion, ONE mechanism, ONE story"
|
|
2086
|
+
],
|
|
2087
|
+
"bencivenga": [
|
|
2088
|
+
"Modern readers assume BS until proven; claims activate the critical faculty: Replace every claim with a proof element that IMPLIES the claim",
|
|
2089
|
+
"Explicit promises when implicit is possible: Stated promises are evaluated; inferred promises are believed",
|
|
2090
|
+
"Creates resistance, not openness; reader digs in: Validate the old belief, then show a deeper truth that ENCOMPASSES it",
|
|
2091
|
+
"Enthusiasm over evidence: Energy without proof = hype; repels sophisticated buyers",
|
|
2092
|
+
"Wit that draws attention to itself distracts from the IDEA: Let the IDEA do the selling; clarity over cleverness, always",
|
|
2093
|
+
"Writing before studying the control: Cannot beat what you do not understand; flying blind",
|
|
2094
|
+
"Reader can only hold one idea; competing ideas cancel each other: Choose ONE, make everything else subordinate",
|
|
2095
|
+
"Generic promises: \"Feel better\" and \"lose weight\" can be claimed by anyone",
|
|
2096
|
+
"Going straight to biggest claim invites skepticism: Build from moderate to extraordinary with escalating proof",
|
|
2097
|
+
"All proof, no emotion: Data alone does not create buying desire",
|
|
2098
|
+
"A timid guarantee signals uncertainty about the product: Make the guarantee so bold it functions as proof of confidence",
|
|
2099
|
+
"Testing small variations instead of big ideas: Optimizing the wrong concept yields marginal gains",
|
|
2100
|
+
"80% research, 20% writing -- violating this ratio means missing the ONE insight: Spend 4x more time on research than writing; find the insight FIRST",
|
|
2101
|
+
"Fighting prospect's beliefs: Gravity always wins; you cannot argue someone out of a belief they hold emotionally",
|
|
2102
|
+
"\"Dear [FIRST_NAME]\" is not personalization; it is a mail merge: Make the reader feel this solution was DESIGNED for someone in their EXACT situation"
|
|
2103
|
+
],
|
|
2104
|
+
"brown": [
|
|
2105
|
+
"#: Pattern",
|
|
2106
|
+
"Invites comparison = commodity: \"You just told them to Google your competitors\"",
|
|
2107
|
+
"2: No unique mechanism",
|
|
2108
|
+
"Commodity positioning (\"me too\"): Prospect mentally files you with everything else",
|
|
2109
|
+
"Confuses prospect, dilutes belief: \"One mechanism. One offer. No exceptions.\"",
|
|
2110
|
+
"5: Mechanism without paradigm shift",
|
|
2111
|
+
"\"If they can fit your mechanism into their OLD paradigm, you haven't shifted anything.\": ### Tactical Anti-Patterns",
|
|
2112
|
+
"Feature-based stack: Components without mechanism connection = filler",
|
|
2113
|
+
"8: Rushing E1+E2",
|
|
2114
|
+
"Abstract paradigm shift: Must be visual and tangible",
|
|
2115
|
+
"11: Copy-first approach",
|
|
2116
|
+
"Mechanism without visual: If they can't SEE it, they can't believe it",
|
|
2117
|
+
"14: Attacking the prospect's old belief",
|
|
2118
|
+
"Value stack without mechanism connection: Random bonuses dilute the offer",
|
|
2119
|
+
"17: Naming mechanism after the product",
|
|
2120
|
+
"Skipping the \"absolve\" function: Prospect still feels blame = resistance",
|
|
2121
|
+
"20: Using existing category labels",
|
|
2122
|
+
"### The 5 Deadly Sins of Mechanism Marketing: Sin",
|
|
2123
|
+
"**No Mechanism**: Selling benefits without explaining WHY",
|
|
2124
|
+
"Mechanism that can't be visualized: Prospect doesn't understand, doesn't believe",
|
|
2125
|
+
"**Orphan Mechanism**: Mechanism disconnected from the product"
|
|
2126
|
+
],
|
|
2127
|
+
"brunson": [
|
|
2128
|
+
"Anti-Pattern: Why Brunson Would NEVER Do This",
|
|
2129
|
+
"Invites comparison with every failed attempt: Sell a NEW OPPORTUNITY that makes past failures irrelevant",
|
|
2130
|
+
"Presenting without stories: Logic alone doesn't create belief or emotion",
|
|
2131
|
+
"No mass movement = no evangelism = no organic growth: Build a Future-Based Cause with identity labels",
|
|
2132
|
+
"Launching without funnel hacking: Building from scratch when proven models exist is ego",
|
|
2133
|
+
"Revenue ceiling, no customer journey: Value Ladder with ascending offers",
|
|
2134
|
+
"Pitching before connecting: Cold audiences reject pitches",
|
|
2135
|
+
"Free consulting that generates no revenue: Every piece of content, every email, every video has an offer",
|
|
2136
|
+
"Running ads without Dream 100: Fishing without knowing where the fish are",
|
|
2137
|
+
"Corporate = forgettable, impersonal, no connection: Conversational, story-driven, Attractive Character voice",
|
|
2138
|
+
"Objection handling through logic: Logical arguments trigger counter-arguments"
|
|
2139
|
+
],
|
|
2140
|
+
"caples": [
|
|
2141
|
+
"#: Name",
|
|
2142
|
+
"No specific benefit: Name the benefit explicitly",
|
|
2143
|
+
"02: Clever Over Clear",
|
|
2144
|
+
"Untested Assumption: Running single headline",
|
|
2145
|
+
"Entertainment over selling: Benefit-driven copy always",
|
|
2146
|
+
"05: Feature Dump",
|
|
2147
|
+
"Missing CTA: No clear next step",
|
|
2148
|
+
"Stopping tests too early: Run to statistical significance",
|
|
2149
|
+
"08: Multi-Variable Test",
|
|
2150
|
+
"Opinion Override: Personal taste over data",
|
|
2151
|
+
"Random negativity: Tie negative to specific fear"
|
|
2152
|
+
],
|
|
2153
|
+
"carlton": [
|
|
2154
|
+
"Confusion kills sales. Nobody reads past the first complicated sentence.: \"You're not writing a term paper. You're writing to a guy who's half-watching TV.\"",
|
|
2155
|
+
"Overcomplicated language: Every big word costs you customers. Period.",
|
|
2156
|
+
"Timid claims get ignored. The world is too noisy for modest promises.: \"Either make a Big Damn Claim or go home.\"",
|
|
2157
|
+
"Corporate speak: Trust requires personality. Corporations are faceless. People buy from people.",
|
|
2158
|
+
"Desperate = not credible. If you beg, you signal low value.: \"Needy copy repels money. Confident copy attracts it.\"",
|
|
2159
|
+
"No research: Writing without research is typing. It might look like copy, but it has no teeth.",
|
|
2160
|
+
"Copy that impresses copywriters almost NEVER sells to real prospects.: \"Your copy isn't for the Creative Director. It's for the guy in his underwear at 2 AM.\"",
|
|
2161
|
+
"Trying to go viral: Clever does not sell. Clever entertains for free."
|
|
2162
|
+
],
|
|
2163
|
+
"chaperon": [
|
|
2164
|
+
"Pitch-first emails: No investment = no conversion",
|
|
2165
|
+
"Resolved stories: No open loops = no opens",
|
|
2166
|
+
"Newsletter format: Brand-feeling = low engagement",
|
|
2167
|
+
"HTML-heavy design: Personal emails outperform designed ones",
|
|
2168
|
+
"No narrative arc: Disconnected emails = sequence ignored",
|
|
2169
|
+
"Generic subject lines: \"Monthly Update\" = deleted",
|
|
2170
|
+
"\"Dear valued subscriber\": Instant brand signal. Inbox trust broken.",
|
|
2171
|
+
"Multiple CTAs per email: Splits attention. Reduces click-through on all links.",
|
|
2172
|
+
"Recycled content for win-back: Signals you have nothing new to say. Confirms their decision to disengage.",
|
|
2173
|
+
"Daily emails during nurture: Exhausts goodwill. 2-3 per week maximum outside of launch.",
|
|
2174
|
+
"Countdown timers in SOS: Artificial urgency clashes with narrative urgency. Breaks immersion.",
|
|
2175
|
+
"\"ICYMI\" subject lines: Lazy. Signals the email was not important enough to open the first time.",
|
|
2176
|
+
"Bullet-point benefit lists in story emails: Breaks narrative voice. Benefits must emerge FROM the story.",
|
|
2177
|
+
"Long paragraphs (5+ sentences): Wall of text kills readability in email. Short blocks create rhythm.",
|
|
2178
|
+
"Starting with \"I want to tell you about...\": Announces the story instead of TELLING it. Opens in medias res or not at all."
|
|
2179
|
+
],
|
|
2180
|
+
"cialdini": [
|
|
2181
|
+
"Anti-Pattern: Why It Fails",
|
|
2182
|
+
"Destroys trust permanently. Prospect discovers the timer resets and NEVER trusts you again.: Use REAL deadlines with REAL consequences (\"batch ships Friday\")",
|
|
2183
|
+
"**Fabricated testimonials**: Social proof built on lies collapses all 7 principles simultaneously.",
|
|
2184
|
+
"Giving with visible expectation of return triggers REACTANCE, not obligation.: Give genuinely. The obligation forms naturally.",
|
|
2185
|
+
"**Generic social proof**: \"Thousands of happy customers\" is noise. No specificity = no believability.",
|
|
2186
|
+
"Excessive, unearned compliments feel manipulative and hollow.: Demonstrate SIMILARITY and UNDERSTANDING instead. Empathy > flattery.",
|
|
2187
|
+
"**Unity appropriation**: Claiming shared identity you do not genuinely hold (\"As a fellow sufferer...\") when it is not true.",
|
|
2188
|
+
"Relying entirely on scarcity or entirely on social proof. One leg does not make a table.: Stack 4-7 principles. Each one shores up the others' weaknesses.",
|
|
2189
|
+
"**Argument-based persuasion**: Leading with logical arguments triggers counter-arguing reflexes."
|
|
2190
|
+
],
|
|
2191
|
+
"collier": [
|
|
2192
|
+
"Reader not ready yet: \"You walked into the middle of their conversation and started talking about YOURSELF. No wonder they stopped listening.\"",
|
|
2193
|
+
"Missing the conversation: Not meeting their mental state",
|
|
2194
|
+
"Can only meet, never create: \"You cannot light a fire in a room that has no fuel. Find the fuel that is already burning.\"",
|
|
2195
|
+
"Information dump: Kills progressive revelation",
|
|
2196
|
+
"Jumping to solution too fast: \"You spent 10 words on their problem and 500 on your product. That is the ratio of someone who does not understand selling.\"",
|
|
2197
|
+
"Leading with features: Features are YOUR language",
|
|
2198
|
+
"\"Better health\" instead of specifics: \"Better health means nothing. Waking up without pain, hearing your grandchild whisper, climbing stairs without stopping -- THAT means something.\"",
|
|
2199
|
+
"Self-centered copy: Too much \"I\" and \"we\"",
|
|
2200
|
+
"\"Many people\" and \"great results\": \"If you cannot name the person, the place, and the number, you have not said anything at all.\"",
|
|
2201
|
+
"Skipping validation: Mirror without validate = cold"
|
|
2202
|
+
],
|
|
2203
|
+
"halbert": [
|
|
2204
|
+
"#: Name",
|
|
2205
|
+
"Corporate tone: Write like a human to a human",
|
|
2206
|
+
"02: The Comedian",
|
|
2207
|
+
"The Wall: Long paragraphs",
|
|
2208
|
+
"Weak PS/no PS: Strongest benefit or deadline",
|
|
2209
|
+
"05: The Menu",
|
|
2210
|
+
"The Ghost: No specifics",
|
|
2211
|
+
"Perfect grammar: Write how people talk",
|
|
2212
|
+
"08: The Lecture",
|
|
2213
|
+
"The Resume: Leading with credentials",
|
|
2214
|
+
"Hedging language: Assert, claim, prove",
|
|
2215
|
+
"11: The Showoff",
|
|
2216
|
+
"The Burier: Best line buried"
|
|
2217
|
+
],
|
|
2218
|
+
"hopkins": [
|
|
2219
|
+
"Untestable claims: \"You cannot improve what you cannot measure.\"",
|
|
2220
|
+
"General statements: \"The weight of an argument may often be doubled by making it specific.\"",
|
|
2221
|
+
"No tracking: \"Copy without measurement is guessing -- and guessing is gambling.\"",
|
|
2222
|
+
"Opinion-based approval: \"'I like it' is not a metric. The market's verdict is the only verdict.\"",
|
|
2223
|
+
"Word bloat: \"Every unnecessary word costs the advertiser money and the reader patience.\"",
|
|
2224
|
+
"No control test: \"You cannot know what works without knowing what it replaced.\"",
|
|
2225
|
+
"Entertainment over selling: \"The only purpose of advertising is to make sales. Not to amuse.\"",
|
|
2226
|
+
"Humor in ads: \"People do not buy from clowns. They buy from people they trust.\"",
|
|
2227
|
+
"Negative advertising: \"Negative advertising is never done by a competent man.\"",
|
|
2228
|
+
"Guessing without testing: \"Almost any question can be answered by a test campaign.\"",
|
|
2229
|
+
"Ego-driven copy: \"Remember the people you address are selfish. They care nothing about your interests.\"",
|
|
2230
|
+
"Competing on price alone: \"Cheapness is not an appeal. Americans want bargains in QUALITY.\"",
|
|
2231
|
+
"Vague promises: \"Platitudes and generalities roll off the human understanding like water from a duck.\"",
|
|
2232
|
+
"Fancy/artistic ads: \"Ads are not written to entertain. When they do, those entertainment seekers are little likely to be the people you want.\"",
|
|
2233
|
+
"Ignoring human nature: \"The advertising man who ignores human nature will not succeed.\"",
|
|
2234
|
+
"No sampling/trial: \"The product itself is its own best salesman. Get it into the prospect's hands.\"",
|
|
2235
|
+
"Self-praise: \"The best salesmen are plain, sincere men -- not braggarts.\""
|
|
2236
|
+
],
|
|
2237
|
+
"hormozi": [
|
|
2238
|
+
"Anti-Pattern: Why Hormozi Would NEVER Do This",
|
|
2239
|
+
"Destroys perceived value, trains customers to wait, creates death spiral: Add bonuses to increase value without reducing price",
|
|
2240
|
+
"Unclear value proposition: If you can't explain the value in one sentence, you don't have an offer",
|
|
2241
|
+
"Race to the bottom with zero differentiation; you become a commodity: Compete on VALUE and differentiation instead",
|
|
2242
|
+
"Vague promises: \"Grow your business\" means nothing; specificity creates believability",
|
|
2243
|
+
"Features, modules, and deliverables don't create desire: Sell the vacation -- the OUTCOME, not the process",
|
|
2244
|
+
"One source of leads: Single-channel dependence creates existential risk",
|
|
2245
|
+
"Tweaking a broken offer is polishing a turd: Fix the OFFER first, then optimize the funnel",
|
|
2246
|
+
"Giving away LESS to sell MORE: Hoarding knowledge thinking it makes people pay",
|
|
2247
|
+
"Buyer's remorse kills LTV; refunds destroy profitability: Reinforce within 48 hours; onboard aggressively",
|
|
2248
|
+
"Using \"I need to think about it\" as a real objection: It's almost never the real objection; it's a polite rejection"
|
|
2249
|
+
],
|
|
2250
|
+
"kennedy": [
|
|
2251
|
+
"Weak ask = weak response: \"When it's time to sell, SELL. Don't whisper. Don't suggest. CLOSE.\"",
|
|
2252
|
+
"Single deadline: One pressure point = easy to resist",
|
|
2253
|
+
"\"Satisfaction guaranteed\" = invisible: \"Name it. Tie it to a measurable outcome. Make it BOLD.\"",
|
|
2254
|
+
"One CTA: Tell them 3+ times to act",
|
|
2255
|
+
"\"Might\", \"could\", \"possibly\" = death: \"Delete every hedge word. If you don't believe it, why should they?\"",
|
|
2256
|
+
"No damaging admission: Too perfect = too suspicious",
|
|
2257
|
+
"Awards without sales = ego: \"Does it SELL? That's the ONLY question. Nobody deposits trophies.\"",
|
|
2258
|
+
"Competing on price: Attracts worst customers",
|
|
2259
|
+
"Fence-sitting = invisible: \"Have a position. DEFEND it. Polarize if necessary.\"",
|
|
2260
|
+
"Selling to everyone: Diluted message = no message",
|
|
2261
|
+
"Waiting until end = cold prospect: \"Close throughout. Test buying temperature. Build commitment.\"",
|
|
2262
|
+
"Pretty design over copy: Design never sold anything"
|
|
2263
|
+
],
|
|
2264
|
+
"kern": [
|
|
2265
|
+
"Destroys trust. The sale should be EARNED through generosity.: Deliver genuine results in advance, then offer naturally.",
|
|
2266
|
+
"Corporate or polished tone: Kills the personality bond that IS the brand. Nobody bonds with a brochure.",
|
|
2267
|
+
"If the prospect needs a PhD to understand your offer, you have failed.: Break everything down to \"here's what you do\" simplicity.",
|
|
2268
|
+
"Holding back free value: The prospect finds it elsewhere and remembers you withheld it. You lose twice.",
|
|
2269
|
+
"Generic copy = invisible copy. Nobody remembers the marketer who sounded like everyone else.: Inject real opinions, stories, humor, and genuine personality into everything.",
|
|
2270
|
+
"Content-free launches: PLCs that tease without teaching create resentment, not anticipation.",
|
|
2271
|
+
"Desperation energy repels buyers. Confidence attracts them.: \"Take it or leave it\" energy. You are doing fine either way. The offer exists because it helps.",
|
|
2272
|
+
"Targeting everyone: Mass marketing is dead. Relevance beats reach every time."
|
|
2273
|
+
],
|
|
2274
|
+
"makepeace": [
|
|
2275
|
+
"#: Anti-Pattern",
|
|
2276
|
+
"\"Nobody ever bought a supplement because of a peer-reviewed study alone.\" Engaging the brain without the gut produces nods, not orders.: Frame EVERY fact through its emotional consequence. \"Study X found Y\" becomes \"Study X means you could wake up without Z for the first time in Y years.\"",
|
|
2277
|
+
"2: **The Weak Lead**",
|
|
2278
|
+
"**The Proof Desert**: A section of 500+ words with zero proof elements. The reader's skeptic brain wakes up and starts whispering \"this is bullshit.\"",
|
|
2279
|
+
"\"Lose weight\" without showing what weight loss MEANS in their life -- their marriage, their mirror, their grandchildren, their identity.: Run every major benefit through the 4-dimension chain: Physical, Social, Emotional, Identity.",
|
|
2280
|
+
"5: **The Feature Dump**",
|
|
2281
|
+
"**The Monotone Emotion**: Using fear and ONLY fear for 3,000 words. Emotional fatigue sets in at ~500 words of the same emotion.",
|
|
2282
|
+
"Warm-up paragraphs, throat-clearing, \"Dear Friend, in today's world...\" before any emotional impact.: Cut everything before the first line that creates emotional impact. That IS your opening.",
|
|
2283
|
+
"8: **The Unanchored Claim**",
|
|
2284
|
+
"**The Premature Solution**: Introducing the product before fully selling the diagnosis. The prospect hasn't bought the PROBLEM yet.",
|
|
2285
|
+
"No villain. No one to blame. The problem just \"exists.\" This robs the copy of anger, betrayal, and vindication energy.: Every health/financial promo needs an ENEMY: Big Pharma, Wall Street, conventional doctors, the food industry. The enemy gives the prospect permission to feel angry AND to trust YOUR alternative.",
|
|
2286
|
+
"11: **The Flat Fascination**",
|
|
2287
|
+
"**The Orphan Guarantee**: A guarantee buried in small print without dimensionalization."
|
|
2288
|
+
],
|
|
2289
|
+
"ogilvy": [
|
|
2290
|
+
"Copy without research is guessing -- expensive guessing: \"I am helpless without research material\"",
|
|
2291
|
+
"Puns in headlines: Cleverness obscures the selling message; reader remembers the pun, not the product",
|
|
2292
|
+
"Vague claims are unbelievable; specifics are irresistible: \"The more informative, the more persuasive\"",
|
|
2293
|
+
"Hype tone: Disrespects reader intelligence; breaks trust",
|
|
2294
|
+
"Compromised ideas satisfy everyone, persuade no one: \"Committees can criticize but cannot create\"",
|
|
2295
|
+
"Discarding winners: Boredom of the advertiser kills campaigns that still sell",
|
|
2296
|
+
"Borrowed interest; people remember the celebrity, not the product: Ogilvy called the Eleanor Roosevelt margarine ad a mistake",
|
|
2297
|
+
"Ignoring captions: 2x more people read captions than body; wasted real estate",
|
|
2298
|
+
"Funny ads win awards, not sales; product message gets lost: \"You cannot bore people into buying, but you cannot joke them either\"",
|
|
2299
|
+
"Jargon language: Pretentious language alienates; plain language persuades",
|
|
2300
|
+
"Imitation creates mediocre brands: \"Nobody built a brand by imitating somebody else's advertising\"",
|
|
2301
|
+
"All caps in body: Readers process all-caps one letter at a time; kills readability",
|
|
2302
|
+
"Strategy must precede execution; positioning > copywriting: \"Positioning decided before advertising is created\""
|
|
2303
|
+
],
|
|
2304
|
+
"powers": [
|
|
2305
|
+
"Erodes trust in skeptical markets: \"If your product needs hype, fix the product\"",
|
|
2306
|
+
"Hidden limitations: Discovered later = betrayal",
|
|
2307
|
+
"Worse than straightforward selling: \"A calculated confession is still a lie\"",
|
|
2308
|
+
"Passive voice: Weakens every statement",
|
|
2309
|
+
"Breeds resentment: \"Give them reasons, not feelings\"",
|
|
2310
|
+
"Feature-first copy: Ignores what the customer actually wants",
|
|
2311
|
+
"Creates immediate distrust: \"Specifics convince. Generalities bore.\"",
|
|
2312
|
+
"Self-centered copy: Violates the selfishness principle",
|
|
2313
|
+
"Prizes wit over communication: \"Be interesting, not clever\"",
|
|
2314
|
+
"Industry jargon: Excludes the very people you are trying to reach"
|
|
2315
|
+
],
|
|
2316
|
+
"reeves": [
|
|
2317
|
+
"Dilutes every claim; prospect retains zero: \"One proposition. ONE. Not two. The moment you add a second, you have halved the first.\"",
|
|
2318
|
+
"Entertainment over selling: Vampire creativity -- audience recalls humor, forgets product",
|
|
2319
|
+
"Visual beauty that serves the art director, not the USP: \"The ad is supposed to sell the product, not the photographer.\"",
|
|
2320
|
+
"Brand image without claim: Unmeasurable, unaccountable, undirectable",
|
|
2321
|
+
"If a competitor can say the same thing, it is not a USP: \"Replace your brand name with a competitor's. If the claim still works, throw it away.\"",
|
|
2322
|
+
"Frequency without consistency: Running many ads with different propositions",
|
|
2323
|
+
"A/B testing the execution when the USP is wrong: \"You are testing paint colors on a house with no foundation.\""
|
|
2324
|
+
],
|
|
2325
|
+
"ry-schwartz": [
|
|
2326
|
+
"Anti-Pattern: Why It Fails (Ry's View)",
|
|
2327
|
+
"You end up writing from imagination instead of reality -- the copy sounds like marketing, not like the conversation in the prospect's head: Mine VOC from 3+ sources, use verbatim language, categorize by awareness stage",
|
|
2328
|
+
"Generic benefit statements: \"Save time and money\" could be said by any competitor about any product -- it creates zero differentiation and zero emotional response",
|
|
2329
|
+
"Lists of features overwhelm and bore -- the prospect does not care what the product DOES, they care what it does FOR THEM: One feature per email, framed as a solution to one specific pain point",
|
|
2330
|
+
"Pushing urgency as primary closer: Urgency creates anxiety, and anxious people make NO decision (not fast decisions) -- 60% of lost sales are lost to \"no decision\"",
|
|
2331
|
+
"\"Women 35-50 who want to lose weight\" is not a person -- you cannot write with empathy or precision to a demographic: Write to ONE specific person, name them internally, know their Tuesday morning",
|
|
2332
|
+
"Reflecting VOC without interpretation: Taking survey data at face value and parroting it back is shallow -- the stated pain is the tip of the iceberg",
|
|
2333
|
+
"A bulleted list of objections and answers feels clinical and defensive -- it signals that you know people have doubts: Address objections through stories of real people who had the same doubt and overcame it",
|
|
2334
|
+
"Countdown-timer urgency: Artificial scarcity creates short-term compliance but long-term distrust -- the prospect learns your deadlines are fake"
|
|
2335
|
+
],
|
|
2336
|
+
"sabri": [
|
|
2337
|
+
"#: Name",
|
|
2338
|
+
"Single ad creative: Write 10+, let data pick winner",
|
|
2339
|
+
"02: The Ego-Driven Pick",
|
|
2340
|
+
"The Leaky Pipe: Scaling broken funnel",
|
|
2341
|
+
"Being subtle in offers: Godfather Offer: irresistible value",
|
|
2342
|
+
"05: The Generic Hook",
|
|
2343
|
+
"The Free-Value Fraud: Pitching inside HVCO",
|
|
2344
|
+
"Only targeting ready buyers: Capture and nurture the 97%",
|
|
2345
|
+
"08: The Feature Lister",
|
|
2346
|
+
"The Wimpy Guarantee: Weak risk reversal",
|
|
2347
|
+
"Non-revenue activities: Power 4% activities only"
|
|
2348
|
+
],
|
|
2349
|
+
"schwartz": [
|
|
2350
|
+
"Talking product to unaware prospect = disconnect: DIAGNOSE before writing. Always.",
|
|
2351
|
+
"Level 1 in Level 4 market: Direct claims in sophisticated market = eye-rolls",
|
|
2352
|
+
"\"If you want success\" matches no one: \"If you wake up at 3AM with your heart pounding...\"",
|
|
2353
|
+
"Naming hidden desire: Must be implied, never stated",
|
|
2354
|
+
"Each awareness/sophistication level needs unique approach: Use the 25-cell matrix",
|
|
2355
|
+
"Ignoring sophistication: Biggest strategic error in copy",
|
|
2356
|
+
"\"Let me tell you about my product\": Prospect-first: \"Let me tell you about YOUR problem\"",
|
|
2357
|
+
"Weak proof stacking: Single testimonial for major claim",
|
|
2358
|
+
"\"I discovered...\" before identification: \"You've noticed...\" before \"I discovered...\"",
|
|
2359
|
+
"Using the same headline for all channels: Email, ad, LP have different sophistication contexts",
|
|
2360
|
+
"Awareness can shift during a campaign: Re-diagnose at each touchpoint",
|
|
2361
|
+
"Confusing sophistication with cynicism: Sophistication is about EXPOSURE, not attitude",
|
|
2362
|
+
"Unaware prospects do not know they need a mechanism: Story first. Mechanism only after problem awareness is established.",
|
|
2363
|
+
"Enlarging claims without proof: Bigger claims without bigger proof = less credibility, not more",
|
|
2364
|
+
"Competitor may be targeting different segment at different level: Diagnose YOUR audience independently. Their data, not theirs.",
|
|
2365
|
+
"Writing headlines in isolation: Headline disconnected from body = broken promise, broken trust"
|
|
2366
|
+
],
|
|
2367
|
+
"sugarman": [
|
|
2368
|
+
"#: Pattern",
|
|
2369
|
+
"Logic before emotion = low conversion. The rational mind does not create desire -- it evaluates it. Leading with features asks the reader to evaluate before they want.: Build emotional desire FIRST. Introduce features only as logical justification AFTER the emotional decision is made.",
|
|
2370
|
+
"2: Resolved paragraphs",
|
|
2371
|
+
"Generic involvement: \"Imagine success\" is meaningless because every reader defines success differently. Generic involvement creates no mental image, therefore no commitment.",
|
|
2372
|
+
"\"Dear customers\" or \"Dear readers\" kills intimacy instantly. You are no longer talking to ONE person -- you are broadcasting. Broadcasting is ignorable.: Always address a SINGLE person. \"You\" singular. \"I\" to \"you.\" One person at the kitchen table.",
|
|
2373
|
+
"5: Summary transitions",
|
|
2374
|
+
"Information dumping: Dense paragraphs of facts, features, or data overwhelm the reader. Cognitive overload triggers disengagement. The brain shuts down when it cannot process.",
|
|
2375
|
+
"Abstract language is forgettable. The brain processes and remembers CONCRETE sensory input far better than abstract concepts. Copy without sensory detail is invisible.: Engage at least 2 senses per major section. Describe textures, sounds, temperatures, visual details. Make the reader FEEL the copy.",
|
|
2376
|
+
"8: Rushed emotional arc",
|
|
2377
|
+
"Manufactured urgency: Fake scarcity, countdown timers that reset, \"only 3 left\" when there are unlimited. Readers have been burned enough to detect manufactured urgency instantly.",
|
|
2378
|
+
"Switching between casual and formal, between personal and corporate, between warm and clinical. Inconsistency signals inauthenticity and breaks trust.: Choose ONE voice and maintain it throughout. If you start conversational, end conversational.",
|
|
2379
|
+
"11: Selling before earning",
|
|
2380
|
+
"Product in the headline: The headline's job is to get the first sentence read. NOT to name the product. Sugarman's best headlines never mentioned the product.",
|
|
2381
|
+
"Aggressive closes (\"BUY NOW OR ELSE\") create resistance. Sugarman's closes feel like natural conclusions, not demands.: Make the close feel like the obvious next step. \"Here's how to get started...\" beats \"ORDER NOW!\"",
|
|
2382
|
+
"14: Skipping incubation",
|
|
2383
|
+
"Telling, not showing: \"This is amazing\" = telling. \"I put them on and the world changed\" = showing. Telling creates skepticism. Showing creates belief.",
|
|
2384
|
+
"If you explain the mechanism before building curiosity about it, there is no curiosity to sustain the slope.: Delay explanations. Build desire to know BEFORE providing the answer."
|
|
2385
|
+
],
|
|
2386
|
+
"vaynerchuk": [
|
|
2387
|
+
"Anti-Pattern: Why He Would Never Do This",
|
|
2388
|
+
"Overproduction signals \"ad\" and triggers scroll reflex. 86% of users prefer authentic content.: Ship raw, iterate fast. Imperfection IS the strategy.",
|
|
2389
|
+
"One-size-fits-all content: \"You wouldn't speak Spanish in Iceland.\" Each platform has its own language and culture.",
|
|
2390
|
+
"Comments ARE the platform. Engagement is where trust is built.: Respond to every comment. Treat each as a conversation.",
|
|
2391
|
+
"Chasing vanity metrics: 1M followers with 0.1% engagement = a vanity project.",
|
|
2392
|
+
"Speed IS the competitive advantage. The brand that ships daily beats the brand that ships monthly.: Publish at platform speed. Done > perfect.",
|
|
2393
|
+
"Posting and ghosting: Posting without engaging is like talking at a party and walking away.",
|
|
2394
|
+
"The biggest wins come from being early. Google AdWords 2000, TikTok 2018.: Allocate 10-20% of effort to experimental channels.",
|
|
2395
|
+
"Optimizing only for clicks/conversions: Short-term conversion optimization destroys long-term brand equity.",
|
|
2396
|
+
"People detect automated responses instantly. Destroys trust.: Real human responses, even if slower. Authenticity scales.",
|
|
2397
|
+
"Treating all customers equally by follower count: A customer with 47 followers who loves your brand is more valuable than an influencer with 1M who does not care."
|
|
2398
|
+
]
|
|
2399
|
+
},
|
|
2400
|
+
"tierSummary": {
|
|
2401
|
+
"T1_STRATEGIC": [
|
|
2402
|
+
"abraham",
|
|
2403
|
+
"agora",
|
|
2404
|
+
"bencivenga",
|
|
2405
|
+
"brown",
|
|
2406
|
+
"hormozi",
|
|
2407
|
+
"kennedy",
|
|
2408
|
+
"makepeace",
|
|
2409
|
+
"reeves",
|
|
2410
|
+
"ry-schwartz",
|
|
2411
|
+
"schwartz"
|
|
2412
|
+
],
|
|
2413
|
+
"T2_EXECUTION": [
|
|
2414
|
+
"brunson",
|
|
2415
|
+
"caples",
|
|
2416
|
+
"carlton",
|
|
2417
|
+
"chaperon",
|
|
2418
|
+
"halbert",
|
|
2419
|
+
"kern",
|
|
2420
|
+
"sabri",
|
|
2421
|
+
"sugarman"
|
|
2422
|
+
],
|
|
2423
|
+
"T0_DIAGNOSIS": [
|
|
2424
|
+
"cialdini",
|
|
2425
|
+
"collier",
|
|
2426
|
+
"ogilvy"
|
|
2427
|
+
],
|
|
2428
|
+
"AUDIT": [
|
|
2429
|
+
"hopkins"
|
|
2430
|
+
],
|
|
2431
|
+
"T3_SPECIALIZED": [
|
|
2432
|
+
"powers",
|
|
2433
|
+
"vaynerchuk"
|
|
2434
|
+
]
|
|
2435
|
+
}
|
|
2436
|
+
}
|