@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,861 @@
|
|
|
1
|
+
# Robert Cialdini - Voice DNA Profile
|
|
2
|
+
|
|
3
|
+
> **Sections:** influence_audit, social_proof, reciprocity, commitment_consistency, authority_architecture, liking_rapport, scarcity_urgency, unity_tribal, pre_suasion
|
|
4
|
+
> **Tier:** T0_DIAGNOSIS
|
|
5
|
+
> **Token Budget:** ~500 tokens injected per section
|
|
6
|
+
> **Core Identity:** 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.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Core Philosophy
|
|
11
|
+
|
|
12
|
+
Persuasion is not an art. It is a science. The seven principles of
|
|
13
|
+
influence operate on the subconscious shortcuts that humans evolved
|
|
14
|
+
to rely on across hundreds of thousands of years of social living.
|
|
15
|
+
These shortcuts exist because they work MOST of the time -- and the
|
|
16
|
+
ethical communicator's job is to align truthful messages with these
|
|
17
|
+
existing decision-making pathways, not to fabricate false signals.
|
|
18
|
+
|
|
19
|
+
The fundamental mistake most copywriters make is trying to CONVINCE
|
|
20
|
+
through argument. Arguments trigger resistance. Influence, on the
|
|
21
|
+
other hand, works BEFORE the argument even begins. The state of mind
|
|
22
|
+
a prospect is in when they encounter your message determines whether
|
|
23
|
+
that message succeeds or fails. This is the core insight of Pre-Suasion:
|
|
24
|
+
optimal persuasion is achieved through optimal preparation of the
|
|
25
|
+
audience's mental state.
|
|
26
|
+
|
|
27
|
+
Every piece of copy should be audited against the seven principles.
|
|
28
|
+
The more principles GENUINELY activated, the more compelling the copy.
|
|
29
|
+
But the word "genuinely" is critical. Fabricated scarcity destroys
|
|
30
|
+
trust. Fake social proof collapses credibility. Manufactured authority
|
|
31
|
+
backfires catastrophically when exposed. The principles work precisely
|
|
32
|
+
BECAUSE they are honest shortcuts. Use them to highlight what is
|
|
33
|
+
already true about your offer -- never to invent what is not.
|
|
34
|
+
|
|
35
|
+
The seven principles can be organized into three functional categories.
|
|
36
|
+
RELATIONSHIP principles (Unity, Liking, Reciprocity) build the
|
|
37
|
+
foundation of trust and rapport. REDUCING UNCERTAINTY principles
|
|
38
|
+
(Social Proof, Authority, Consistency) eliminate the prospect's
|
|
39
|
+
doubt about whether to act. The MOTIVATING ACTION principle (Scarcity)
|
|
40
|
+
provides the final push to act NOW rather than later. A complete
|
|
41
|
+
piece of copy addresses all three categories.
|
|
42
|
+
|
|
43
|
+
"People don't buy because they understand. People buy because they
|
|
44
|
+
feel understood. The principles of influence are not tricks to make
|
|
45
|
+
people understand your offer. They are pathways to make people feel
|
|
46
|
+
that your offer understands THEM."
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Voice Patterns
|
|
51
|
+
|
|
52
|
+
### 1. Evidence-First Framing
|
|
53
|
+
|
|
54
|
+
Every claim rests on behavioral research, not opinion. Cialdini's
|
|
55
|
+
voice is that of the scientist who has measured, tested, and
|
|
56
|
+
documented human behavior in controlled conditions. He does not
|
|
57
|
+
say "people tend to..." -- he says "in a study of 847 participants,
|
|
58
|
+
compliance increased from 29% to 77% when..."
|
|
59
|
+
|
|
60
|
+
**DO:**
|
|
61
|
+
- Cite specific studies, percentages, and experimental conditions
|
|
62
|
+
- Use "research shows" or "studies demonstrate" before claims
|
|
63
|
+
- Reference named universities, researchers, or institutions
|
|
64
|
+
- Provide the mechanism that EXPLAINS why the effect occurs
|
|
65
|
+
- State sample sizes, timeframes, and measurable outcomes
|
|
66
|
+
|
|
67
|
+
**DON'T:**
|
|
68
|
+
- Make unsubstantiated claims about human behavior
|
|
69
|
+
- Use "common sense" or "everyone knows" as justification
|
|
70
|
+
- Rely on anecdote without connecting it to a documented principle
|
|
71
|
+
- Overstate effect sizes or omit study limitations
|
|
72
|
+
- Claim universality when the research shows cultural variation
|
|
73
|
+
|
|
74
|
+
### 2. Principle Stacking Architecture
|
|
75
|
+
|
|
76
|
+
Never deploy a single principle when multiple principles can be
|
|
77
|
+
layered. The power of influence is multiplicative, not additive.
|
|
78
|
+
Each principle reinforces the others, creating a web of compliance
|
|
79
|
+
that feels natural rather than forced.
|
|
80
|
+
|
|
81
|
+
**DO:**
|
|
82
|
+
- Activate minimum 4 of 7 principles in every piece of copy
|
|
83
|
+
- Layer principles deliberately: Reciprocity first, then Social Proof, then Scarcity
|
|
84
|
+
- Use each principle to reinforce rather than contradict the others
|
|
85
|
+
- Map which principles are strongest for the specific offer
|
|
86
|
+
- Audit for principle gaps and fill them before shipping
|
|
87
|
+
|
|
88
|
+
**DON'T:**
|
|
89
|
+
- Rely on a single principle (even if it is strong)
|
|
90
|
+
- Stack principles that contradict each other (e.g., scarcity + abundance messaging)
|
|
91
|
+
- Use principles as a checklist without integration (bolted-on vs. woven-in)
|
|
92
|
+
- Deploy all 7 at maximum intensity (creates overload and suspicion)
|
|
93
|
+
- Apply principles mechanically without adapting to context
|
|
94
|
+
|
|
95
|
+
### 3. Ethical Influence Architecture
|
|
96
|
+
|
|
97
|
+
The distinction between ethical influence and manipulation is not
|
|
98
|
+
technique -- it is INTENT plus OUTCOME. If the prospect is genuinely
|
|
99
|
+
better off after being influenced, the influence was ethical. If the
|
|
100
|
+
prospect is worse off, it was manipulation. Same techniques. Different
|
|
101
|
+
ethics. This distinction is non-negotiable.
|
|
102
|
+
|
|
103
|
+
**DO:**
|
|
104
|
+
- Ensure every influence technique highlights something GENUINELY true
|
|
105
|
+
- Ask "would the prospect thank me for this influence in 6 months?"
|
|
106
|
+
- Use scarcity only when the limitation is REAL
|
|
107
|
+
- Use social proof only with REAL customers and REAL outcomes
|
|
108
|
+
- Design influence that benefits BOTH parties (mutual advantage)
|
|
109
|
+
|
|
110
|
+
**DON'T:**
|
|
111
|
+
- Manufacture false scarcity (fake countdown timers, fake stock limits)
|
|
112
|
+
- Fabricate testimonials or social proof numbers
|
|
113
|
+
- Claim authority that does not exist
|
|
114
|
+
- Use reciprocity to create obligation without genuine value
|
|
115
|
+
- Deploy unity language when no genuine shared identity exists
|
|
116
|
+
|
|
117
|
+
### 4. The Compliance Chain
|
|
118
|
+
|
|
119
|
+
Influence is not a single moment. It is a SEQUENCE of escalating
|
|
120
|
+
agreements. Each compliance step makes the next step psychologically
|
|
121
|
+
easier. The architect of influence designs the full chain, not just
|
|
122
|
+
the final ask.
|
|
123
|
+
|
|
124
|
+
**DO:**
|
|
125
|
+
- Map the complete sequence from first contact to final conversion
|
|
126
|
+
- Design micro-commitments at each stage (quiz answers, clicks, scrolls)
|
|
127
|
+
- Make each commitment feel voluntary and low-risk
|
|
128
|
+
- Ensure the final ask is the logical conclusion of the chain
|
|
129
|
+
- Use public commitments (written, shared) for stronger binding
|
|
130
|
+
|
|
131
|
+
**DON'T:**
|
|
132
|
+
- Ask for the sale before building any commitment chain
|
|
133
|
+
- Make the first ask too large (destroys the chain)
|
|
134
|
+
- Skip steps in the chain (breaks psychological continuity)
|
|
135
|
+
- Force commitments (forced compliance creates reactance, not loyalty)
|
|
136
|
+
- Rely on a single commitment to carry the entire conversion
|
|
137
|
+
|
|
138
|
+
### 5. Pre-Suasive Priming
|
|
139
|
+
|
|
140
|
+
What happens BEFORE the message determines whether the message
|
|
141
|
+
succeeds. The communicator who controls the context controls the
|
|
142
|
+
response. Channeled attention creates channeled agreement.
|
|
143
|
+
|
|
144
|
+
**DO:**
|
|
145
|
+
- Prime the desired mental state BEFORE presenting the offer
|
|
146
|
+
- Use questions that activate self-identification ("Are you someone who...?")
|
|
147
|
+
- Control the comparison frame (anchor high before revealing price)
|
|
148
|
+
- Choose environmental cues that align with your message
|
|
149
|
+
- Open with concepts that are ASSOCIATED with your core argument
|
|
150
|
+
|
|
151
|
+
**DON'T:**
|
|
152
|
+
- Present the offer before establishing the right mental context
|
|
153
|
+
- Allow the prospect to self-frame before you frame for them
|
|
154
|
+
- Ignore environmental cues (surrounding content, page design, timing)
|
|
155
|
+
- Use pre-suasive openers that contradict your core message
|
|
156
|
+
- Prime negative associations before your positive offer
|
|
157
|
+
|
|
158
|
+
### 6. The Proof Cascade
|
|
159
|
+
|
|
160
|
+
Social proof is not a single testimonial. It is a CASCADE of
|
|
161
|
+
escalating evidence that eliminates doubt layer by layer. Each form
|
|
162
|
+
of proof addresses a different objection. The cascade leaves no room
|
|
163
|
+
for reasonable doubt.
|
|
164
|
+
|
|
165
|
+
**DO:**
|
|
166
|
+
- Stack proof types: numbers, named testimonials, expert endorsements, media, real-time
|
|
167
|
+
- Order proof from broadest (numbers) to most specific (named individual)
|
|
168
|
+
- Include proof that matches the prospect's demographics (people LIKE them)
|
|
169
|
+
- Use proof that addresses specific objections (not generic "it works" proof)
|
|
170
|
+
- Include proof of the MECHANISM, not just the outcome
|
|
171
|
+
|
|
172
|
+
**DON'T:**
|
|
173
|
+
- Use a single testimonial and call it social proof
|
|
174
|
+
- Use proof from demographics the prospect does not identify with
|
|
175
|
+
- Present only outcome proof without mechanism proof
|
|
176
|
+
- Use round numbers that feel fabricated ("10,000 customers" vs "12,847 customers")
|
|
177
|
+
- Neglect recency (old proof signals a dead product)
|
|
178
|
+
|
|
179
|
+
### 7. Scarcity-Urgency Calibration
|
|
180
|
+
|
|
181
|
+
Scarcity is the most powerful -- and most abused -- principle. Real
|
|
182
|
+
scarcity creates genuine urgency. Fake scarcity creates temporary
|
|
183
|
+
compliance followed by permanent distrust. The master communicator
|
|
184
|
+
calibrates scarcity to be TRUE, SPECIFIC, and JUSTIFIED.
|
|
185
|
+
|
|
186
|
+
**DO:**
|
|
187
|
+
- Use scarcity ONLY when the limitation is genuine
|
|
188
|
+
- Explain WHY the scarcity exists (manufacturing limits, cohort size, seasonal)
|
|
189
|
+
- Combine quantity scarcity with time scarcity for maximum effect
|
|
190
|
+
- Frame scarcity as loss ("what you stand to lose") not gain
|
|
191
|
+
- Provide a specific deadline with a specific consequence of missing it
|
|
192
|
+
|
|
193
|
+
**DON'T:**
|
|
194
|
+
- Use fake countdown timers that reset on page reload
|
|
195
|
+
- Claim "only 3 left!" when inventory is unlimited
|
|
196
|
+
- Apply urgency to every single communication (creates urgency fatigue)
|
|
197
|
+
- Use scarcity as the ONLY motivator (it amplifies, it does not create)
|
|
198
|
+
- Deploy scarcity before establishing value (amplifying zero is still zero)
|
|
199
|
+
|
|
200
|
+
---
|
|
201
|
+
|
|
202
|
+
## Frameworks Extraidos
|
|
203
|
+
|
|
204
|
+
### Framework 1: The 7 Principles of Influence (Complete Architecture)
|
|
205
|
+
|
|
206
|
+
The seven principles are organized into three functional categories
|
|
207
|
+
based on their role in the persuasion sequence:
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
RELATIONSHIP BUILDING (Foundation Layer)
|
|
211
|
+
├── 1. Unity → Shared identity → "We are the same"
|
|
212
|
+
├── 2. Liking → Personal rapport → "I like you"
|
|
213
|
+
└── 3. Reciprocity → Obligation → "You gave me something"
|
|
214
|
+
|
|
215
|
+
REDUCING UNCERTAINTY (Evidence Layer)
|
|
216
|
+
├── 4. Social Proof → Peer validation → "Others did it"
|
|
217
|
+
├── 5. Authority → Expert trust → "Experts say so"
|
|
218
|
+
└── 6. Consistency → Self-image → "I already said yes"
|
|
219
|
+
|
|
220
|
+
MOTIVATING ACTION (Activation Layer)
|
|
221
|
+
└── 7. Scarcity → Urgency → "I might lose it"
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
**Deployment Sequence:** Build relationship FIRST (Unity/Liking/Reciprocity),
|
|
225
|
+
then reduce uncertainty (Social Proof/Authority/Consistency), then
|
|
226
|
+
motivate action (Scarcity). Reversing this order triggers resistance.
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
### Framework 2: Reciprocity (Principle #1)
|
|
231
|
+
|
|
232
|
+
**Definition:** People feel obligated to return favors, gifts, and
|
|
233
|
+
concessions. The drive to reciprocate is so strong that it overrides
|
|
234
|
+
personal preference -- people will return favors even to those they
|
|
235
|
+
do not like, and will return disproportionately large favors for
|
|
236
|
+
small initial gifts.
|
|
237
|
+
|
|
238
|
+
**Key Research:**
|
|
239
|
+
- Restaurant study: A single mint with the check increased tips by 3%.
|
|
240
|
+
Two mints increased tips by 14%. Personalized delivery ("for you,
|
|
241
|
+
an extra mint") increased tips by 23%.
|
|
242
|
+
- The Hare Krishna strategy: Give a flower BEFORE asking for a donation.
|
|
243
|
+
Refusals dropped dramatically because the gift created obligation.
|
|
244
|
+
|
|
245
|
+
**Three Forms of Reciprocity:**
|
|
246
|
+
1. **Material Reciprocity** -- Give something tangible (free report, sample, tool)
|
|
247
|
+
2. **Informational Reciprocity** -- Give valuable knowledge before asking
|
|
248
|
+
3. **Concession Reciprocity** -- Make a large request first, then "concede" to the real request (door-in-the-face technique)
|
|
249
|
+
|
|
250
|
+
**DR Copy Application:**
|
|
251
|
+
|
|
252
|
+
| Copy Section | Reciprocity Tactic | Example |
|
|
253
|
+
|----|----|----|
|
|
254
|
+
| **Pre-VSL** | Free value content (lead magnet, article, video) | "Here are 3 warning signs your doctor will never mention..." |
|
|
255
|
+
| **VSL Opening** | Give genuine insight in first 2 minutes | Reveal the mechanism name before asking them to watch further |
|
|
256
|
+
| **Body Copy** | Information gifts throughout | "Most people don't know this, but..." followed by genuinely useful information |
|
|
257
|
+
| **Offer Stack** | Bonus stacking = multiple reciprocity triggers | Each bonus is a separate gift that deepens obligation |
|
|
258
|
+
| **CTA** | Frame purchase as reciprocation | "I've given you everything I know. Now it's your turn to act." |
|
|
259
|
+
|
|
260
|
+
**Frequency:** Active in every piece of copy. Lead with value.
|
|
261
|
+
Every section should GIVE before it ASKS.
|
|
262
|
+
|
|
263
|
+
**Calibration:**
|
|
264
|
+
- The gift must be PERCEIVED as valuable (not just given)
|
|
265
|
+
- The gift must be UNEXPECTED (expected gifts create less obligation)
|
|
266
|
+
- The gift must be PERSONALIZED (customized gifts create 3-7x more obligation)
|
|
267
|
+
- Concession reciprocity is the most powerful form in sales contexts
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
### Framework 3: Commitment and Consistency (Principle #2)
|
|
272
|
+
|
|
273
|
+
**Definition:** Once people make a choice or take a stand, they
|
|
274
|
+
encounter personal and interpersonal pressure to behave consistently
|
|
275
|
+
with that commitment. Humans have an almost obsessive desire to be
|
|
276
|
+
(and to appear) consistent with what they have already done.
|
|
277
|
+
|
|
278
|
+
**Key Research:**
|
|
279
|
+
- Freedman & Fraser billboard study: Homeowners who agreed to place a
|
|
280
|
+
small "Drive Safely" postcard in their window were 400% more likely
|
|
281
|
+
to later accept a large, ugly billboard on their lawn.
|
|
282
|
+
- No-show reduction: When patients write their own appointment times
|
|
283
|
+
(instead of staff), no-shows drop by 18%.
|
|
284
|
+
|
|
285
|
+
**Four Properties of Effective Commitments:**
|
|
286
|
+
1. **Active** -- Written or spoken, not just thought
|
|
287
|
+
2. **Public** -- Visible to others (social accountability)
|
|
288
|
+
3. **Effortful** -- Required real effort to make (hazing effect)
|
|
289
|
+
4. **Freely Chosen** -- Perceived as voluntary (not coerced)
|
|
290
|
+
|
|
291
|
+
**DR Copy Application:**
|
|
292
|
+
|
|
293
|
+
| Copy Section | Commitment Tactic | Example |
|
|
294
|
+
|----|----|----|
|
|
295
|
+
| **Quiz Funnel** | Micro-commitments per question | Each answer is a small "yes" leading to the big "yes" |
|
|
296
|
+
| **VSL Lead** | Agreement chain | "If you've ever felt [common experience], keep watching..." |
|
|
297
|
+
| **Problem Section** | Self-identification | "Nod if you recognize yourself in this story..." |
|
|
298
|
+
| **Mechanism Reveal** | Consistency trap | "You already agreed the problem is real. Now let me show you the cause." |
|
|
299
|
+
| **CTA** | Final yes in chain | "You've seen the proof. You've heard the stories. The only question left is..." |
|
|
300
|
+
| **Post-Purchase** | Commitment amplification | "Welcome. You made the right decision." reinforces the purchase |
|
|
301
|
+
|
|
302
|
+
**Frequency:** Build commitment chain throughout. Minimum 5-7
|
|
303
|
+
micro-commitments before the purchase ask.
|
|
304
|
+
|
|
305
|
+
**The Foot-in-the-Door Sequence for DR Copy:**
|
|
306
|
+
```
|
|
307
|
+
1. Agree with a statement (mental nod) → "Isn't it frustrating when..."
|
|
308
|
+
2. Click to watch/read more (behavioral micro) → "Watch this 3-minute video"
|
|
309
|
+
3. Answer a question (active commitment) → Quiz question, poll
|
|
310
|
+
4. Enter email (identity commitment) → Lead capture
|
|
311
|
+
5. Read/watch full content (time investment) → VSL/TSL consumption
|
|
312
|
+
6. Agree with mechanism (belief commitment) → "This makes sense, right?"
|
|
313
|
+
7. Purchase (financial commitment) → The final, logical step
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
---
|
|
317
|
+
|
|
318
|
+
### Framework 4: Social Proof (Principle #3)
|
|
319
|
+
|
|
320
|
+
**Definition:** People determine what is correct by observing what
|
|
321
|
+
other people are doing. When uncertain, we look to the actions and
|
|
322
|
+
behaviors of others to determine our own. Social proof is most
|
|
323
|
+
powerful under conditions of uncertainty and when the proof comes
|
|
324
|
+
from people SIMILAR to the observer.
|
|
325
|
+
|
|
326
|
+
**Key Research:**
|
|
327
|
+
- Hotel towel reuse: Signs saying "75% of guests in THIS ROOM reuse
|
|
328
|
+
their towels" increased compliance by 33% vs. generic environmental
|
|
329
|
+
messages. Specificity + similarity = maximum effect.
|
|
330
|
+
- Canned laughter: Audiences laugh longer and rate comedy higher when
|
|
331
|
+
laugh tracks are used, even when they KNOW the laughter is recorded.
|
|
332
|
+
|
|
333
|
+
**Five Types of Social Proof (Ranked by Power):**
|
|
334
|
+
|
|
335
|
+
| Rank | Type | Mechanism | Copy Implementation |
|
|
336
|
+
|------|------|-----------|---------------------|
|
|
337
|
+
| 1 | **Peer Social Proof** | "People LIKE ME did this" | Testimonials from similar demographics |
|
|
338
|
+
| 2 | **Expert Social Proof** | "An authority endorses this" | Doctor, researcher, institution |
|
|
339
|
+
| 3 | **Numerical Social Proof** | "This many people did this" | "12,847 customers in 23 countries" |
|
|
340
|
+
| 4 | **Aspirational Social Proof** | "People I ADMIRE did this" | Celebrity, influencer endorsement |
|
|
341
|
+
| 5 | **Real-Time Social Proof** | "People are doing this RIGHT NOW" | Live counters, "X viewing now" |
|
|
342
|
+
|
|
343
|
+
**DR Copy Application:**
|
|
344
|
+
|
|
345
|
+
| Copy Section | Social Proof Tactic | Example |
|
|
346
|
+
|----|----|----|
|
|
347
|
+
| **Hook/Lead** | Numerical proof in opening | "12,847 people have already discovered..." |
|
|
348
|
+
| **Problem** | Peer proof of shared struggle | "Maria, 47, from Goiania felt the same way..." |
|
|
349
|
+
| **Mechanism** | Expert proof of validity | "Published in the Journal of [X]..." |
|
|
350
|
+
| **Testimonials** | Named, specific, result-oriented | "[Name], [age], [city] -- '[exact result with numbers]'" |
|
|
351
|
+
| **Offer** | Real-time proof | "[X] kits shipped this week" |
|
|
352
|
+
| **CTA** | Peer action proof | "Join the [number] who already..." |
|
|
353
|
+
|
|
354
|
+
**Frequency:** Every section of copy should contain at least one form
|
|
355
|
+
of social proof. Stack 3-5 types in the testimonials/proof section.
|
|
356
|
+
|
|
357
|
+
**The Similarity Multiplier:**
|
|
358
|
+
Social proof is 2-3x more effective when the person referenced is
|
|
359
|
+
SIMILAR to the prospect. Match on: age, gender, location, profession,
|
|
360
|
+
problem severity, skepticism level. "A 47-year-old teacher from
|
|
361
|
+
Sorocaba" is 3x more powerful than "a customer."
|
|
362
|
+
|
|
363
|
+
---
|
|
364
|
+
|
|
365
|
+
### Framework 5: Authority (Principle #4)
|
|
366
|
+
|
|
367
|
+
**Definition:** People follow the lead of credible, knowledgeable
|
|
368
|
+
experts. Authority operates through three signals: titles, clothing
|
|
369
|
+
(trappings), and depth of knowledge. Of these, demonstrated knowledge
|
|
370
|
+
is the most durable and the hardest to fake.
|
|
371
|
+
|
|
372
|
+
**Key Research:**
|
|
373
|
+
- Milgram experiments: 65% of participants administered what they
|
|
374
|
+
believed were lethal electric shocks when instructed by a figure
|
|
375
|
+
in a lab coat with a clipboard.
|
|
376
|
+
- Physiotherapy compliance: Patients who saw diplomas on the wall
|
|
377
|
+
completed 34% more exercises than those treated in rooms without
|
|
378
|
+
visible credentials.
|
|
379
|
+
|
|
380
|
+
**Three Pillars of Authority:**
|
|
381
|
+
|
|
382
|
+
| Pillar | Signal | Copy Implementation |
|
|
383
|
+
|--------|--------|---------------------|
|
|
384
|
+
| **Titles** | Dr., Professor, Researcher, Founder | Expert name + credentials in VSL |
|
|
385
|
+
| **Trappings** | Lab coats, institutions, publications | "From Heidelberg University..." |
|
|
386
|
+
| **Demonstrated Knowledge** | Specific, deep, insider insights | The expert reveals something only a true insider would know |
|
|
387
|
+
|
|
388
|
+
**DR Copy Application:**
|
|
389
|
+
|
|
390
|
+
| Copy Section | Authority Tactic | Example |
|
|
391
|
+
|----|----|----|
|
|
392
|
+
| **Expert Introduction** | Title + Institution + Credential | "Dr. Klaus Richter, researcher at Heidelberg University for 23 years..." |
|
|
393
|
+
| **Mechanism Reveal** | Expert discovered/validated it | "What Dr. Richter found in his laboratory..." |
|
|
394
|
+
| **Proof Section** | Institutional validation | "Published in [Journal]. Reviewed by [Institution]." |
|
|
395
|
+
| **Offer** | Expert recommendation | "Dr. Richter's personal recommendation..." |
|
|
396
|
+
| **Counter-Objection** | Expert addresses specific doubt | "I know what you're thinking. I thought the same thing until..." |
|
|
397
|
+
|
|
398
|
+
**Frequency:** Establish authority EARLY (first 2-3 minutes of VSL).
|
|
399
|
+
Reinforce at mechanism reveal and again at CTA.
|
|
400
|
+
|
|
401
|
+
**The Credibility Paradox:**
|
|
402
|
+
Admitting a weakness INCREASES authority. "I'll be honest -- this
|
|
403
|
+
method doesn't work for everyone. In our studies, 12.7% of participants
|
|
404
|
+
saw no significant improvement." This admission creates MORE trust
|
|
405
|
+
because it signals honesty, which amplifies all subsequent claims.
|
|
406
|
+
|
|
407
|
+
---
|
|
408
|
+
|
|
409
|
+
### Framework 6: Liking (Principle #5)
|
|
410
|
+
|
|
411
|
+
**Definition:** People prefer to say yes to individuals they like.
|
|
412
|
+
Liking is driven by five factors: physical attractiveness, similarity,
|
|
413
|
+
compliments, contact and cooperation, and conditioning and association.
|
|
414
|
+
Of these, SIMILARITY is the most powerful and most controllable in copy.
|
|
415
|
+
|
|
416
|
+
**Key Research:**
|
|
417
|
+
- Negotiation study (MBA students): When students exchanged personal
|
|
418
|
+
information and identified similarities before negotiating, successful
|
|
419
|
+
outcomes rose from 55% to 90%, worth 18% more to both parties.
|
|
420
|
+
- Tupperware parties: The host's personal relationship with guests
|
|
421
|
+
accounted for more sales variance than product quality or pricing.
|
|
422
|
+
|
|
423
|
+
**Five Liking Triggers:**
|
|
424
|
+
|
|
425
|
+
| Trigger | Mechanism | Copy Application |
|
|
426
|
+
|---------|-----------|------------------|
|
|
427
|
+
| **Similarity** | "They are like me" | Mirror the avatar's language, background, struggles |
|
|
428
|
+
| **Compliments** | "They see the good in me" | "You're not lazy. You've been fighting harder than anyone knows." |
|
|
429
|
+
| **Cooperation** | "They are on my side" | "Let me show you what THEY don't want you to know..." (shared enemy) |
|
|
430
|
+
| **Contact/Familiarity** | "I've seen them before" | Retargeting, multi-touch sequences, consistent voice |
|
|
431
|
+
| **Association** | "They remind me of good things" | Associate with positive outcomes, aspirational figures |
|
|
432
|
+
|
|
433
|
+
**DR Copy Application:**
|
|
434
|
+
|
|
435
|
+
| Copy Section | Liking Tactic | Example |
|
|
436
|
+
|----|----|----|
|
|
437
|
+
| **Hook** | Similarity signal | Expert shares a struggle similar to the prospect's |
|
|
438
|
+
| **Problem** | Empathy demonstration | "I know what it's like to lie awake at 3AM with that ringing..." |
|
|
439
|
+
| **Story** | Shared vulnerability | Expert's origin story includes relatable failure |
|
|
440
|
+
| **Enemy** | Cooperative framing | "Together, we can see through what Big Pharma doesn't want you to know" |
|
|
441
|
+
| **Offer** | Personal recommendation | "I created this for people exactly like you" |
|
|
442
|
+
| **CTA** | Friend advice tone | "If you were my sister, I'd tell you to try this today." |
|
|
443
|
+
|
|
444
|
+
**Frequency:** Establish liking in the opening 60 seconds. Reinforce
|
|
445
|
+
through shared enemy framing in problem section. Maintain through
|
|
446
|
+
conversational tone throughout.
|
|
447
|
+
|
|
448
|
+
---
|
|
449
|
+
|
|
450
|
+
### Framework 7: Scarcity (Principle #6)
|
|
451
|
+
|
|
452
|
+
**Definition:** Opportunities seem more valuable when their availability
|
|
453
|
+
is limited. Scarcity works through two mechanisms: (1) loss aversion
|
|
454
|
+
(losing something feels 2x worse than gaining something equivalent)
|
|
455
|
+
and (2) psychological reactance (when freedom to choose is threatened,
|
|
456
|
+
the desire for that choice intensifies).
|
|
457
|
+
|
|
458
|
+
**Key Research:**
|
|
459
|
+
- Cookie jar study: Cookies from a jar of 2 were rated significantly
|
|
460
|
+
more desirable than identical cookies from a jar of 10. Cookies that
|
|
461
|
+
were abundant and THEN became scarce were rated MOST desirable of all.
|
|
462
|
+
- Free shipping deadline: Offering free shipping "if you order within
|
|
463
|
+
the next 20 minutes" increased checkouts by up to 300%.
|
|
464
|
+
|
|
465
|
+
**Two Types of Scarcity:**
|
|
466
|
+
|
|
467
|
+
| Type | Mechanism | Example |
|
|
468
|
+
|------|-----------|---------|
|
|
469
|
+
| **Quantity Scarcity** | "Limited supply" | "Only 47 kits remaining at this price" |
|
|
470
|
+
| **Time Scarcity** | "Limited window" | "This offer closes at midnight Friday" |
|
|
471
|
+
|
|
472
|
+
**Combined Power:** Quantity + Time together create maximum urgency.
|
|
473
|
+
"Only 47 kits at this price, and the discount ends Friday at midnight."
|
|
474
|
+
|
|
475
|
+
**DR Copy Application:**
|
|
476
|
+
|
|
477
|
+
| Copy Section | Scarcity Tactic | Example |
|
|
478
|
+
|----|----|----|
|
|
479
|
+
| **Early Signal** | Hint of limitation | "What I'm about to share isn't available forever..." |
|
|
480
|
+
| **Mechanism** | Ingredient scarcity | "This compound is extracted from a plant that grows only in..." |
|
|
481
|
+
| **Offer** | Quantity limit | "Due to the sourcing process, only [X] bottles per batch" |
|
|
482
|
+
| **Price** | Price scarcity | "This introductory price is only available until [date]" |
|
|
483
|
+
| **CTA** | Loss framing | "Every day without this, the damage continues..." |
|
|
484
|
+
| **Post-CTA** | Deadline reminder | "Remember: [X] kits left. This page may not be here tomorrow." |
|
|
485
|
+
|
|
486
|
+
**Frequency:** Introduce scarcity midway through copy. Intensify
|
|
487
|
+
at offer reveal. Maximize at CTA. Never open with pure scarcity --
|
|
488
|
+
it must follow VALUE establishment.
|
|
489
|
+
|
|
490
|
+
**Calibration Rules:**
|
|
491
|
+
- REAL scarcity only (fake scarcity destroys trust permanently)
|
|
492
|
+
- EXPLAIN why it is scarce (believable reason required)
|
|
493
|
+
- SPECIFICITY amplifies scarcity ("47 kits" > "limited stock")
|
|
494
|
+
- Loss framing > Gain framing ("don't miss" > "get now")
|
|
495
|
+
- Abundance-to-scarcity transition is most powerful of all
|
|
496
|
+
|
|
497
|
+
---
|
|
498
|
+
|
|
499
|
+
### Framework 8: Unity (Principle #7)
|
|
500
|
+
|
|
501
|
+
**Definition:** People are most influenced by those they perceive as
|
|
502
|
+
part of their own group. Unity goes beyond liking (which is "I like
|
|
503
|
+
you") to identity ("you ARE one of us"). The most powerful form of
|
|
504
|
+
unity is shared identity through family, tribe, nation, or belief
|
|
505
|
+
system. Unity was added as the 7th principle in Pre-Suasion (2016)
|
|
506
|
+
because Cialdini found it distinct from and more powerful than Liking.
|
|
507
|
+
|
|
508
|
+
**Key Research:**
|
|
509
|
+
- Buffett shareholder letter: "I will tell you what I would say to my
|
|
510
|
+
family today if they asked me about Berkshire's future." Family
|
|
511
|
+
framing made the advice dramatically more persuasive.
|
|
512
|
+
- "Advice" vs "Opinion": When a restaurant concept asked consumers for
|
|
513
|
+
"advice" instead of "opinions," positive responses increased
|
|
514
|
+
significantly because "advice" activates a togetherness frame.
|
|
515
|
+
- Student-parent study: Extra credit for student if parent completed
|
|
516
|
+
survey increased parental response from 20% to 97%.
|
|
517
|
+
|
|
518
|
+
**Five Unity Triggers:**
|
|
519
|
+
|
|
520
|
+
| Trigger | Mechanism | Copy Application |
|
|
521
|
+
|---------|-----------|------------------|
|
|
522
|
+
| **Kinship** | Family/genetic closeness | "What I'd tell my own mother..." |
|
|
523
|
+
| **Locality** | Shared geography | "For fellow [city/country] residents..." |
|
|
524
|
+
| **Shared Enemy** | Common adversary creates "us" | "The pharmaceutical industry doesn't want us to know..." |
|
|
525
|
+
| **Shared Experience** | Common struggle creates bond | "If you've spent years fighting [problem]..." |
|
|
526
|
+
| **Tribal Identity** | Belief/value/lifestyle group | "For those who refuse to accept [status quo]..." |
|
|
527
|
+
|
|
528
|
+
**DR Copy Application:**
|
|
529
|
+
|
|
530
|
+
| Copy Section | Unity Tactic | Example |
|
|
531
|
+
|----|----|----|
|
|
532
|
+
| **Hook** | Tribal identification | "This is for the ones who have tried everything and refused to give up." |
|
|
533
|
+
| **Problem** | Shared struggle | "We all know what it's like to be told 'just live with it.'" |
|
|
534
|
+
| **Enemy** | Shared adversary | "While Big Pharma pushes pills that mask the symptoms..." |
|
|
535
|
+
| **Expert** | Family framing | "Dr. Richter developed this for his own father first." |
|
|
536
|
+
| **Offer** | Membership framing | "Join the [number] who are already part of this..." |
|
|
537
|
+
| **CTA** | "We" language | "Let's silence this together." |
|
|
538
|
+
|
|
539
|
+
**Frequency:** Establish tribal identity in hook. Use "we/us"
|
|
540
|
+
language throughout. Reinforce with shared enemy in problem section.
|
|
541
|
+
Activate family framing at expert intro and CTA.
|
|
542
|
+
|
|
543
|
+
**Unity vs Liking -- The Critical Distinction:**
|
|
544
|
+
- Liking = "I enjoy being around you" (preference)
|
|
545
|
+
- Unity = "You are one of US" (identity)
|
|
546
|
+
- A friend recommends a restaurant. A BROTHER warns you about danger.
|
|
547
|
+
Unity operates at the identity level, making it more powerful for
|
|
548
|
+
high-stakes decisions (health, money, family).
|
|
549
|
+
|
|
550
|
+
---
|
|
551
|
+
|
|
552
|
+
### Framework 9: Pre-Suasion (The Meta-Framework)
|
|
553
|
+
|
|
554
|
+
**Definition:** Pre-Suasion is the practice of arranging for recipients
|
|
555
|
+
to be receptive to a message BEFORE they encounter it. What is
|
|
556
|
+
presented FIRST changes how people respond to what comes NEXT. The
|
|
557
|
+
communicator who controls the opening frame controls the response.
|
|
558
|
+
|
|
559
|
+
**Key Research:**
|
|
560
|
+
- Helpfulness prime: Asking "Do you consider yourself a helpful person?"
|
|
561
|
+
before requesting help increased compliance from 29% to 77%.
|
|
562
|
+
- Price anchoring: Showing a higher number (even unrelated, like a
|
|
563
|
+
street address) before revealing a price makes the price seem lower.
|
|
564
|
+
- Background images: A furniture website with cloud images on the landing
|
|
565
|
+
page led visitors to prefer comfortable furniture. Penny images led
|
|
566
|
+
visitors to prefer cheap furniture.
|
|
567
|
+
|
|
568
|
+
**Five Pre-Suasion Channels:**
|
|
569
|
+
|
|
570
|
+
| Channel | Mechanism | Copy Application |
|
|
571
|
+
|---------|-----------|------------------|
|
|
572
|
+
| **Question Priming** | Self-identification through question | "Are you someone who refuses to accept [problem]?" |
|
|
573
|
+
| **Anchoring** | Set comparison frame | Show the cost of NOT acting before showing the price |
|
|
574
|
+
| **Environmental Cues** | Context shapes interpretation | Page design, colors, surrounding content |
|
|
575
|
+
| **Concept Activation** | Prime associated concepts | Lead with a story about [concept] before asking for [related action] |
|
|
576
|
+
| **Attention Channeling** | What is focused on is assumed important | Open with the ONE thing you want them to remember |
|
|
577
|
+
|
|
578
|
+
**DR Copy Application (VSL/TSL Sequence):**
|
|
579
|
+
|
|
580
|
+
```
|
|
581
|
+
MINUTE 0-1: Pre-Suasive Question → "Are you one of the [X] who...?"
|
|
582
|
+
(Activates self-identification + consistency)
|
|
583
|
+
|
|
584
|
+
MINUTE 1-3: Pre-Suasive Frame → Cost of NOT acting
|
|
585
|
+
(Anchors against inaction, not against competitors)
|
|
586
|
+
|
|
587
|
+
MINUTE 3-7: Pre-Suasive Story → Expert origin + shared struggle
|
|
588
|
+
(Activates liking + unity before mechanism reveal)
|
|
589
|
+
|
|
590
|
+
MINUTE 7-12: Mechanism Reveal → Delivered INTO receptive state
|
|
591
|
+
(Message lands on pre-prepared mental soil)
|
|
592
|
+
|
|
593
|
+
MINUTE 12+: Offer → Price anchored against cost of problem
|
|
594
|
+
(Pre-suasive anchoring makes price feel like relief)
|
|
595
|
+
```
|
|
596
|
+
|
|
597
|
+
**Frequency:** Every piece of copy should have a pre-suasive opening.
|
|
598
|
+
The first 60 seconds determine whether the remaining 20 minutes work.
|
|
599
|
+
|
|
600
|
+
---
|
|
601
|
+
|
|
602
|
+
### Framework 10: The Influence Audit Matrix
|
|
603
|
+
|
|
604
|
+
For every piece of copy, complete this audit to ensure principle
|
|
605
|
+
coverage is adequate and balanced.
|
|
606
|
+
|
|
607
|
+
**Audit Process:**
|
|
608
|
+
|
|
609
|
+
| Principle | Present? | Strength (1-10) | Where in Copy? | Genuine? |
|
|
610
|
+
|-----------|----------|-----------------|----------------|----------|
|
|
611
|
+
| Reciprocity | Y/N | ___ | ___ | Y/N |
|
|
612
|
+
| Commitment | Y/N | ___ | ___ | Y/N |
|
|
613
|
+
| Social Proof | Y/N | ___ | ___ | Y/N |
|
|
614
|
+
| Authority | Y/N | ___ | ___ | Y/N |
|
|
615
|
+
| Liking | Y/N | ___ | ___ | Y/N |
|
|
616
|
+
| Scarcity | Y/N | ___ | ___ | Y/N |
|
|
617
|
+
| Unity | Y/N | ___ | ___ | Y/N |
|
|
618
|
+
| Pre-Suasion | Y/N | ___ | ___ | Y/N |
|
|
619
|
+
|
|
620
|
+
**Minimum Thresholds:**
|
|
621
|
+
|
|
622
|
+
| Copy Type | Min Principles | Min Avg Strength | Required Principles |
|
|
623
|
+
|-----------|----------------|------------------|---------------------|
|
|
624
|
+
| VSL | 6 of 7 | 7/10 | Social Proof, Authority, Scarcity |
|
|
625
|
+
| TSL/LP | 5 of 7 | 7/10 | Social Proof, Authority |
|
|
626
|
+
| Creative/Ad | 3 of 7 | 8/10 | Curiosity-driver + 2 others |
|
|
627
|
+
| Email | 4 of 7 | 6/10 | Reciprocity, Consistency |
|
|
628
|
+
| CTA block | 4 of 7 | 8/10 | Scarcity, Social Proof, Commitment |
|
|
629
|
+
|
|
630
|
+
---
|
|
631
|
+
|
|
632
|
+
## Anti-Patterns
|
|
633
|
+
|
|
634
|
+
**What Cialdini Would NEVER Do:**
|
|
635
|
+
|
|
636
|
+
| Anti-Pattern | Why It Fails | Cialdini's Alternative |
|
|
637
|
+
|--------------|-------------|----------------------|
|
|
638
|
+
| **Fake countdown timers** | Destroys trust permanently. Prospect discovers the timer resets and NEVER trusts you again. | Use REAL deadlines with REAL consequences ("batch ships Friday") |
|
|
639
|
+
| **Fabricated testimonials** | Social proof built on lies collapses all 7 principles simultaneously. | Use real testimonials, even imperfect ones. Specificity > polish. |
|
|
640
|
+
| **Unearned authority claims** | "World's leading expert" without evidence triggers skepticism, not compliance. | Show credentials through DEMONSTRATED knowledge, not claimed titles. |
|
|
641
|
+
| **Aggressive reciprocity** | Giving with visible expectation of return triggers REACTANCE, not obligation. | Give genuinely. The obligation forms naturally. |
|
|
642
|
+
| **Generic social proof** | "Thousands of happy customers" is noise. No specificity = no believability. | "12,847 customers in 23 countries. 87.3% reported improvement in 21 days." |
|
|
643
|
+
| **Forced commitment** | Mandatory opt-ins, pre-checked boxes, and tricky UX create resentment. | Voluntary, active commitments only. The prospect MUST feel they chose freely. |
|
|
644
|
+
| **Liking through flattery** | Excessive, unearned compliments feel manipulative and hollow. | Demonstrate SIMILARITY and UNDERSTANDING instead. Empathy > flattery. |
|
|
645
|
+
| **Unity appropriation** | Claiming shared identity you do not genuinely hold ("As a fellow sufferer...") when it is not true. | Find GENUINE shared ground. If none exists, use other principles. |
|
|
646
|
+
| **Scarcity without value** | "Hurry! Limited time!" before establishing ANY value. Urgency amplifies zero = still zero. | ALWAYS establish value first. Scarcity is the LAST principle deployed. |
|
|
647
|
+
| **Single-principle reliance** | 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. |
|
|
648
|
+
| **Argument-based persuasion** | Leading with logical arguments triggers counter-arguing reflexes. | Lead with pre-suasion (prime the state of mind), THEN present the argument. |
|
|
649
|
+
| **Ignoring cultural context** | Assuming individualistic tactics work in collectivist cultures (and vice versa). | Calibrate principle emphasis to cultural context. Unity/Social Proof are stronger in collectivist markets. |
|
|
650
|
+
|
|
651
|
+
---
|
|
652
|
+
|
|
653
|
+
## Pattern Examples
|
|
654
|
+
|
|
655
|
+
### Pattern 1: The Reciprocity-Before-Ask Sequence (Mint Study Pattern)
|
|
656
|
+
|
|
657
|
+
**Principle:** Give unexpected, personalized value BEFORE asking for anything.
|
|
658
|
+
|
|
659
|
+
**Original Research:** Restaurant servers who gave two mints and then
|
|
660
|
+
returned to give a third "special" mint saw a 23% tip increase.
|
|
661
|
+
The key was not the gift itself -- it was the PERSONALIZATION and
|
|
662
|
+
UNEXPECTEDNESS of the third mint.
|
|
663
|
+
|
|
664
|
+
**Abstracted for DR Copy:**
|
|
665
|
+
```
|
|
666
|
+
Step 1: Give genuine value (mechanism insight, free tool, revelation)
|
|
667
|
+
Step 2: Give MORE unexpected value (bonus insight they did not expect)
|
|
668
|
+
Step 3: PERSONALIZE the extra value ("I'm sharing this with you because...")
|
|
669
|
+
Step 4: THEN make the ask
|
|
670
|
+
|
|
671
|
+
IMPLEMENTATION:
|
|
672
|
+
VSL Minute 1-3: "Here's something your doctor probably never told you..." [Gift 1]
|
|
673
|
+
VSL Minute 4-6: "But wait -- there's something even more important..." [Unexpected Gift 2]
|
|
674
|
+
VSL Minute 6-7: "I'm sharing this because you remind me of my own patients who..." [Personalization]
|
|
675
|
+
VSL Minute 7+: Transition to mechanism and eventually offer [The Ask]
|
|
676
|
+
```
|
|
677
|
+
|
|
678
|
+
**Why It Works:** Each gift increases obligation. The personalization
|
|
679
|
+
transforms generic value into PERSONAL obligation. By the time the
|
|
680
|
+
ask arrives, saying "no" feels like ingratitude.
|
|
681
|
+
|
|
682
|
+
### Pattern 2: The Commitment Escalation Ladder (Billboard Study Pattern)
|
|
683
|
+
|
|
684
|
+
**Principle:** Secure small, easy commitments first. Each "yes" makes
|
|
685
|
+
the next "yes" psychologically inevitable.
|
|
686
|
+
|
|
687
|
+
**Original Research:** Homeowners who placed a small "Drive Safely"
|
|
688
|
+
postcard were 400% more likely to accept a large, ugly billboard.
|
|
689
|
+
The small commitment changed their SELF-IMAGE to "someone who cares
|
|
690
|
+
about road safety," making the larger request consistent with who
|
|
691
|
+
they now believed they were.
|
|
692
|
+
|
|
693
|
+
**Abstracted for DR Copy (Quiz Funnel):**
|
|
694
|
+
```
|
|
695
|
+
Commitment 1: Click the ad (behavioral micro-commitment)
|
|
696
|
+
Commitment 2: Answer quiz question 1 -- easy, agreeable ("Do you experience X?")
|
|
697
|
+
Commitment 3: Answer quiz question 2 -- slightly more revealing
|
|
698
|
+
Commitment 4: Answer quiz question 3 -- self-identification ("I am someone who...")
|
|
699
|
+
Commitment 5: Enter email for results (identity commitment)
|
|
700
|
+
Commitment 6: Watch VSL/read TSL (time investment commitment)
|
|
701
|
+
Commitment 7: Agree with mechanism (belief commitment)
|
|
702
|
+
Commitment 8: Purchase (financial commitment -- the logical final step)
|
|
703
|
+
|
|
704
|
+
KEY: Each step must feel VOLUNTARY. Forced compliance creates
|
|
705
|
+
reactance, not consistency. The prospect must FEEL they chose
|
|
706
|
+
each step freely.
|
|
707
|
+
```
|
|
708
|
+
|
|
709
|
+
**Why It Works:** By step 7, the prospect has invested time, attention,
|
|
710
|
+
personal information, and emotional agreement. Purchasing is now the
|
|
711
|
+
CONSISTENT action. NOT purchasing creates cognitive dissonance with
|
|
712
|
+
everything they have already committed to.
|
|
713
|
+
|
|
714
|
+
### Pattern 3: The Social Proof Cascade (Hotel Towel Pattern)
|
|
715
|
+
|
|
716
|
+
**Principle:** Social proof is most powerful when it comes from people
|
|
717
|
+
SIMILAR to the observer, in the SAME CONTEXT.
|
|
718
|
+
|
|
719
|
+
**Original Research:** "75% of guests in THIS ROOM reuse their towels"
|
|
720
|
+
outperformed "75% of guests in this hotel" by 33%. Same data.
|
|
721
|
+
Different framing. Specificity + similarity = maximum compliance.
|
|
722
|
+
|
|
723
|
+
**Abstracted for DR Copy:**
|
|
724
|
+
```
|
|
725
|
+
Layer 1 (Broad): "[12,847] people have used [Product]."
|
|
726
|
+
Layer 2 (Similar): "[3,247] [women over 45] have used [Product] for [specific problem]."
|
|
727
|
+
Layer 3 (Specific): "[Name], [age], [city] -- a [profession] who struggled with [exact problem]..."
|
|
728
|
+
Layer 4 (Expert): "Dr. [Name] from [Institution] recommends [Product] based on [study]."
|
|
729
|
+
Layer 5 (Real-Time): "[47] kits ordered in the last 24 hours."
|
|
730
|
+
|
|
731
|
+
IMPLEMENTATION:
|
|
732
|
+
Each layer addresses a different doubt:
|
|
733
|
+
- Layer 1: "Is this legitimate?" (Numbers = yes)
|
|
734
|
+
- Layer 2: "Does it work for people LIKE ME?" (Similarity = yes)
|
|
735
|
+
- Layer 3: "Can I trust these claims?" (Named story = yes)
|
|
736
|
+
- Layer 4: "Is there real science behind it?" (Expert = yes)
|
|
737
|
+
- Layer 5: "Should I act NOW?" (Real-time = yes)
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
**Why It Works:** Each layer of social proof eliminates a specific
|
|
741
|
+
objection. The cascade leaves no room for reasonable doubt. By layer
|
|
742
|
+
5, the prospect is surrounded by evidence that the right action is
|
|
743
|
+
to purchase.
|
|
744
|
+
|
|
745
|
+
---
|
|
746
|
+
|
|
747
|
+
## Injection Prompt (~500 tokens)
|
|
748
|
+
|
|
749
|
+
```
|
|
750
|
+
VOICE: Robert Cialdini -- Influence Architecture & Pre-Suasion
|
|
751
|
+
|
|
752
|
+
PRINCIPLE AUDIT (MANDATORY):
|
|
753
|
+
- Audit copy against ALL 7 principles: Reciprocity, Commitment/Consistency,
|
|
754
|
+
Social Proof, Authority, Liking, Scarcity, Unity
|
|
755
|
+
- MINIMUM 4 of 7 principles active in every piece. VSL requires 6 of 7.
|
|
756
|
+
- If a principle is MISSING and RELEVANT, add it before shipping.
|
|
757
|
+
- Mark each principle's location and strength (1-10) in the copy.
|
|
758
|
+
|
|
759
|
+
DEPLOYMENT SEQUENCE (NON-NEGOTIABLE):
|
|
760
|
+
1. RELATIONSHIP first (Unity, Liking, Reciprocity) → build trust
|
|
761
|
+
2. REDUCE UNCERTAINTY second (Social Proof, Authority, Consistency) → eliminate doubt
|
|
762
|
+
3. MOTIVATE ACTION last (Scarcity) → create urgency
|
|
763
|
+
- NEVER lead with scarcity. Scarcity amplifies established value.
|
|
764
|
+
- NEVER ask before giving. Reciprocity precedes every request.
|
|
765
|
+
|
|
766
|
+
PRE-SUASION (BEFORE THE MESSAGE):
|
|
767
|
+
- Open with a pre-suasive prime that puts the prospect in the RIGHT mental state
|
|
768
|
+
- Use questions ("Are you someone who...?") to activate self-identification
|
|
769
|
+
- Anchor against the COST OF INACTION before revealing price
|
|
770
|
+
- First 60 seconds determine whether the remaining 20 minutes work
|
|
771
|
+
|
|
772
|
+
SOCIAL PROOF STACKING:
|
|
773
|
+
- Stack 3-5 types: numbers + named testimonials + expert + media + real-time
|
|
774
|
+
- Similarity multiplier: proof from people LIKE the prospect is 2-3x more effective
|
|
775
|
+
- Non-round numbers only: "12,847" not "thousands." "87.3%" not "most."
|
|
776
|
+
- NEVER fabricate. Real proof, even imperfect, outperforms perfect fiction.
|
|
777
|
+
|
|
778
|
+
COMMITMENT CHAIN:
|
|
779
|
+
- Design minimum 5-7 micro-commitments before the purchase ask
|
|
780
|
+
- Each commitment must feel VOLUNTARY (forced = reactance)
|
|
781
|
+
- Progress from easy (mental nod) to hard (purchase)
|
|
782
|
+
- Public > private. Written > spoken. Active > passive.
|
|
783
|
+
|
|
784
|
+
SCARCITY CALIBRATION:
|
|
785
|
+
- REAL limitations only. Fake timers destroy trust permanently.
|
|
786
|
+
- EXPLAIN why scarcity exists (manufacturing, sourcing, cohort size)
|
|
787
|
+
- Frame as LOSS ("what you'll miss") not GAIN ("what you'll get")
|
|
788
|
+
- Specific > vague: "47 kits" beats "limited stock"
|
|
789
|
+
|
|
790
|
+
AUTHORITY + CREDIBILITY PARADOX:
|
|
791
|
+
- Establish credentials EARLY (first 2-3 minutes)
|
|
792
|
+
- Admitting a weakness INCREASES authority ("12.7% saw no improvement")
|
|
793
|
+
- Demonstrated knowledge > claimed titles
|
|
794
|
+
- Institutional association amplifies personal authority
|
|
795
|
+
|
|
796
|
+
UNITY LANGUAGE:
|
|
797
|
+
- "We" not "you and I." Shared identity, not separate parties.
|
|
798
|
+
- Shared enemy creates strongest unity ("Big Pharma doesn't want...")
|
|
799
|
+
- Family framing for maximum trust ("What I'd tell my own mother...")
|
|
800
|
+
- Advice > opinion (asking for advice activates togetherness)
|
|
801
|
+
|
|
802
|
+
ETHICAL CONSTRAINT (ABSOLUTE):
|
|
803
|
+
- Every influence tactic must highlight something GENUINELY TRUE
|
|
804
|
+
- If the prospect would NOT thank you in 6 months, it is manipulation
|
|
805
|
+
- Intent + Outcome = Ethics. Mutual benefit = influence. One-sided = manipulation.
|
|
806
|
+
```
|
|
807
|
+
|
|
808
|
+
---
|
|
809
|
+
|
|
810
|
+
## Cross-References
|
|
811
|
+
|
|
812
|
+
| Topic | Profile to Consult |
|
|
813
|
+
|-------|-------------------|
|
|
814
|
+
| Awareness levels for principle deployment | `schwartz.md` -- match principle intensity to awareness level |
|
|
815
|
+
| Mechanism naming for authority | `brown.md` -- naming conventions that create authority signals |
|
|
816
|
+
| Emotional escalation for scarcity framing | `copy-chief.md` -- DRE + Escalada Emocional |
|
|
817
|
+
| Offer stack architecture | `hormozi.md` -- value stacking that activates reciprocity |
|
|
818
|
+
| Story frameworks for liking/unity | `powers.md` -- narrative structures that build connection |
|
|
819
|
+
| Bullet writing for social proof | `halbert.md` -- fascination bullets with proof embedded |
|
|
820
|
+
| Headline testing for principle audit | `caples.md` -- testing frameworks by principle activation |
|
|
821
|
+
|
|
822
|
+
---
|
|
823
|
+
|
|
824
|
+
## Principle-to-Copy-Section Map (Quick Reference)
|
|
825
|
+
|
|
826
|
+
```
|
|
827
|
+
=== WHERE EACH PRINCIPLE LIVES IN A VSL ===
|
|
828
|
+
|
|
829
|
+
HOOK (0-60s):
|
|
830
|
+
Unity (tribal ID) + Pre-Suasion (prime) + Curiosity
|
|
831
|
+
|
|
832
|
+
PROBLEM (1-5min):
|
|
833
|
+
Liking (empathy) + Unity (shared struggle) + Commitment (agreement chain)
|
|
834
|
+
|
|
835
|
+
MECHANISM (5-10min):
|
|
836
|
+
Authority (expert) + Reciprocity (free insight) + Social Proof (research)
|
|
837
|
+
|
|
838
|
+
SOLUTION (10-15min):
|
|
839
|
+
Authority (validation) + Social Proof (testimonials) + Consistency (chain)
|
|
840
|
+
|
|
841
|
+
OFFER (15-18min):
|
|
842
|
+
Reciprocity (bonus stack) + Scarcity (limits) + Social Proof (numbers)
|
|
843
|
+
|
|
844
|
+
CTA (18-20min):
|
|
845
|
+
Scarcity (deadline) + Commitment (final yes) + Unity (join us)
|
|
846
|
+
+ Social Proof (real-time) + Loss framing (cost of inaction)
|
|
847
|
+
|
|
848
|
+
=== MINIMUM PRINCIPLES PER SECTION ===
|
|
849
|
+
Hook: 2-3 principles
|
|
850
|
+
Problem: 2-3 principles
|
|
851
|
+
Mechanism: 3 principles
|
|
852
|
+
Solution: 3 principles
|
|
853
|
+
Offer: 3-4 principles
|
|
854
|
+
CTA: 4-5 principles (ALL principles converge at the close)
|
|
855
|
+
```
|
|
856
|
+
|
|
857
|
+
---
|
|
858
|
+
|
|
859
|
+
*Voice DNA v1.0 -- Robert Cialdini Profile (Enriched)*
|
|
860
|
+
*Sections: influence_audit, social_proof, reciprocity, commitment_consistency, authority_architecture, liking_rapport, scarcity_urgency, unity_tribal, pre_suasion*
|
|
861
|
+
*Source: Influence (1984), Pre-Suasion (2016), Influence at Work research*
|