@rfxlamia/skillkit 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/README.md +16 -0
- package/agents/creative-copywriter.md +212 -0
- package/agents/dario-amodei.md +135 -0
- package/agents/doc-simplifier.md +63 -0
- package/agents/kotlin-pro.md +433 -0
- package/agents/red-team.md +136 -0
- package/agents/sam-altman.md +121 -0
- package/agents/seo-manager.md +184 -0
- package/bin/skillkit.js +3 -0
- package/package.json +35 -0
- package/skills/adversarial-review/SKILL.md +219 -0
- package/skills/baby-education/SKILL.md +260 -0
- package/skills/baby-education/references/advanced-techniques.md +323 -0
- package/skills/baby-education/references/transformations.md +345 -0
- package/skills/been-there-done-that/SKILL.md +455 -0
- package/skills/been-there-done-that/references/analysis-patterns.md +162 -0
- package/skills/been-there-done-that/references/git-commands.md +132 -0
- package/skills/been-there-done-that/references/tree-insertion-logic.md +145 -0
- package/skills/coolhunter/SKILL.md +270 -0
- package/skills/coolhunter/assets/elicitation-methods.csv +51 -0
- package/skills/coolhunter/knowledge/elicitation-methods.md +312 -0
- package/skills/coolhunter/references/workflow-execution.md +238 -0
- package/skills/coolhunter/workflow-plan-coolhunter.md +232 -0
- package/skills/creative-copywriting/SKILL.md +324 -0
- package/skills/creative-copywriting/databases/README.md +60 -0
- package/skills/creative-copywriting/databases/carousel-structures.csv +16 -0
- package/skills/creative-copywriting/databases/emotional-arcs.csv +11 -0
- package/skills/creative-copywriting/databases/hook-formulas.csv +51 -0
- package/skills/creative-copywriting/databases/power-words.csv +201 -0
- package/skills/creative-copywriting/databases/psychological-triggers.csv +21 -0
- package/skills/creative-copywriting/databases/read-more-patterns.csv +26 -0
- package/skills/creative-copywriting/databases/swipe-triggers.csv +31 -0
- package/skills/creative-copywriting/references/carousel-psychology.md +223 -0
- package/skills/creative-copywriting/references/hook-anatomy.md +169 -0
- package/skills/creative-copywriting/references/power-word-science.md +134 -0
- package/skills/creative-copywriting/references/storytelling-frameworks.md +157 -0
- package/skills/diverse-content-gen/SKILL.md +201 -0
- package/skills/diverse-content-gen/references/advanced-techniques.md +320 -0
- package/skills/diverse-content-gen/references/research-findings.md +379 -0
- package/skills/diverse-content-gen/references/task-workflows.md +241 -0
- package/skills/diverse-content-gen/references/tool-integration.md +419 -0
- package/skills/diverse-content-gen/references/troubleshooting.md +426 -0
- package/skills/diverse-content-gen/references/vs-core-technique.md +240 -0
- package/skills/framework-critical-thinking/SKILL.md +220 -0
- package/skills/framework-critical-thinking/references/bias_detector.md +375 -0
- package/skills/framework-critical-thinking/references/fallback_handler.md +239 -0
- package/skills/framework-critical-thinking/references/memory_curator.md +161 -0
- package/skills/framework-critical-thinking/references/metacognitive_monitor.md +297 -0
- package/skills/framework-critical-thinking/references/producer_critic_orchestrator.md +333 -0
- package/skills/framework-critical-thinking/references/reasoning_router.md +235 -0
- package/skills/framework-critical-thinking/references/reasoning_validator.md +97 -0
- package/skills/framework-critical-thinking/references/reflection_trigger.md +78 -0
- package/skills/framework-critical-thinking/references/self_verification.md +388 -0
- package/skills/framework-critical-thinking/references/uncertainty_quantifier.md +207 -0
- package/skills/framework-initiative/SKILL.md +231 -0
- package/skills/framework-initiative/references/examples.md +150 -0
- package/skills/framework-initiative/references/impact-analysis.md +157 -0
- package/skills/framework-initiative/references/intent-patterns.md +145 -0
- package/skills/framework-initiative/references/star-framework.md +165 -0
- package/skills/humanize-docs/SKILL.md +203 -0
- package/skills/humanize-docs/references/advanced-techniques.md +13 -0
- package/skills/humanize-docs/references/core-transformations.md +368 -0
- package/skills/humanize-docs/references/detection-patterns.md +400 -0
- package/skills/humanize-docs/references/examples-gallery.md +374 -0
- package/skills/imagine/SKILL.md +190 -0
- package/skills/imagine/references/artstyle-corporate-memphis.md +625 -0
- package/skills/imagine/references/artstyle-crewdson-hyperrealism.md +295 -0
- package/skills/imagine/references/artstyle-iphone-social-media.md +426 -0
- package/skills/imagine/references/artstyle-sciencesaru.md +276 -0
- package/skills/pre-deploy-checklist/README.md +26 -0
- package/skills/pre-deploy-checklist/SKILL.md +153 -0
- package/skills/pre-deploy-checklist/references/checklist-categories.md +174 -0
- package/skills/pre-deploy-checklist/references/domain-prompts.md +216 -0
- package/skills/prompt-engineering/SKILL.md +209 -0
- package/skills/prompt-engineering/references/advanced-combinations.md +444 -0
- package/skills/prompt-engineering/references/chain-of-thought.md +140 -0
- package/skills/prompt-engineering/references/decision_matrix.md +220 -0
- package/skills/prompt-engineering/references/few-shot.md +346 -0
- package/skills/prompt-engineering/references/json-format.md +270 -0
- package/skills/prompt-engineering/references/natural-language.md +420 -0
- package/skills/prompt-engineering/references/pitfalls.md +365 -0
- package/skills/prompt-engineering/references/prompt-chaining.md +498 -0
- package/skills/prompt-engineering/references/react.md +108 -0
- package/skills/prompt-engineering/references/self-consistency.md +322 -0
- package/skills/prompt-engineering/references/tree-of-thoughts.md +386 -0
- package/skills/prompt-engineering/references/xml-format.md +220 -0
- package/skills/prompt-engineering/references/yaml-format.md +488 -0
- package/skills/prompt-engineering/references/zero-shot.md +74 -0
- package/skills/quick-spec/SKILL.md +280 -0
- package/skills/quick-spec/assets/tech-spec-template.md +74 -0
- package/skills/quick-spec/references/step-01-understand.md +189 -0
- package/skills/quick-spec/references/step-02-investigate.md +144 -0
- package/skills/quick-spec/references/step-03-generate.md +128 -0
- package/skills/quick-spec/references/step-04-review.md +173 -0
- package/skills/quick-spec/tests/test_scenarios.md +83 -0
- package/skills/quick-spec/tests/test_skill.py +136 -0
- package/skills/readme-expert/SKILL.md +538 -0
- package/skills/readme-expert/knowledge/INDEX.md +192 -0
- package/skills/readme-expert/knowledge/application/quality-standards.md +470 -0
- package/skills/readme-expert/knowledge/application/script-executor.md +604 -0
- package/skills/readme-expert/knowledge/application/template-library.md +822 -0
- package/skills/readme-expert/knowledge/foundation/codebase-scanner.md +361 -0
- package/skills/readme-expert/knowledge/foundation/validation-checklist.md +481 -0
- package/skills/red-teaming/SKILL.md +321 -0
- package/skills/red-teaming/references/ai-llm-redteam.md +517 -0
- package/skills/red-teaming/references/attack-techniques.md +410 -0
- package/skills/red-teaming/references/cybersecurity-redteam.md +383 -0
- package/skills/red-teaming/references/tools-frameworks.md +446 -0
- package/skills/releasing/.skillkit-mode +1 -0
- package/skills/releasing/SKILL.md +225 -0
- package/skills/releasing/references/version-detection.md +108 -0
- package/skills/screenwriter/SKILL.md +273 -0
- package/skills/screenwriter/references/advanced-techniques.md +216 -0
- package/skills/screenwriter/references/pipeline-integration.md +266 -0
- package/skills/skillkit/.claude-plugin/plugin.json +27 -0
- package/skills/skillkit/CHANGELOG.md +484 -0
- package/skills/skillkit/SKILL.md +511 -0
- package/skills/skillkit/commands/skillkit.md +6 -0
- package/skills/skillkit/commands/validate-plan.md +6 -0
- package/skills/skillkit/commands/verify.md +6 -0
- package/skills/skillkit/knowledge/INDEX.md +352 -0
- package/skills/skillkit/knowledge/application/09-case-studies.md +257 -0
- package/skills/skillkit/knowledge/application/10-technical-architecture.md +324 -0
- package/skills/skillkit/knowledge/application/11-adoption-strategy.md +267 -0
- package/skills/skillkit/knowledge/application/12-testing-and-validation.md +276 -0
- package/skills/skillkit/knowledge/application/13-competitive-landscape.md +198 -0
- package/skills/skillkit/knowledge/foundation/01-why-skills-exist.md +246 -0
- package/skills/skillkit/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
- package/skills/skillkit/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
- package/skills/skillkit/knowledge/foundation/04-hybrid-patterns.md +308 -0
- package/skills/skillkit/knowledge/foundation/05-token-economics.md +275 -0
- package/skills/skillkit/knowledge/foundation/06-platform-constraints.md +237 -0
- package/skills/skillkit/knowledge/foundation/07-security-concerns.md +322 -0
- package/skills/skillkit/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
- package/skills/skillkit/knowledge/plugin-guide.md +614 -0
- package/skills/skillkit/knowledge/tools/14-validation-tools-guide.md +150 -0
- package/skills/skillkit/knowledge/tools/15-cost-tools-guide.md +157 -0
- package/skills/skillkit/knowledge/tools/16-security-tools-guide.md +122 -0
- package/skills/skillkit/knowledge/tools/17-pattern-tools-guide.md +161 -0
- package/skills/skillkit/knowledge/tools/18-decision-helper-guide.md +243 -0
- package/skills/skillkit/knowledge/tools/19-test-generator-guide.md +275 -0
- package/skills/skillkit/knowledge/tools/20-split-skill-guide.md +149 -0
- package/skills/skillkit/knowledge/tools/21-quality-scorer-guide.md +226 -0
- package/skills/skillkit/knowledge/tools/22-migration-helper-guide.md +356 -0
- package/skills/skillkit/knowledge/tools/23-subagent-creation-guide.md +448 -0
- package/skills/skillkit/knowledge/tools/24-behavioral-testing-guide.md +122 -0
- package/skills/skillkit/references/proposal-generation.md +982 -0
- package/skills/skillkit/references/rationalization-catalog.md +75 -0
- package/skills/skillkit/references/research-methodology.md +661 -0
- package/skills/skillkit/references/section-2-full-creation-workflow.md +452 -0
- package/skills/skillkit/references/section-3-validation-workflow-existing-skill.md +63 -0
- package/skills/skillkit/references/section-4-decision-workflow-skills-vs-subagents.md +64 -0
- package/skills/skillkit/references/section-5-migration-workflow-doc-to-skill.md +58 -0
- package/skills/skillkit/references/section-6-subagent-creation-workflow.md +499 -0
- package/skills/skillkit/references/section-7-knowledge-reference-map.md +72 -0
- package/skills/skillkit/scripts/decision_helper.py +799 -0
- package/skills/skillkit/scripts/init_skill.py +400 -0
- package/skills/skillkit/scripts/init_subagent.py +231 -0
- package/skills/skillkit/scripts/migration_helper.py +669 -0
- package/skills/skillkit/scripts/package_skill.py +211 -0
- package/skills/skillkit/scripts/pattern_detector.py +381 -0
- package/skills/skillkit/scripts/pattern_detector_new.py +382 -0
- package/skills/skillkit/scripts/pressure_tester.py +157 -0
- package/skills/skillkit/scripts/quality_scorer.py +999 -0
- package/skills/skillkit/scripts/quick_validate.py +100 -0
- package/skills/skillkit/scripts/security_scanner.py +474 -0
- package/skills/skillkit/scripts/split_skill.py +540 -0
- package/skills/skillkit/scripts/test_generator.py +695 -0
- package/skills/skillkit/scripts/token_estimator.py +493 -0
- package/skills/skillkit/scripts/utils/__init__.py +49 -0
- package/skills/skillkit/scripts/utils/budget_tracker.py +388 -0
- package/skills/skillkit/scripts/utils/output_formatter.py +263 -0
- package/skills/skillkit/scripts/utils/reference_validator.py +401 -0
- package/skills/skillkit/scripts/validate_skill.py +594 -0
- package/skills/skillkit/tests/test_behavioral.py +39 -0
- package/skills/skillkit/tests/test_scenarios.md +83 -0
- package/skills/skillkit/tests/test_skill.py +136 -0
- package/skills/social-media-seo/SKILL.md +278 -0
- package/skills/social-media-seo/databases/caption-styles.csv +31 -0
- package/skills/social-media-seo/databases/engagement-tactics.csv +16 -0
- package/skills/social-media-seo/databases/hashtag-strategies.csv +21 -0
- package/skills/social-media-seo/databases/hook-formulas.csv +26 -0
- package/skills/social-media-seo/databases/keyword-clusters.csv +11 -0
- package/skills/social-media-seo/databases/thread-structures.csv +26 -0
- package/skills/social-media-seo/databases/viral-patterns.csv +21 -0
- package/skills/social-media-seo/references/analytics-guide.md +321 -0
- package/skills/social-media-seo/references/instagram-seo.md +235 -0
- package/skills/social-media-seo/references/threads-seo.md +305 -0
- package/skills/social-media-seo/references/x-twitter-seo.md +337 -0
- package/skills/social-media-seo/scripts/query_database.py +191 -0
- package/skills/storyteller/SKILL.md +241 -0
- package/skills/storyteller/references/transformation-methodology.md +293 -0
- package/skills/storyteller/references/visual-vocabulary.md +177 -0
- package/skills/thread-pro/SKILL.md +162 -0
- package/skills/thread-pro/anti-ai-patterns.md +120 -0
- package/skills/thread-pro/hook-formulas.md +138 -0
- package/skills/thread-pro/references/anti-ai-patterns.md +120 -0
- package/skills/thread-pro/references/hook-formulas.md +138 -0
- package/skills/thread-pro/references/thread-structures.md +240 -0
- package/skills/thread-pro/references/voice-injection.md +130 -0
- package/skills/thread-pro/thread-structures.md +240 -0
- package/skills/thread-pro/voice-injection.md +130 -0
- package/skills/tinkering/SKILL.md +251 -0
- package/skills/tinkering/references/graduation-checklist.md +100 -0
- package/skills/validate-plan/.skillkit-mode +1 -0
- package/skills/validate-plan/SKILL.md +406 -0
- package/skills/validate-plan/references/dry-principles.md +251 -0
- package/skills/validate-plan/references/gap-analysis-guide.md +320 -0
- package/skills/validate-plan/references/tdd-patterns.md +413 -0
- package/skills/validate-plan/references/yagni-checklist.md +330 -0
- package/skills/verify-before-ship/.skillkit-mode +1 -0
- package/skills/verify-before-ship/SKILL.md +116 -0
- package/skills/verify-before-ship/references/anti-rationalization.md +212 -0
- package/skills/verify-before-ship/references/verification-gates.md +305 -0
- package/skills-manifest.json +217 -0
- package/src/banner.js +10 -0
- package/src/cli.js +30 -0
- package/src/install.js +53 -0
- package/src/install.test.js +40 -0
- package/src/picker.js +74 -0
- package/src/picker.test.js +21 -0
- package/src/scope.js +57 -0
- package/src/scope.test.js +19 -0
- package/src/update.js +34 -0
- package/src/update.test.js +24 -0
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
---
|
|
2
|
+
status: COMPLETE
|
|
3
|
+
completionDate: 2025-12-31
|
|
4
|
+
stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Workflow Creation Plan: coolhunter
|
|
8
|
+
|
|
9
|
+
## Initial Project Context
|
|
10
|
+
|
|
11
|
+
- **Module:** stand-alone
|
|
12
|
+
- **Target Location:** /home/v/project/AI-Agile-Creative-Studio/creative-studio/workflow/creative-studio/workflows/coolhunter
|
|
13
|
+
- **Created:** 2025-12-31
|
|
14
|
+
|
|
15
|
+
## Requirements
|
|
16
|
+
|
|
17
|
+
### Purpose and Scope
|
|
18
|
+
|
|
19
|
+
- **Primary user:** V
|
|
20
|
+
- **Primary deliverable:** Always a Markdown “trend report”
|
|
21
|
+
- **Source material:** Transform from `creative-studio/skill/coolhunter/SKILL.md`
|
|
22
|
+
|
|
23
|
+
### Workflow Type
|
|
24
|
+
|
|
25
|
+
- **Type:** Mixed workflow (interactive + action/web research + document output)
|
|
26
|
+
|
|
27
|
+
### Flow / Intents
|
|
28
|
+
|
|
29
|
+
- **Keep existing intents/modes as-is:**
|
|
30
|
+
- `coolhunt [topic]` = full research workflow
|
|
31
|
+
- `news scan [topic]` = quick news gathering (simplified route)
|
|
32
|
+
- `trend analysis` / `analyze this trend` = analysis-only route
|
|
33
|
+
|
|
34
|
+
### Input Requirements
|
|
35
|
+
|
|
36
|
+
- **Required input:** Topic (for `coolhunt` / `news scan`)
|
|
37
|
+
- **Optional input:** User-provided links/snippets (offline-friendly mode)
|
|
38
|
+
- **Browsing:** Supported and expected “most of the time”
|
|
39
|
+
|
|
40
|
+
### Output Specifications
|
|
41
|
+
|
|
42
|
+
- **Output format:** Markdown report (headline, summary, fact-check, behavioral analysis)
|
|
43
|
+
- **Auto-save:** Yes
|
|
44
|
+
- **Save path convention:** `coolhunter-output/report-{datetime}/...` (match existing skill behavior)
|
|
45
|
+
|
|
46
|
+
### Success Criteria
|
|
47
|
+
|
|
48
|
+
- **Sources**
|
|
49
|
+
- Minimum: 2
|
|
50
|
+
- Target: 3–5
|
|
51
|
+
- Excellent: 5+ diverse
|
|
52
|
+
- **Signals extracted**
|
|
53
|
+
- Minimum: 2
|
|
54
|
+
- Target: 3–4
|
|
55
|
+
- Excellent: 5+ distinct
|
|
56
|
+
- **Recency**
|
|
57
|
+
- Minimum: <7 days
|
|
58
|
+
- Target: <48 hours
|
|
59
|
+
- Excellent: <24 hours
|
|
60
|
+
- **Fact-check claims**
|
|
61
|
+
- Minimum: 2
|
|
62
|
+
- Target: 3–5
|
|
63
|
+
- Excellent: All major claims
|
|
64
|
+
- **Behavioral implications**
|
|
65
|
+
- Minimum: 1 category
|
|
66
|
+
- Target: 2 categories
|
|
67
|
+
- Excellent: All 3 categories
|
|
68
|
+
|
|
69
|
+
## Tools Configuration
|
|
70
|
+
|
|
71
|
+
### Core BMAD Tools
|
|
72
|
+
|
|
73
|
+
- **Party-Mode**: included - Integration points: optional multi-persona debate/synthesis for (a) ambiguous signals, (b) controversial topics, (c) conflicting sources, (d) headline + “Coolhunter’s Take” framing
|
|
74
|
+
- **Advanced Elicitation**: included - Integration points: quality-gate pass before finalizing the report (method selection check + claim verification rigor + confidence calibration), plus on-demand deep dives
|
|
75
|
+
- **Brainstorming**: included - Integration points: widening search angles/subtopics, generating hypotheses, and generating “Watch For / Timeline / Opportunity Window” variants from signals
|
|
76
|
+
|
|
77
|
+
### LLM Features
|
|
78
|
+
|
|
79
|
+
- **Web-Browsing**: included - Use cases: default for `coolhunt` and `news scan` with recency targeting (<48h, ideally <24h); fallback supports user-provided links/snippets
|
|
80
|
+
- **File I/O**: included - Operations: create output directory + slugified filename; save report to `coolhunter-output/report-{YYYY-MM-DD-HHmm}/{title-slug}.md`
|
|
81
|
+
- **Sub-Agents**: included - Use cases: parallelize (a) source discovery, (b) per-source signal extraction, (c) claim verification / cross-source consistency checks
|
|
82
|
+
- **Sub-Processes**: included - Use cases: parallel research/extraction pipelines when browsing returns many candidates
|
|
83
|
+
|
|
84
|
+
### Memory Systems
|
|
85
|
+
|
|
86
|
+
- **Sidecar File**: included - Purpose: remember preferences across runs (e.g., time window defaults, source preferences/blocks, quality thresholds, recurring topics/angles)
|
|
87
|
+
|
|
88
|
+
### External Integrations
|
|
89
|
+
|
|
90
|
+
- **No-install integrations included** (excluded install-required items such as git-integration, vector-database, and other install-required MCPs)
|
|
91
|
+
|
|
92
|
+
### Elicitation Method Catalog (Workflow-Local Reference)
|
|
93
|
+
|
|
94
|
+
- **Primary curated catalog:** `creative-studio/skill/coolhunter/assets/elicitation-methods.csv` (50 methods, categories, patterns)
|
|
95
|
+
- **Extended descriptions:** `creative-studio/skill/coolhunter/knowledge/elicitation-methods.md`
|
|
96
|
+
- **Execution reference:** `creative-studio/skill/coolhunter/references/workflow-execution.md` (context scoring + selection matrix + report/fact-check rules)
|
|
97
|
+
|
|
98
|
+
### Installation Requirements
|
|
99
|
+
|
|
100
|
+
- **Tools requiring installation**: none (by selection)
|
|
101
|
+
- **User Installation Preference**: avoid install-required integrations
|
|
102
|
+
|
|
103
|
+
## Plan Review and Approval
|
|
104
|
+
|
|
105
|
+
- **Plan reviewed:** 2025-12-31
|
|
106
|
+
- **User approval:** Approved (continue to design)
|
|
107
|
+
- **Notes:** No changes requested during review
|
|
108
|
+
|
|
109
|
+
## Output Format Design
|
|
110
|
+
|
|
111
|
+
**Format Type**: Structured
|
|
112
|
+
|
|
113
|
+
**Output Requirements**:
|
|
114
|
+
|
|
115
|
+
- Document type: Trend report
|
|
116
|
+
- File format: Markdown (`.md`)
|
|
117
|
+
- Frequency: Per run (one report per run)
|
|
118
|
+
- Save path: `coolhunter-output/report-{YYYY-MM-DD-HHmm}/{title-slug}.md`
|
|
119
|
+
|
|
120
|
+
**Structure Specifications** (required sections, flexible content within each):
|
|
121
|
+
|
|
122
|
+
- `# [COOLHUNTER HEADLINE]` (original interpretation, not copied)
|
|
123
|
+
- Generated metadata block:
|
|
124
|
+
- `Generated: {datetime}`
|
|
125
|
+
- `Topic: {original_request}`
|
|
126
|
+
- `Analysis Method: {selected_method}`
|
|
127
|
+
- `## 📰 News Summary` (cover what happened, why it matters, who’s involved; can include multiple sources)
|
|
128
|
+
- `## ✅ Fact-Check` (claims table with ✅/⚠️/❌, plus confidence level + notes)
|
|
129
|
+
- `## 🔮 Behavioral & Cultural Analysis`
|
|
130
|
+
- `### Consumer Behavior Shifts`
|
|
131
|
+
- `### Cultural Signals`
|
|
132
|
+
- `### Technology Adoption Curve`
|
|
133
|
+
- `### Pre-Mainstream Indicators`
|
|
134
|
+
- `## 🎯 Coolhunter's Take` (forward-looking synthesis + Watch For / Timeline / Opportunity Window)
|
|
135
|
+
- `## 📚 Sources` (full citations + URLs)
|
|
136
|
+
|
|
137
|
+
**Special Considerations**:
|
|
138
|
+
|
|
139
|
+
- Follow success criteria quality gates (sources/signals/recency/fact-check/behavioral categories).
|
|
140
|
+
- When recency <48h is not possible, expand search window up to <7 days and explicitly note the limitation.
|
|
141
|
+
|
|
142
|
+
## Workflow Structure Design
|
|
143
|
+
|
|
144
|
+
### Continuation Support
|
|
145
|
+
|
|
146
|
+
- **Multi-session support:** Yes
|
|
147
|
+
- **Design decision:** Include `step-01b-continue.md` to resume from prior runs using output frontmatter (`stepsCompleted`) + sidecar preferences.
|
|
148
|
+
|
|
149
|
+
### Step Outline (Blueprint)
|
|
150
|
+
|
|
151
|
+
1. **step-01-init** — Initialize session, detect whether resuming, set run context (topic/mode), explain outputs + save path.
|
|
152
|
+
2. **step-01b-continue** (conditional) — Load prior state/output, confirm next step, resume execution.
|
|
153
|
+
3. **step-02-route-intent** — Determine intent: `coolhunt` vs `news scan` vs `trend analysis`; confirm topic/inputs (links/snippets optional) and time-window target.
|
|
154
|
+
4. **step-03-research-and-signal-extract** — Web browse (or offline sources) + evaluate sources + extract per-source signals (support sub-agents/sub-processes).
|
|
155
|
+
5. **step-04-elicitation-method-select-and-apply** — Context scoring → select method(s) from curated catalog → apply pattern(s) → generate insights + implications.
|
|
156
|
+
6. **step-05-report-and-save** — Assemble structured Markdown report, run quality gates (success criteria), slugify headline, save to `coolhunter-output/report-{YYYY-MM-DD-HHmm}/{title-slug}.md`.
|
|
157
|
+
|
|
158
|
+
### Interaction Patterns (Menus / Decision Points)
|
|
159
|
+
|
|
160
|
+
- **Route selection:** Confirm intent + topic, accept optional links/snippets, confirm recency target.
|
|
161
|
+
- **Research controls:** Option to widen search angles/subtopics, accept fewer sources when coverage is limited, or expand recency window up to <7 days with explicit note.
|
|
162
|
+
- **Analysis controls:** Option to accept suggested elicitation method, pick from categories, or invoke party-mode for ambiguous/contested signals.
|
|
163
|
+
- **Pre-save review:** Option to re-run fact-checking, add sources, adjust headline/slug, or proceed to save.
|
|
164
|
+
|
|
165
|
+
### Data Flow / State Tracking
|
|
166
|
+
|
|
167
|
+
- **Tracked in output report frontmatter:** `stepsCompleted`, `topic`, `intent`, `selected_method(s)`, `sources`, `signals`, `claims`, `confidence`, `datetime`, `slug`.
|
|
168
|
+
- **Sidecar preferences (cross-run):** recency defaults, source preferences/blocks, and quality thresholds.
|
|
169
|
+
|
|
170
|
+
### File Structure (Workflow Folder)
|
|
171
|
+
|
|
172
|
+
Target folder: `creative-studio/workflow/creative-studio/workflows/coolhunter/`
|
|
173
|
+
|
|
174
|
+
- `workflow.md`
|
|
175
|
+
- `steps/step-01-init.md`
|
|
176
|
+
- `steps/step-01b-continue.md`
|
|
177
|
+
- `steps/step-02-route-intent.md`
|
|
178
|
+
- `steps/step-03-research-and-signal-extract.md`
|
|
179
|
+
- `steps/step-04-elicitation-method-select-and-apply.md`
|
|
180
|
+
- `steps/step-05-report-and-save.md`
|
|
181
|
+
- `assets/elicitation-methods.csv` (copy from `creative-studio/skill/coolhunter/assets/elicitation-methods.csv` for workflow self-containment)
|
|
182
|
+
|
|
183
|
+
## Build Summary
|
|
184
|
+
|
|
185
|
+
### Generated Files
|
|
186
|
+
|
|
187
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/workflow.md`
|
|
188
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/templates/report-template.md`
|
|
189
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/steps/step-01-init.md`
|
|
190
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/steps/step-01b-continue.md`
|
|
191
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/steps/step-02-route-intent.md`
|
|
192
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/steps/step-03-research-and-signal-extract.md`
|
|
193
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/steps/step-04-elicitation-method-select-and-apply.md`
|
|
194
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/steps/step-05-report-and-save.md`
|
|
195
|
+
- `creative-studio/workflow/creative-studio/workflows/coolhunter/assets/elicitation-methods.csv` (copied from `creative-studio/skill/coolhunter/assets/elicitation-methods.csv`)
|
|
196
|
+
|
|
197
|
+
### Customizations / Notes
|
|
198
|
+
|
|
199
|
+
- Workflow is stand-alone (non-pipeline) and writes reports to `{project-root}/coolhunter-output/report-{YYYY-MM-DD-HHmm}/{title-slug}.md`.
|
|
200
|
+
- Continuation support implemented via `step-01-init.md` detection + `step-01b-continue.md` resume flow.
|
|
201
|
+
- Curated elicitation catalog is workflow-local at `assets/elicitation-methods.csv`.
|
|
202
|
+
|
|
203
|
+
### Next Steps (Validation)
|
|
204
|
+
|
|
205
|
+
- Run a dry execution by starting at `creative-studio/workflow/creative-studio/workflows/coolhunter/workflow.md` and following `step-01-init.md`.
|
|
206
|
+
|
|
207
|
+
## Review Summary
|
|
208
|
+
|
|
209
|
+
### Validation Results
|
|
210
|
+
|
|
211
|
+
- Configuration validation: PASSED
|
|
212
|
+
- Step compliance: PASSED
|
|
213
|
+
- Cross-file consistency: PASSED
|
|
214
|
+
- Requirements verification: PASSED
|
|
215
|
+
|
|
216
|
+
### Completeness Check
|
|
217
|
+
|
|
218
|
+
- All required files present (workflow, steps, template, assets).
|
|
219
|
+
- YAML frontmatter parses cleanly across all generated `.md` files.
|
|
220
|
+
- Step sequencing is consistent (`nextStepFile` references resolve).
|
|
221
|
+
- Step file sizes are within best-practice range (≈3–4KB each).
|
|
222
|
+
|
|
223
|
+
### Issues Found
|
|
224
|
+
|
|
225
|
+
- **Critical Issues:** none
|
|
226
|
+
- **Warnings:** none
|
|
227
|
+
- **Suggestions:** Optional: add a `README.md` in the workflow folder documenting invocation examples (`coolhunt [topic]`, `news scan [topic]`, `trend analysis`) and the output directory convention.
|
|
228
|
+
|
|
229
|
+
### Usage Guidance
|
|
230
|
+
|
|
231
|
+
- Entry point: `creative-studio/workflow/creative-studio/workflows/coolhunter/workflow.md`
|
|
232
|
+
- Reports saved under: `{project-root}/coolhunter-output/report-{YYYY-MM-DD-HHmm}/{title-slug}.md`
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: creative-copywriting
|
|
3
|
+
description: >
|
|
4
|
+
Master persuasive writing for social media with proven hooks, storytelling frameworks, and
|
|
5
|
+
psychological triggers. Includes CSV databases with 150+ hooks, power words, carousel
|
|
6
|
+
structures, and emotional triggers specifically optimized for Instagram swipes and X/Twitter
|
|
7
|
+
"Read more" clicks. Works with creative-copywriter subagent for intelligent content generation.
|
|
8
|
+
category: creative
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Creative Copywriting (2025)
|
|
12
|
+
|
|
13
|
+
Transform words into scroll-stopping, swipe-inducing, click-compelling content using psychology-backed copywriting techniques.
|
|
14
|
+
|
|
15
|
+
## What This Skill Solves
|
|
16
|
+
|
|
17
|
+
**The Attention Economy Problem:**
|
|
18
|
+
- Average attention span: 8 seconds (less than a goldfish)
|
|
19
|
+
- 47% scroll past content without engaging
|
|
20
|
+
- Visual hooks now outperform verbal hooks (2025 shift)
|
|
21
|
+
- Storytelling builds 22x more memorable content than facts alone
|
|
22
|
+
|
|
23
|
+
**This skill provides:**
|
|
24
|
+
1. **Hook formulas** - First 3 seconds that stop the scroll
|
|
25
|
+
2. **Power word databases** - 200+ emotional trigger words by category
|
|
26
|
+
3. **Carousel storytelling** - Structures that maximize swipe-through rate
|
|
27
|
+
4. **Psychological triggers** - Evidence-backed persuasion techniques
|
|
28
|
+
5. **Read more optimization** - X/Twitter-specific expansion triggers
|
|
29
|
+
|
|
30
|
+
## When to Use This Skill
|
|
31
|
+
|
|
32
|
+
**Trigger patterns:**
|
|
33
|
+
- "Write a hook for my Instagram carousel"
|
|
34
|
+
- "Make this caption more engaging"
|
|
35
|
+
- "Create swipe-worthy content"
|
|
36
|
+
- "Power words for [emotion/goal]"
|
|
37
|
+
- "Storytelling framework for [topic]"
|
|
38
|
+
- "Make people click Read more"
|
|
39
|
+
- "Hook variations for A/B testing"
|
|
40
|
+
|
|
41
|
+
**Use with creative-copywriter subagent** for intelligent generation with database queries.
|
|
42
|
+
|
|
43
|
+
## Core Methodology
|
|
44
|
+
|
|
45
|
+
### The Hook-Story-Action Framework
|
|
46
|
+
|
|
47
|
+
Every piece of social content follows this arc:
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
HOOK (0-3 sec) → STORY (3-30 sec) → ACTION (final moment)
|
|
51
|
+
↓ ↓ ↓
|
|
52
|
+
Stop scroll Build emotion Drive behavior
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### 1. Hooks: The First 3 Seconds
|
|
56
|
+
|
|
57
|
+
**Hook Categories (2025 Effectiveness Ranking):**
|
|
58
|
+
|
|
59
|
+
| Type | Description | Best For | Avg Stop Rate |
|
|
60
|
+
|------|-------------|----------|---------------|
|
|
61
|
+
| Visual Hook | Movement, contrast, unexpected visual | Reels, Carousels | 12.3% |
|
|
62
|
+
| Curiosity Gap | Incomplete information, open loop | All platforms | 9.8% |
|
|
63
|
+
| Controversy | Bold opinion, myth-busting | X/Twitter, Threads | 9.2% |
|
|
64
|
+
| Personal Story | "I failed...", vulnerability | Instagram, LinkedIn | 8.7% |
|
|
65
|
+
| Data Shock | Surprising statistic | Educational content | 8.1% |
|
|
66
|
+
| Question Hook | Thought-provoking question | All platforms | 7.4% |
|
|
67
|
+
|
|
68
|
+
**Hook Anatomy:**
|
|
69
|
+
```
|
|
70
|
+
[Emotion Trigger] + [Specificity] + [Open Loop]
|
|
71
|
+
|
|
72
|
+
Example: "I lost 10k followers (emotion) in 7 days (specific) doing this one thing... (open loop)"
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### 2. Power Words: Emotional Triggers
|
|
76
|
+
|
|
77
|
+
Words that bypass logic and hit emotions directly.
|
|
78
|
+
|
|
79
|
+
**Categories:**
|
|
80
|
+
- **Urgency**: Now, Limited, Ending, Today, Before
|
|
81
|
+
- **Exclusivity**: Secret, Insider, Hidden, Rare, Private
|
|
82
|
+
- **Curiosity**: Discover, Reveal, Uncover, Finally, Truth
|
|
83
|
+
- **Fear**: Warning, Mistake, Avoid, Risk, Don't
|
|
84
|
+
- **Desire**: Ultimate, Perfect, Dream, Transform, Unlock
|
|
85
|
+
- **Trust**: Proven, Guaranteed, Authentic, Real, Tested
|
|
86
|
+
- **Anger/Agitation**: Sick of, Fed up, Frustrating, Enough, Stop
|
|
87
|
+
|
|
88
|
+
**Usage Rule:** 1-2 power words per hook (more = manipulation feel)
|
|
89
|
+
|
|
90
|
+
### 3. Carousel Storytelling: Swipe Architecture
|
|
91
|
+
|
|
92
|
+
**The 7-Slide Narrative Arc:**
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
Slide 1: HOOK - Stop the scroll (bold visual + curiosity)
|
|
96
|
+
Slide 2: SETUP - Establish the problem/context
|
|
97
|
+
Slide 3: TENSION - Agitate (why this matters)
|
|
98
|
+
Slide 4: BRIDGE - Hint at solution
|
|
99
|
+
Slide 5: VALUE - Core insight/transformation
|
|
100
|
+
Slide 6: PROOF - Evidence, example, or story
|
|
101
|
+
Slide 7: CTA - Clear next step
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
**Swipe Triggers Between Slides:**
|
|
105
|
+
- End slide mid-sentence: "But here's where it gets..."
|
|
106
|
+
- Visual continuation: Arrow, numbered sequence
|
|
107
|
+
- Pattern interrupt: Change color, introduce character
|
|
108
|
+
- Cliffhanger: "The result surprised everyone..."
|
|
109
|
+
|
|
110
|
+
**Carousel Types by Goal:**
|
|
111
|
+
|
|
112
|
+
| Type | Structure | Swipe Rate | Best For |
|
|
113
|
+
|------|-----------|------------|----------|
|
|
114
|
+
| Educational | Problem → Steps → Result | 65% | Authority building |
|
|
115
|
+
| Story | Setup → Conflict → Resolution | 72% | Connection |
|
|
116
|
+
| List/Ranking | Intro → Items → Summary | 58% | Saves, shares |
|
|
117
|
+
| Transformation | Before → Process → After | 78% | Proof, inspiration |
|
|
118
|
+
| Myth-Busting | Myth → Truth → Evidence | 61% | Engagement, shares |
|
|
119
|
+
|
|
120
|
+
### 4. Read More Triggers (X/Twitter)
|
|
121
|
+
|
|
122
|
+
**First 280 Characters Must:**
|
|
123
|
+
1. Front-load the hook (first 50 chars)
|
|
124
|
+
2. Create incomplete pattern
|
|
125
|
+
3. Promise value continuation
|
|
126
|
+
4. Use strategic line breaks
|
|
127
|
+
|
|
128
|
+
**Expansion Triggers:**
|
|
129
|
+
- Numbers: "7 things I learned..." (brain wants to complete the set)
|
|
130
|
+
- Lists: "Here's what changed: 1." (incomplete list)
|
|
131
|
+
- Story start: "Last week something happened..." (narrative gap)
|
|
132
|
+
- Contradiction: "Everyone says X. They're wrong." (curiosity)
|
|
133
|
+
|
|
134
|
+
### 5. Psychological Principles
|
|
135
|
+
|
|
136
|
+
**Core Triggers (Backed by Research):**
|
|
137
|
+
|
|
138
|
+
| Trigger | Psychology | Usage |
|
|
139
|
+
|---------|------------|-------|
|
|
140
|
+
| Curiosity Gap | Brain needs closure | Open loops, incomplete info |
|
|
141
|
+
| Social Proof | Herd behavior | Numbers, testimonials |
|
|
142
|
+
| Scarcity | Loss aversion | Limited time/quantity |
|
|
143
|
+
| Reciprocity | Give before ask | Free value first |
|
|
144
|
+
| Authority | Expert trust | Credentials, data |
|
|
145
|
+
| FOMO | Fear of missing | Trends, urgency |
|
|
146
|
+
| Specificity | Credibility | Exact numbers, details |
|
|
147
|
+
| Story | Memory formation | Narrative structure |
|
|
148
|
+
|
|
149
|
+
## How to Use The Databases
|
|
150
|
+
|
|
151
|
+
### Available Databases
|
|
152
|
+
|
|
153
|
+
**P0 (Core):**
|
|
154
|
+
- `hook-formulas.csv` - 50+ hooks by type, platform, emotion
|
|
155
|
+
- `power-words.csv` - 200+ words by emotion category
|
|
156
|
+
|
|
157
|
+
**P1 (Advanced):**
|
|
158
|
+
- `carousel-structures.csv` - 15+ storytelling frameworks
|
|
159
|
+
- `swipe-triggers.csv` - 30+ between-slide transitions
|
|
160
|
+
- `psychological-triggers.csv` - 20+ persuasion techniques
|
|
161
|
+
|
|
162
|
+
**P2 (Intelligence):**
|
|
163
|
+
- `read-more-patterns.csv` - 25+ X/Twitter expansion patterns
|
|
164
|
+
- `emotional-arcs.csv` - 10+ complete emotional journeys
|
|
165
|
+
|
|
166
|
+
### Query Pattern
|
|
167
|
+
|
|
168
|
+
**Manual Search:**
|
|
169
|
+
1. Identify goal: Hook? Story? Emotion?
|
|
170
|
+
2. Filter by: platform, emotion_trigger, effectiveness
|
|
171
|
+
3. Select 2-3 patterns
|
|
172
|
+
4. Adapt to your content/voice
|
|
173
|
+
|
|
174
|
+
**With creative-copywriter subagent:**
|
|
175
|
+
```
|
|
176
|
+
User: "Hook for Instagram carousel about productivity"
|
|
177
|
+
→ Subagent queries: platform=instagram, content_type=carousel, topic=productivity
|
|
178
|
+
→ Returns: Top 3 hooks with emotion triggers
|
|
179
|
+
→ Generates: 3 customized variations with reasoning
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
## Quick Start Guide
|
|
183
|
+
|
|
184
|
+
### For Instagram Carousels
|
|
185
|
+
|
|
186
|
+
1. **Slide 1 Hook Formula:**
|
|
187
|
+
```
|
|
188
|
+
[Power Word] + [Specific Outcome] + [Time Frame]
|
|
189
|
+
"The hidden technique that 10x'd my reach in 7 days"
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
2. **Swipe momentum:**
|
|
193
|
+
- Each slide ends with incomplete thought
|
|
194
|
+
- Visual consistency (same template, colors)
|
|
195
|
+
- Text size: readable in 2 seconds
|
|
196
|
+
- Maximum 3 ideas per slide
|
|
197
|
+
|
|
198
|
+
3. **Final slide:**
|
|
199
|
+
- Clear CTA (save, follow, comment)
|
|
200
|
+
- Recap value delivered
|
|
201
|
+
- Easy to screenshot/share
|
|
202
|
+
|
|
203
|
+
### For X/Twitter Threads
|
|
204
|
+
|
|
205
|
+
1. **Tweet 1 formula:**
|
|
206
|
+
```
|
|
207
|
+
[Hook] + [Promise] + [Specificity]
|
|
208
|
+
"I analyzed 1,000 viral tweets. Here's the pattern nobody talks about: 🧵"
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
2. **Thread structure:**
|
|
212
|
+
- Tweet 1: Hook + promise
|
|
213
|
+
- Tweets 2-8: Deliver value (one idea per tweet)
|
|
214
|
+
- Tweet 9: Summary/key takeaway
|
|
215
|
+
- Tweet 10: CTA + retweet request
|
|
216
|
+
|
|
217
|
+
3. **Read more triggers:**
|
|
218
|
+
- Strategic truncation (let algorithm cut at curiosity point)
|
|
219
|
+
- First tweet hooks continuation
|
|
220
|
+
- Numbers create completion drive
|
|
221
|
+
|
|
222
|
+
### For Stories/Reels Scripts
|
|
223
|
+
|
|
224
|
+
1. **First 3 seconds:**
|
|
225
|
+
- Movement > Static
|
|
226
|
+
- Face > No face
|
|
227
|
+
- Text hook + verbal hook
|
|
228
|
+
|
|
229
|
+
2. **Story arc:**
|
|
230
|
+
```
|
|
231
|
+
0-3s: Pattern interrupt (visual hook)
|
|
232
|
+
3-10s: Promise setup
|
|
233
|
+
10-30s: Value delivery
|
|
234
|
+
30-45s: Proof/example
|
|
235
|
+
45-60s: CTA
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
## Integration with creative-copywriter Subagent
|
|
239
|
+
|
|
240
|
+
The **creative-copywriter subagent** provides intelligent orchestration:
|
|
241
|
+
|
|
242
|
+
**Capabilities:**
|
|
243
|
+
1. Multi-database querying (hooks + power words + triggers)
|
|
244
|
+
2. Emotion-based generation (match intent to triggers)
|
|
245
|
+
3. Platform-specific adaptation
|
|
246
|
+
4. A/B variation generation (different emotional angles)
|
|
247
|
+
5. Storytelling framework recommendations
|
|
248
|
+
|
|
249
|
+
**Example workflow:**
|
|
250
|
+
```
|
|
251
|
+
User: "Create carousel about overcoming imposter syndrome"
|
|
252
|
+
|
|
253
|
+
creative-copywriter:
|
|
254
|
+
1. Identifies: emotional topic → story-driven approach
|
|
255
|
+
2. Queries carousel-structures.csv: type=transformation
|
|
256
|
+
3. Queries hook-formulas.csv: emotion=vulnerability
|
|
257
|
+
4. Queries power-words.csv: category=empowerment
|
|
258
|
+
5. Generates: Complete 7-slide narrative with hooks and transitions
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
## Best Practices
|
|
262
|
+
|
|
263
|
+
**Hooks:**
|
|
264
|
+
- ✅ Lead with emotion, follow with logic
|
|
265
|
+
- ✅ Be specific (numbers, time frames)
|
|
266
|
+
- ✅ Create incomplete patterns
|
|
267
|
+
- ❌ Don't clickbait (promise must match delivery)
|
|
268
|
+
- ❌ Don't use more than 2 power words per hook
|
|
269
|
+
|
|
270
|
+
**Storytelling:**
|
|
271
|
+
- ✅ One idea per slide/tweet
|
|
272
|
+
- ✅ End each unit with forward momentum
|
|
273
|
+
- ✅ Include yourself in the story (relatability)
|
|
274
|
+
- ❌ Don't info-dump
|
|
275
|
+
- ❌ Don't break the narrative flow
|
|
276
|
+
|
|
277
|
+
**Power Words:**
|
|
278
|
+
- ✅ Use strategically (scarcity, not abundance)
|
|
279
|
+
- ✅ Match emotion to content intent
|
|
280
|
+
- ✅ Test variations
|
|
281
|
+
- ❌ Don't overuse (manipulation feel)
|
|
282
|
+
- ❌ Don't mismatch emotion (urgency for evergreen content)
|
|
283
|
+
|
|
284
|
+
**Psychology:**
|
|
285
|
+
- ✅ Give value before asking
|
|
286
|
+
- ✅ Be authentic (fake triggers backfire)
|
|
287
|
+
- ✅ Respect audience intelligence
|
|
288
|
+
- ❌ Don't manipulate (ethical persuasion only)
|
|
289
|
+
- ❌ Don't use fear without offering solution
|
|
290
|
+
|
|
291
|
+
## Notes and Limitations
|
|
292
|
+
|
|
293
|
+
**Authenticity First:**
|
|
294
|
+
- These techniques amplify good content, not replace it
|
|
295
|
+
- Manipulation without value = audience erosion
|
|
296
|
+
- Building trust > Short-term engagement
|
|
297
|
+
|
|
298
|
+
**Platform Evolution:**
|
|
299
|
+
- Visual hooks rising (2025 trend)
|
|
300
|
+
- Verbal hooks declining effectiveness
|
|
301
|
+
- Story > Tips format shift
|
|
302
|
+
- Minimalist editing preferred
|
|
303
|
+
|
|
304
|
+
**Cultural Context:**
|
|
305
|
+
- Power words vary by language/culture
|
|
306
|
+
- Test with your specific audience
|
|
307
|
+
- Localize emotion triggers
|
|
308
|
+
|
|
309
|
+
## References
|
|
310
|
+
|
|
311
|
+
**Detailed Guides:**
|
|
312
|
+
- `references/hook-anatomy.md` - Deep dive into hook construction
|
|
313
|
+
- `references/carousel-psychology.md` - Why carousels work
|
|
314
|
+
- `references/power-word-science.md` - Psychology behind trigger words
|
|
315
|
+
- `references/storytelling-frameworks.md` - Complete narrative structures
|
|
316
|
+
|
|
317
|
+
**CSV Databases:**
|
|
318
|
+
- `databases/hook-formulas.csv`
|
|
319
|
+
- `databases/power-words.csv`
|
|
320
|
+
- `databases/carousel-structures.csv`
|
|
321
|
+
- `databases/swipe-triggers.csv`
|
|
322
|
+
- `databases/psychological-triggers.csv`
|
|
323
|
+
- `databases/read-more-patterns.csv`
|
|
324
|
+
- `databases/emotional-arcs.csv`
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Creative Copywriting Databases (CSV)
|
|
2
|
+
|
|
3
|
+
These CSV files are a project-local knowledge base used by the `creative-copywriting` workflow to select hooks, triggers, and structures without relying on web browsing.
|
|
4
|
+
|
|
5
|
+
## Usage Principles
|
|
6
|
+
|
|
7
|
+
- Use these CSVs as **lookup tables** (pick a small number of relevant rows) rather than dumping large lists into the conversation.
|
|
8
|
+
- When a row meaningfully influences an output choice (hook/trigger/structure), prefer citing its `num` and `*_name`/`hook_type` in the workflow output for traceability.
|
|
9
|
+
- Keep the workflow **intent-based**: the CSVs guide selection; they should not force rigid scripts.
|
|
10
|
+
|
|
11
|
+
## Files
|
|
12
|
+
|
|
13
|
+
### `hook-formulas.csv`
|
|
14
|
+
|
|
15
|
+
- **Purpose:** Hook patterns by platform with example formulas and expected engagement (stop rate).
|
|
16
|
+
- **Primary columns:** `num`, `hook_type`, `platform`, `formula`, `example`, `emotion_trigger`, `psychology_principle`, `stop_rate`, `best_for`, `notes`
|
|
17
|
+
- **Used in:** `step-03-strategy.md`, `step-04-variations.md`
|
|
18
|
+
|
|
19
|
+
### `psychological-triggers.csv`
|
|
20
|
+
|
|
21
|
+
- **Purpose:** Trigger registry with ethical-use notes and manipulation warnings.
|
|
22
|
+
- **Primary columns:** `num`, `trigger_name`, `psychology_principle`, `description`, `application`, `example_copy`, `power_level`, `ethical_use`, `manipulation_warning`
|
|
23
|
+
- **Used in:** `step-03-strategy.md`, `step-06-qa.md` (as a checklist/reference)
|
|
24
|
+
|
|
25
|
+
### `power-words.csv`
|
|
26
|
+
|
|
27
|
+
- **Purpose:** Curated “power word” index for emotional framing, with contexts to use/avoid.
|
|
28
|
+
- **Primary columns:** `num`, `word`, `category`, `emotion_trigger`, `intensity`, `best_context`, `avoid_context`, `example_usage`
|
|
29
|
+
- **Used in:** `step-03-strategy.md`, `step-04-variations.md`, `step-05-draft.md`
|
|
30
|
+
- **Note:** This file is the largest CSV in this set; consider splitting by category if it grows.
|
|
31
|
+
|
|
32
|
+
### `swipe-triggers.csv`
|
|
33
|
+
|
|
34
|
+
- **Purpose:** Swipe/click continuation phrases and placement guidance for carousels/threads.
|
|
35
|
+
- **Primary columns:** `num`, `trigger_type`, `trigger_text`, `psychology`, `placement`, `effectiveness`, `example`, `notes`
|
|
36
|
+
- **Used in:** `step-03-strategy.md`, `step-04-variations.md`
|
|
37
|
+
|
|
38
|
+
### `read-more-patterns.csv`
|
|
39
|
+
|
|
40
|
+
- **Purpose:** Read-more truncation patterns for captions/threads to increase expansion.
|
|
41
|
+
- **Primary columns:** `num`, `pattern_name`, `formula`, `truncation_strategy`, `example`, `expansion_rate`, `best_for`, `psychology`, `notes`
|
|
42
|
+
- **Used in:** `step-03-strategy.md`, `step-04-variations.md`
|
|
43
|
+
|
|
44
|
+
### `carousel-structures.csv`
|
|
45
|
+
|
|
46
|
+
- **Purpose:** Carousel structure templates (slide-by-slide) mapped to outcomes and CTA types.
|
|
47
|
+
- **Primary columns:** `num`, `structure_name`, `type`, `slide_count`, `structure_template`, `example_topic`, `swipe_rate`, `best_for`, `hook_style`, `cta_type`, `psychology_principle`
|
|
48
|
+
- **Used in:** `step-03-strategy.md`, `step-04-variations.md`
|
|
49
|
+
|
|
50
|
+
### `emotional-arcs.csv`
|
|
51
|
+
|
|
52
|
+
- **Purpose:** Story/emotion arcs for longer-form threads and narrative carousels.
|
|
53
|
+
- **Primary columns:** `num`, `arc_name`, `structure`, `emotions_sequence`, `duration`, `use_case`, `example_topic`, `engagement_level`, `resolution_type`
|
|
54
|
+
- **Used in:** `step-03-strategy.md`, `step-04-variations.md`
|
|
55
|
+
|
|
56
|
+
## Maintenance
|
|
57
|
+
|
|
58
|
+
- When adding new rows, keep columns consistent and avoid duplicate entries.
|
|
59
|
+
- Prefer concrete, specific entries over generic statements.
|
|
60
|
+
- If you add external sources or statistics, document sources in the corresponding workflow references (Markdown) and keep the CSV as an index/registry.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
num,structure_name,type,slide_count,structure_template,example_topic,swipe_rate,best_for,hook_style,cta_type,psychology_principle
|
|
2
|
+
1,Problem-Solution Arc,educational,7,"S1:Hook problem | S2:Agitate | S3:Introduce solution | S4-5:Steps | S6:Proof | S7:CTA",productivity tips,65%,authority building,data_shock,follow_save,pain-relief
|
|
3
|
+
2,Story Transformation,story,8,"S1:Before state | S2:Problem hit | S3:Rock bottom | S4:Discovery | S5-6:Journey | S7:After state | S8:CTA",personal growth,78%,connection building,personal_failure,share_comment,hero_journey
|
|
4
|
+
3,Myth-Busting,educational,6,"S1:Common myth | S2:Why people believe | S3:The truth | S4-5:Evidence | S6:What to do instead",industry myths,61%,thought leadership,controversy,engage_debate,cognitive_dissonance
|
|
5
|
+
4,Numbered List,listicle,10,"S1:Hook with number | S2-9:One item per slide | S10:Summary + CTA",tips tricks,58%,saves shares,number_list,save_share,completion_drive
|
|
6
|
+
5,Before-After,transformation,5,"S1:Before state | S2:The change | S3:During process | S4:After state | S5:How to replicate",results showcase,72%,proof inspiration,before_after,dm_inquiry,social_proof
|
|
7
|
+
6,Day-in-Life,story,7,"S1:Morning hook | S2-6:Time progression | S7:Evening reflection + CTA",lifestyle content,64%,relatability,story_opener,follow_comment,parasocial_connection
|
|
8
|
+
7,Behind-the-Scenes,transparency,6,"S1:Polished result | S2:Reality reveal | S3-5:Process steps | S6:Final thoughts + CTA",creative process,69%,authenticity,pattern_interrupt,engage_follow,transparency_bias
|
|
9
|
+
8,Comparison,educational,6,"S1:A vs B hook | S2:Factor 1 | S3:Factor 2 | S4:Factor 3 | S5:Verdict | S6:CTA",product comparison,63%,decision support,comparison,comment_opinion,choice_paralysis_relief
|
|
10
|
+
9,Tutorial Steps,educational,8,"S1:End result hook | S2:What you need | S3-6:Step by step | S7:Common mistakes | S8:CTA",how-to content,67%,authority building,direct_benefit,save_try,reciprocity
|
|
11
|
+
10,Controversial Take,thought_leadership,6,"S1:Hot take | S2:Why I believe this | S3-4:Evidence | S5:Nuance | S6:Your turn + CTA",industry opinions,71%,engagement debate,hot_take,comment_debate,controversy_engagement
|
|
12
|
+
11,Failure to Success,story,9,"S1:The failure | S2:What went wrong | S3:Rock bottom | S4:The pivot | S5-7:New approach | S8:Success | S9:Lessons + CTA",comeback story,76%,inspiration trust,mistake_admission,follow_dm,redemption_arc
|
|
13
|
+
12,Prediction,thought_leadership,5,"S1:Bold prediction | S2:Why now | S3-4:Evidence trends | S5:What to do + CTA",future trends,59%,authority,prediction,follow_discuss,authority_bias
|
|
14
|
+
13,Resource Roundup,value,10,"S1:What you'll get | S2-9:One resource each | S10:Save this + CTA",tools resources,62%,saves shares,value_promise,save_share,reciprocity
|
|
15
|
+
14,Quick Wins,educational,5,"S1:Fast results promise | S2-4:Quick tips | S5:Try now + CTA",instant tips,55%,engagement,direct_benefit,try_comment,instant_gratification
|
|
16
|
+
15,Personal Journey,story,8,"S1:Where I am now | S2:Where I started | S3-6:Key moments | S7:Lessons | S8:Your turn + CTA",milestone content,73%,connection,time_travel,follow_share,journey_relatability
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
num,arc_name,structure,emotions_sequence,duration,use_case,example_topic,engagement_level,resolution_type
|
|
2
|
+
1,Hero's Journey,"Setup → Call → Resistance → Mentor → Trials → Transformation → Return","comfort → disruption → fear → hope → struggle → triumph → wisdom",long,transformation stories,business success story,high,triumphant
|
|
3
|
+
2,Rags to Riches,"Low point → Struggle → Discovery → Growth → Success","despair → determination → curiosity → effort → pride",medium,success stories,career growth,high,inspirational
|
|
4
|
+
3,Overcoming Monster,"Peace → Threat → Fear → Battle → Victory","calm → anxiety → fear → courage → relief",medium,problem-solving,defeating algorithm,high,victorious
|
|
5
|
+
4,Rebirth,"Sleep → Wake → Struggle → Transformation → New Life","stagnation → awareness → pain → growth → renewal",long,personal growth,mindset shift,high,transformative
|
|
6
|
+
5,Voyage Return,"Home → Journey → Trials → Wisdom → Return","comfort → curiosity → challenge → insight → contentment",long,learning journeys,mastering a skill,medium,enlightened
|
|
7
|
+
6,Comedy,"Confusion → Complications → Recognition → Resolution","puzzlement → frustration → realization → relief",short,relatable content,common mistakes,medium,satisfying
|
|
8
|
+
7,Tragedy,"Height → Flaw → Fall → Consequence → Lesson","pride → blindness → shock → regret → wisdom",medium,cautionary tales,burnout story,high,educational
|
|
9
|
+
8,Mystery,"Question → Clues → Red Herrings → Revelation → Understanding","curiosity → intrigue → confusion → surprise → clarity",medium,discovery content,algorithm secrets,high,revealing
|
|
10
|
+
9,Underdog,"Dismissed → Challenge → Doubt → Perseverance → Triumph","hurt → determination → fear → grit → pride",medium,comeback stories,small creator success,high,empowering
|
|
11
|
+
10,Confession,"Secret → Burden → Courage → Revelation → Relief","shame → heaviness → bravery → vulnerability → peace",short,authenticity content,admitting mistakes,high,cathartic
|