@rfxlamia/skillkit 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (269) hide show
  1. package/agents/agents/creative-copywriter.md +212 -0
  2. package/agents/agents/dario-amodei.md +135 -0
  3. package/agents/agents/doc-simplifier.md +63 -0
  4. package/agents/agents/kotlin-pro.md +433 -0
  5. package/agents/agents/red-team.md +136 -0
  6. package/agents/agents/sam-altman.md +121 -0
  7. package/agents/agents/seo-manager.md +184 -0
  8. package/package.json +7 -2
  9. package/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
  10. package/skills/skillkit/.claude/settings.local.json +7 -0
  11. package/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
  12. package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
  13. package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
  14. package/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
  15. package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  16. package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
  17. package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
  18. package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
  19. package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
  20. package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
  21. package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
  22. package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
  23. package/skills/skillkit-help/SKILL.md +81 -0
  24. package/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
  25. package/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
  26. package/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
  27. package/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  28. package/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  29. package/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
  30. package/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  31. package/skills/skillkit-help/template/SKILL.md +52 -0
  32. package/skills/skills/adversarial-review/SKILL.md +219 -0
  33. package/skills/skills/baby-education/SKILL.md +260 -0
  34. package/skills/skills/baby-education/references/advanced-techniques.md +323 -0
  35. package/skills/skills/baby-education/references/transformations.md +345 -0
  36. package/skills/skills/been-there-done-that/SKILL.md +455 -0
  37. package/skills/skills/been-there-done-that/references/analysis-patterns.md +162 -0
  38. package/skills/skills/been-there-done-that/references/git-commands.md +132 -0
  39. package/skills/skills/been-there-done-that/references/tree-insertion-logic.md +145 -0
  40. package/skills/skills/coolhunter/SKILL.md +270 -0
  41. package/skills/skills/coolhunter/assets/elicitation-methods.csv +51 -0
  42. package/skills/skills/coolhunter/knowledge/elicitation-methods.md +312 -0
  43. package/skills/skills/coolhunter/references/workflow-execution.md +238 -0
  44. package/skills/skills/coolhunter/workflow-plan-coolhunter.md +232 -0
  45. package/skills/skills/creative-copywriting/SKILL.md +324 -0
  46. package/skills/skills/creative-copywriting/databases/README.md +60 -0
  47. package/skills/skills/creative-copywriting/databases/carousel-structures.csv +16 -0
  48. package/skills/skills/creative-copywriting/databases/emotional-arcs.csv +11 -0
  49. package/skills/skills/creative-copywriting/databases/hook-formulas.csv +51 -0
  50. package/skills/skills/creative-copywriting/databases/power-words.csv +201 -0
  51. package/skills/skills/creative-copywriting/databases/psychological-triggers.csv +21 -0
  52. package/skills/skills/creative-copywriting/databases/read-more-patterns.csv +26 -0
  53. package/skills/skills/creative-copywriting/databases/swipe-triggers.csv +31 -0
  54. package/skills/skills/creative-copywriting/references/carousel-psychology.md +223 -0
  55. package/skills/skills/creative-copywriting/references/hook-anatomy.md +169 -0
  56. package/skills/skills/creative-copywriting/references/power-word-science.md +134 -0
  57. package/skills/skills/creative-copywriting/references/storytelling-frameworks.md +157 -0
  58. package/skills/skills/diverse-content-gen/SKILL.md +201 -0
  59. package/skills/skills/diverse-content-gen/references/advanced-techniques.md +320 -0
  60. package/skills/skills/diverse-content-gen/references/research-findings.md +379 -0
  61. package/skills/skills/diverse-content-gen/references/task-workflows.md +241 -0
  62. package/skills/skills/diverse-content-gen/references/tool-integration.md +419 -0
  63. package/skills/skills/diverse-content-gen/references/troubleshooting.md +426 -0
  64. package/skills/skills/diverse-content-gen/references/vs-core-technique.md +240 -0
  65. package/skills/skills/framework-critical-thinking/SKILL.md +220 -0
  66. package/skills/skills/framework-critical-thinking/references/bias_detector.md +375 -0
  67. package/skills/skills/framework-critical-thinking/references/fallback_handler.md +239 -0
  68. package/skills/skills/framework-critical-thinking/references/memory_curator.md +161 -0
  69. package/skills/skills/framework-critical-thinking/references/metacognitive_monitor.md +297 -0
  70. package/skills/skills/framework-critical-thinking/references/producer_critic_orchestrator.md +333 -0
  71. package/skills/skills/framework-critical-thinking/references/reasoning_router.md +235 -0
  72. package/skills/skills/framework-critical-thinking/references/reasoning_validator.md +97 -0
  73. package/skills/skills/framework-critical-thinking/references/reflection_trigger.md +78 -0
  74. package/skills/skills/framework-critical-thinking/references/self_verification.md +388 -0
  75. package/skills/skills/framework-critical-thinking/references/uncertainty_quantifier.md +207 -0
  76. package/skills/skills/framework-initiative/SKILL.md +231 -0
  77. package/skills/skills/framework-initiative/references/examples.md +150 -0
  78. package/skills/skills/framework-initiative/references/impact-analysis.md +157 -0
  79. package/skills/skills/framework-initiative/references/intent-patterns.md +145 -0
  80. package/skills/skills/framework-initiative/references/star-framework.md +165 -0
  81. package/skills/skills/humanize-docs/SKILL.md +203 -0
  82. package/skills/skills/humanize-docs/references/advanced-techniques.md +13 -0
  83. package/skills/skills/humanize-docs/references/core-transformations.md +368 -0
  84. package/skills/skills/humanize-docs/references/detection-patterns.md +400 -0
  85. package/skills/skills/humanize-docs/references/examples-gallery.md +374 -0
  86. package/skills/skills/imagine/SKILL.md +190 -0
  87. package/skills/skills/imagine/references/artstyle-corporate-memphis.md +625 -0
  88. package/skills/skills/imagine/references/artstyle-crewdson-hyperrealism.md +295 -0
  89. package/skills/skills/imagine/references/artstyle-iphone-social-media.md +426 -0
  90. package/skills/skills/imagine/references/artstyle-sciencesaru.md +276 -0
  91. package/skills/skills/pre-deploy-checklist/README.md +26 -0
  92. package/skills/skills/pre-deploy-checklist/SKILL.md +153 -0
  93. package/skills/skills/pre-deploy-checklist/references/checklist-categories.md +174 -0
  94. package/skills/skills/pre-deploy-checklist/references/domain-prompts.md +216 -0
  95. package/skills/skills/prompt-engineering/SKILL.md +209 -0
  96. package/skills/skills/prompt-engineering/references/advanced-combinations.md +444 -0
  97. package/skills/skills/prompt-engineering/references/chain-of-thought.md +140 -0
  98. package/skills/skills/prompt-engineering/references/decision_matrix.md +220 -0
  99. package/skills/skills/prompt-engineering/references/few-shot.md +346 -0
  100. package/skills/skills/prompt-engineering/references/json-format.md +270 -0
  101. package/skills/skills/prompt-engineering/references/natural-language.md +420 -0
  102. package/skills/skills/prompt-engineering/references/pitfalls.md +365 -0
  103. package/skills/skills/prompt-engineering/references/prompt-chaining.md +498 -0
  104. package/skills/skills/prompt-engineering/references/react.md +108 -0
  105. package/skills/skills/prompt-engineering/references/self-consistency.md +322 -0
  106. package/skills/skills/prompt-engineering/references/tree-of-thoughts.md +386 -0
  107. package/skills/skills/prompt-engineering/references/xml-format.md +220 -0
  108. package/skills/skills/prompt-engineering/references/yaml-format.md +488 -0
  109. package/skills/skills/prompt-engineering/references/zero-shot.md +74 -0
  110. package/skills/skills/quick-spec/SKILL.md +280 -0
  111. package/skills/skills/quick-spec/assets/tech-spec-template.md +74 -0
  112. package/skills/skills/quick-spec/references/step-01-understand.md +189 -0
  113. package/skills/skills/quick-spec/references/step-02-investigate.md +144 -0
  114. package/skills/skills/quick-spec/references/step-03-generate.md +128 -0
  115. package/skills/skills/quick-spec/references/step-04-review.md +173 -0
  116. package/skills/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
  117. package/skills/skills/quick-spec/tests/test_scenarios.md +83 -0
  118. package/skills/skills/quick-spec/tests/test_skill.py +136 -0
  119. package/skills/skills/readme-expert/SKILL.md +538 -0
  120. package/skills/skills/readme-expert/knowledge/INDEX.md +192 -0
  121. package/skills/skills/readme-expert/knowledge/application/quality-standards.md +470 -0
  122. package/skills/skills/readme-expert/knowledge/application/script-executor.md +604 -0
  123. package/skills/skills/readme-expert/knowledge/application/template-library.md +822 -0
  124. package/skills/skills/readme-expert/knowledge/foundation/codebase-scanner.md +361 -0
  125. package/skills/skills/readme-expert/knowledge/foundation/validation-checklist.md +481 -0
  126. package/skills/skills/red-teaming/SKILL.md +321 -0
  127. package/skills/skills/red-teaming/references/ai-llm-redteam.md +517 -0
  128. package/skills/skills/red-teaming/references/attack-techniques.md +410 -0
  129. package/skills/skills/red-teaming/references/cybersecurity-redteam.md +383 -0
  130. package/skills/skills/red-teaming/references/tools-frameworks.md +446 -0
  131. package/skills/skills/releasing/.skillkit-mode +1 -0
  132. package/skills/skills/releasing/SKILL.md +225 -0
  133. package/skills/skills/releasing/references/version-detection.md +108 -0
  134. package/skills/skills/screenwriter/SKILL.md +273 -0
  135. package/skills/skills/screenwriter/references/advanced-techniques.md +216 -0
  136. package/skills/skills/screenwriter/references/pipeline-integration.md +266 -0
  137. package/skills/skills/skillkit/.claude/settings.local.json +7 -0
  138. package/skills/skills/skillkit/.claude-plugin/plugin.json +27 -0
  139. package/skills/skills/skillkit/CHANGELOG.md +484 -0
  140. package/skills/skills/skillkit/SKILL.md +511 -0
  141. package/skills/skills/skillkit/commands/skillkit.md +6 -0
  142. package/skills/skills/skillkit/commands/validate-plan.md +6 -0
  143. package/skills/skills/skillkit/commands/verify.md +6 -0
  144. package/skills/skills/skillkit/knowledge/INDEX.md +352 -0
  145. package/skills/skills/skillkit/knowledge/application/09-case-studies.md +257 -0
  146. package/skills/skills/skillkit/knowledge/application/10-technical-architecture.md +324 -0
  147. package/skills/skills/skillkit/knowledge/application/11-adoption-strategy.md +267 -0
  148. package/skills/skills/skillkit/knowledge/application/12-testing-and-validation.md +276 -0
  149. package/skills/skills/skillkit/knowledge/application/13-competitive-landscape.md +198 -0
  150. package/skills/skills/skillkit/knowledge/foundation/01-why-skills-exist.md +246 -0
  151. package/skills/skills/skillkit/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  152. package/skills/skills/skillkit/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  153. package/skills/skills/skillkit/knowledge/foundation/04-hybrid-patterns.md +308 -0
  154. package/skills/skills/skillkit/knowledge/foundation/05-token-economics.md +275 -0
  155. package/skills/skills/skillkit/knowledge/foundation/06-platform-constraints.md +237 -0
  156. package/skills/skills/skillkit/knowledge/foundation/07-security-concerns.md +322 -0
  157. package/skills/skills/skillkit/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  158. package/skills/skills/skillkit/knowledge/plugin-guide.md +614 -0
  159. package/skills/skills/skillkit/knowledge/tools/14-validation-tools-guide.md +150 -0
  160. package/skills/skills/skillkit/knowledge/tools/15-cost-tools-guide.md +157 -0
  161. package/skills/skills/skillkit/knowledge/tools/16-security-tools-guide.md +122 -0
  162. package/skills/skills/skillkit/knowledge/tools/17-pattern-tools-guide.md +161 -0
  163. package/skills/skills/skillkit/knowledge/tools/18-decision-helper-guide.md +243 -0
  164. package/skills/skills/skillkit/knowledge/tools/19-test-generator-guide.md +275 -0
  165. package/skills/skills/skillkit/knowledge/tools/20-split-skill-guide.md +149 -0
  166. package/skills/skills/skillkit/knowledge/tools/21-quality-scorer-guide.md +226 -0
  167. package/skills/skills/skillkit/knowledge/tools/22-migration-helper-guide.md +356 -0
  168. package/skills/skills/skillkit/knowledge/tools/23-subagent-creation-guide.md +448 -0
  169. package/skills/skills/skillkit/knowledge/tools/24-behavioral-testing-guide.md +122 -0
  170. package/skills/skills/skillkit/references/proposal-generation.md +982 -0
  171. package/skills/skills/skillkit/references/rationalization-catalog.md +75 -0
  172. package/skills/skills/skillkit/references/research-methodology.md +661 -0
  173. package/skills/skills/skillkit/references/section-2-full-creation-workflow.md +452 -0
  174. package/skills/skills/skillkit/references/section-3-validation-workflow-existing-skill.md +63 -0
  175. package/skills/skills/skillkit/references/section-4-decision-workflow-skills-vs-subagents.md +64 -0
  176. package/skills/skills/skillkit/references/section-5-migration-workflow-doc-to-skill.md +58 -0
  177. package/skills/skills/skillkit/references/section-6-subagent-creation-workflow.md +499 -0
  178. package/skills/skills/skillkit/references/section-7-knowledge-reference-map.md +72 -0
  179. package/skills/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
  180. package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
  181. package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
  182. package/skills/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
  183. package/skills/skills/skillkit/scripts/decision_helper.py +799 -0
  184. package/skills/skills/skillkit/scripts/init_skill.py +400 -0
  185. package/skills/skills/skillkit/scripts/init_subagent.py +231 -0
  186. package/skills/skills/skillkit/scripts/migration_helper.py +669 -0
  187. package/skills/skills/skillkit/scripts/package_skill.py +211 -0
  188. package/skills/skills/skillkit/scripts/pattern_detector.py +381 -0
  189. package/skills/skills/skillkit/scripts/pattern_detector_new.py +382 -0
  190. package/skills/skills/skillkit/scripts/pressure_tester.py +157 -0
  191. package/skills/skills/skillkit/scripts/quality_scorer.py +999 -0
  192. package/skills/skills/skillkit/scripts/quick_validate.py +100 -0
  193. package/skills/skills/skillkit/scripts/security_scanner.py +474 -0
  194. package/skills/skills/skillkit/scripts/split_skill.py +540 -0
  195. package/skills/skills/skillkit/scripts/test_generator.py +695 -0
  196. package/skills/skills/skillkit/scripts/token_estimator.py +493 -0
  197. package/skills/skills/skillkit/scripts/utils/__init__.py +49 -0
  198. package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  199. package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
  200. package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
  201. package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
  202. package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
  203. package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
  204. package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
  205. package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
  206. package/skills/skills/skillkit/scripts/utils/budget_tracker.py +388 -0
  207. package/skills/skills/skillkit/scripts/utils/output_formatter.py +263 -0
  208. package/skills/skills/skillkit/scripts/utils/reference_validator.py +401 -0
  209. package/skills/skills/skillkit/scripts/validate_skill.py +594 -0
  210. package/skills/skills/skillkit/tests/test_behavioral.py +39 -0
  211. package/skills/skills/skillkit/tests/test_scenarios.md +83 -0
  212. package/skills/skills/skillkit/tests/test_skill.py +136 -0
  213. package/skills/skills/skillkit-help/SKILL.md +81 -0
  214. package/skills/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
  215. package/skills/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
  216. package/skills/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
  217. package/skills/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  218. package/skills/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  219. package/skills/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
  220. package/skills/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  221. package/skills/skills/skillkit-help/template/SKILL.md +52 -0
  222. package/skills/skills/social-media-seo/SKILL.md +278 -0
  223. package/skills/skills/social-media-seo/databases/caption-styles.csv +31 -0
  224. package/skills/skills/social-media-seo/databases/engagement-tactics.csv +16 -0
  225. package/skills/skills/social-media-seo/databases/hashtag-strategies.csv +21 -0
  226. package/skills/skills/social-media-seo/databases/hook-formulas.csv +26 -0
  227. package/skills/skills/social-media-seo/databases/keyword-clusters.csv +11 -0
  228. package/skills/skills/social-media-seo/databases/thread-structures.csv +26 -0
  229. package/skills/skills/social-media-seo/databases/viral-patterns.csv +21 -0
  230. package/skills/skills/social-media-seo/references/analytics-guide.md +321 -0
  231. package/skills/skills/social-media-seo/references/instagram-seo.md +235 -0
  232. package/skills/skills/social-media-seo/references/threads-seo.md +305 -0
  233. package/skills/skills/social-media-seo/references/x-twitter-seo.md +337 -0
  234. package/skills/skills/social-media-seo/scripts/query_database.py +191 -0
  235. package/skills/skills/storyteller/SKILL.md +241 -0
  236. package/skills/skills/storyteller/references/transformation-methodology.md +293 -0
  237. package/skills/skills/storyteller/references/visual-vocabulary.md +177 -0
  238. package/skills/skills/thread-pro/SKILL.md +162 -0
  239. package/skills/skills/thread-pro/anti-ai-patterns.md +120 -0
  240. package/skills/skills/thread-pro/hook-formulas.md +138 -0
  241. package/skills/skills/thread-pro/references/anti-ai-patterns.md +120 -0
  242. package/skills/skills/thread-pro/references/hook-formulas.md +138 -0
  243. package/skills/skills/thread-pro/references/thread-structures.md +240 -0
  244. package/skills/skills/thread-pro/references/voice-injection.md +130 -0
  245. package/skills/skills/thread-pro/thread-structures.md +240 -0
  246. package/skills/skills/thread-pro/voice-injection.md +130 -0
  247. package/skills/skills/tinkering/SKILL.md +251 -0
  248. package/skills/skills/tinkering/references/graduation-checklist.md +100 -0
  249. package/skills/skills/validate-plan/.skillkit-mode +1 -0
  250. package/skills/skills/validate-plan/SKILL.md +406 -0
  251. package/skills/skills/validate-plan/references/dry-principles.md +251 -0
  252. package/skills/skills/validate-plan/references/gap-analysis-guide.md +320 -0
  253. package/skills/skills/validate-plan/references/tdd-patterns.md +413 -0
  254. package/skills/skills/validate-plan/references/yagni-checklist.md +330 -0
  255. package/skills/skills/verify-before-ship/.skillkit-mode +1 -0
  256. package/skills/skills/verify-before-ship/SKILL.md +116 -0
  257. package/skills/skills/verify-before-ship/references/anti-rationalization.md +212 -0
  258. package/skills/skills/verify-before-ship/references/verification-gates.md +305 -0
  259. package/skills-manifest.json +8 -2
  260. package/src/banner.js +1 -1
  261. package/src/cli.js +15 -4
  262. package/src/install.js +45 -29
  263. package/src/install.test.js +75 -7
  264. package/src/picker.js +15 -4
  265. package/src/picker.test.js +36 -1
  266. package/src/scope.js +8 -39
  267. package/src/scope.test.js +9 -13
  268. package/src/tools.js +76 -0
  269. package/src/tools.test.js +80 -0
@@ -0,0 +1,293 @@
1
+ # Transformation Methodology
2
+
3
+ ## Detailed Step-by-Step Process
4
+
5
+ This document provides the complete methodology for transforming metaphorical/theatrical narrative into concrete visual scenes.
6
+
7
+ ---
8
+
9
+ ## Phase 1: Deconstruction
10
+
11
+ ### 1.1 Read for Emotional Truth
12
+ Read the source material asking: "What does this FEEL like?"
13
+
14
+ **Questions to ask:**
15
+ - What emotion would make someone write this?
16
+ - If I felt this way, what would I actually DO?
17
+ - What is the physical reality behind this poetry?
18
+
19
+ ### 1.2 Identify Metaphor Types
20
+ Categorize the metaphors present:
21
+
22
+ | Type | Example | Extraction Method |
23
+ |------|---------|-------------------|
24
+ | **Identity Metaphor** | "Aku menjadi laut yang membeku" | Identify the element (sea, fire, ice) → look for behavioral parallels |
25
+ | **Relationship Metaphor** | "Kau adalah satu-satunya tuhanku" | Identify power dynamic → translate to visible positioning/behavior |
26
+ | **State Metaphor** | "Seprai yang membeku" | Identify the sensory quality → translate to visual/environmental detail |
27
+ | **Action Metaphor** | "Berpaling dari surga" | Identify the implied action → make it literal or parallel |
28
+
29
+ ### 1.3 Extract Key Emotional Beats
30
+ List the emotional progression in the source:
31
+
32
+ ```
33
+ Beat 1: [Emotion] - "..."
34
+ Beat 2: [Emotion] - "..."
35
+ Beat 3: [Emotion] - "..."
36
+ ```
37
+
38
+ Each beat becomes the basis for one or more scenes.
39
+
40
+ ---
41
+
42
+ ## Phase 2: Visual Translation
43
+
44
+ ### 2.1 The "What Would They Actually Do?" Test
45
+
46
+ For each metaphor, ask: "If someone felt this way, what would I see them doing?"
47
+
48
+ **Example Transformation:**
49
+
50
+ ```
51
+ METAPHOR: "Aku terbangun di atas seprai yang membeku"
52
+
53
+ Literal meaning: Bedsheets are cold
54
+ Emotional meaning: Emptiness, absence of warmth (both physical and emotional)
55
+
56
+ "What would they actually do?"
57
+ - Wake up reaching for empty space beside them
58
+ - Pull sheets tight around themselves
59
+ - Lie still, not wanting to disturb the bed
60
+ - Keep to one side of the bed (the other "belongs" to someone)
61
+
62
+ VISUAL CHOICE: Woman wakes, hand reaches across empty pillow.
63
+ She pulls the sheet to her nose, inhales. It no longer smells like him.
64
+ She curls into fetal position on her side of the bed.
65
+ ```
66
+
67
+ ### 2.2 Object Selection
68
+
69
+ Choose props/objects that carry symbolic weight:
70
+
71
+ **High-Value Visual Objects:**
72
+ - Items belonging to absent person (clothing, watch, book)
73
+ - Shared items (photos, gifts, household objects)
74
+ - Communication devices (phone, letters, messages)
75
+ - Environmental markers (empty chair, untouched plate, unmade side of bed)
76
+
77
+ **Object Placement Rules:**
78
+ - Objects should be shown in USE or RELATION to character
79
+ - First appearance: establish the object
80
+ - Later appearances: show changed relationship to object
81
+ - Final appearance: resolve the object's meaning
82
+
83
+ ### 2.3 Location Selection
84
+
85
+ Choose locations that amplify emotion:
86
+
87
+ | Emotion | Location Types |
88
+ |---------|----------------|
89
+ | Intimacy/Loss | Bedroom, kitchen, shared spaces |
90
+ | Waiting/Longing | Windows, doorways, transit points (stations, airports) |
91
+ | Worship/Devotion | Elevated spaces, light-filled areas, places of ritual |
92
+ | Isolation | Empty rooms, vast landscapes, enclosed spaces |
93
+ | Memory | Places associated with "before" (first date spot, etc.) |
94
+
95
+ ---
96
+
97
+ ## Phase 3: Scene Construction
98
+
99
+ ### 3.1 Scene Purpose Template
100
+
101
+ Each scene needs clear purpose:
102
+
103
+ ```
104
+ SCENE PURPOSE WORKSHEET
105
+ =======================
106
+ Scene Number: [X]
107
+ Primary Emotional Beat: [What audience should feel]
108
+ Source Metaphor/Line: "..."
109
+ Visual Translation: [What happens on screen]
110
+ Scene Function: [Setup / Development / Climax / Resolution]
111
+ Transition From: [Previous emotional state]
112
+ Transition To: [Next emotional state]
113
+ ```
114
+
115
+ ### 3.2 Time Progression Strategy
116
+
117
+ For short films, time management is critical:
118
+
119
+ **Linear Time:**
120
+ - Morning → Night (single day)
121
+ - Best for: Immediate emotional journey
122
+
123
+ **Compressed Time (Montage):**
124
+ - Days/weeks shown through visual markers
125
+ - Best for: Showing waiting, deterioration, obsession building
126
+
127
+ **Parallel Time:**
128
+ - Past and Present intercut
129
+ - Best for: Showing contrast between "before" and "after"
130
+
131
+ **Frozen Moment:**
132
+ - Single moment expanded
133
+ - Best for: Climactic emotional revelation
134
+
135
+ ### 3.3 Building the Scene Sequence
136
+
137
+ Arrange scenes following short film structure:
138
+
139
+ ```
140
+ OPENING (1-2 scenes): Establish situation and emotion
141
+ - Show character in current state
142
+ - Hint at absence/problem
143
+
144
+ DEVELOPMENT (3-5 scenes): Deepen understanding
145
+ - Show repeated behaviors
146
+ - Reveal relationship to absent person/thing
147
+ - Build emotional intensity
148
+
149
+ TURNING POINT (1-2 scenes): Something shifts
150
+ - Decision, realization, or external event
151
+ - Emotional peak
152
+
153
+ RESOLUTION (1-2 scenes): Show change or acceptance
154
+ - Final action that resolves or complicates
155
+ - Emotional landing
156
+ ```
157
+
158
+ ---
159
+
160
+ ## Worked Example
161
+
162
+ ### Source Material (from diverse-content-gen sample)
163
+
164
+ **IDE 4: "LAUT YANG MEMBEKU"**
165
+ ```
166
+ "Kau datang seperti pelaut yang tidak takut dosa maupun badai..."
167
+ "Dan aku menyerahkan diri sebagai laut itu sendiri..."
168
+ "Tapi sekarang kau menghilang. Dan aku—laut yang tadinya hidup—kini membeku."
169
+ ```
170
+
171
+ ### Phase 1: Deconstruction
172
+
173
+ **Emotional Beats:**
174
+ 1. Surrender/devotion ("menyerahkan diri")
175
+ 2. Fullness when together ("menopang kapalmu")
176
+ 3. Frozen emptiness now ("laut yang membeku")
177
+ 4. Desperate hope ("kembalilah")
178
+
179
+ **Metaphor Types:**
180
+ - Identity: "Aku menjadi laut" → Show her relationship with water/sea
181
+ - Relationship: "Pelaut/Laut" → Power dynamic of sea serving sailor
182
+ - State: "Membeku" → Visual coldness, stillness, waiting
183
+
184
+ ### Phase 2: Visual Translation
185
+
186
+ **"What Would They Actually Do?"**
187
+
188
+ For "laut yang membeku" (frozen sea waiting for sailor):
189
+ - Return to the sea/beach repeatedly
190
+ - Stand at water's edge staring at horizon
191
+ - Keep something of his at the water
192
+ - Physical stillness, almost frozen herself
193
+
194
+ **Object Selection:**
195
+ - His jacket (warmth, presence, something she can hold)
196
+ - The horizon (where he disappeared, where she looks)
197
+ - The shoreline (boundary between her world and where he went)
198
+
199
+ **Location Selection:**
200
+ - Beach at dawn (cold, waiting, liminal time)
201
+ - Her room (contrast: warmth vs. cold beach)
202
+
203
+ ### Phase 3: Scene Construction
204
+
205
+ ```
206
+ SCENE 1: THE FROZEN MORNING
207
+ Location: Beach, dawn
208
+ Time: Early morning, cold
209
+ Action: Woman walks to shoreline, wearing oversized jacket (his).
210
+ Stands at water's edge, perfectly still. Stares at horizon.
211
+ Key Visuals: Gray sea, pale dawn light, her breath visible, his jacket
212
+ Emotional Beat: Established waiting, established cold/frozen state
213
+ Story Logic: "Laut yang membeku" = she is frozen at the sea, waiting
214
+
215
+ SCENE 2: THE RITUAL
216
+ Location: Beach, dawn (different day - slightly different light)
217
+ Time: Another morning
218
+ Action: Same woman, same spot. This time she brings a thermos.
219
+ Pours coffee. Leaves a cup at the water's edge.
220
+ The tide takes it.
221
+ Key Visuals: Two cups, one for her, one offered to the sea
222
+ Emotional Beat: Ritual worship, offering to absent beloved
223
+ Story Logic: "Altar pribadi" translated to literal offering ritual
224
+
225
+ SCENE 3: THE COLLECTION
226
+ Location: Her room, evening
227
+ Time: After beach visits
228
+ Action: Camera reveals objects on windowsill: shells, sea glass,
229
+ a piece of driftwood. Each collected from the shore.
230
+ She adds today's find. Looks out window toward unseen sea.
231
+ Key Visuals: Shrine-like arrangement, window facing sea direction
232
+ Emotional Beat: Obsession visualized, devotion continuing at home
233
+ Story Logic: "Menjadikanmu satu-satunya pusat semesta" = altar at home
234
+
235
+ SCENE 4: TIME PASSES
236
+ Location: Beach, various times
237
+ Time: Montage - different weather, light
238
+ Action: Quick cuts: Her at the same spot. Rain. Sun. Fog.
239
+ Always the same position. Always waiting.
240
+ Key Visuals: Same framing, changing conditions, unchanging devotion
241
+ Emotional Beat: Time's passage doesn't change her; she's frozen
242
+ Story Logic: "Menunggu pelaut yang tidak kembali" = time means nothing
243
+
244
+ SCENE 5: THE JACKET
245
+ Location: Beach, dawn
246
+ Time: Morning
247
+ Action: She arrives. Removes the jacket. Folds it carefully.
248
+ Places it on the sand above tide line.
249
+ Steps back. Waits.
250
+ Key Visuals: Jacket alone on sand, her standing further back
251
+ Emotional Beat: Offering more of herself, or letting go?
252
+ Story Logic: "Dengan tulang yang patah pun tidak apa-apa" =
253
+ she'd accept anything, she's releasing claim
254
+
255
+ SCENE 6: RESOLUTION
256
+ Location: Beach, dawn
257
+ Time: Same morning, later
258
+ Action: She looks back once at the jacket.
259
+ Turns. Walks away.
260
+ We hold on the jacket and the sea.
261
+ Key Visuals: Empty jacket, empty frame, only sea and sand
262
+ Emotional Beat: Ambiguous ending - release or defeat?
263
+ Story Logic: "Kembalilah" - invitation left, she cannot wait forever
264
+ but she cannot truly leave either
265
+ ```
266
+
267
+ ### Story Logic Map
268
+
269
+ | Original Metaphor | Emotional Core | Visual Translation | Why It Works |
270
+ |-------------------|----------------|-------------------|--------------|
271
+ | "Laut yang membeku" | Frozen in waiting | Woman stands motionless at shore daily | Stillness shows internal paralysis |
272
+ | "Pelaut yang tidak kembali" | Waiting for return | Looking at horizon where ship would appear | Universal image of waiting for sailors |
273
+ | "Altar pribadi" | Worship/devotion | Shrine arrangement + offering ritual | Religious imagery made literal |
274
+ | "Kembalilah" | Desperate invitation | Leaving jacket as "come back to this" | Physical artifact of hope left behind |
275
+
276
+ ---
277
+
278
+ ## Common Transformation Patterns
279
+
280
+ ### Pattern: Daily Ritual = Devotion
281
+ Use repeated actions in same location to show obsessive devotion
282
+
283
+ ### Pattern: Empty Space = Absence
284
+ Frame shots to emphasize where person SHOULD be but isn't
285
+
286
+ ### Pattern: Object as Proxy = Continued Connection
287
+ Character interacts with object belonging to absent person as if person is present
288
+
289
+ ### Pattern: Weather = Emotional State
290
+ Match environmental conditions to internal state (frozen beach = frozen heart)
291
+
292
+ ### Pattern: Threshold = Decision Point
293
+ Doorways, shorelines, windows = character at point of change
@@ -0,0 +1,177 @@
1
+ # Visual Vocabulary Reference
2
+
3
+ Quick-reference guide for common metaphor→visual translations.
4
+
5
+ ---
6
+
7
+ ## Emotion → Action Mappings
8
+
9
+ ### LONGING / WAITING
10
+
11
+ | Metaphor Pattern | Visual Action |
12
+ |------------------|---------------|
13
+ | "Waiting for return" | Character looks out window/door repeatedly |
14
+ | "Counting the days" | Calendar marked, objects accumulated by time |
15
+ | "Life paused" | Frozen activities (meal untouched, book open, task incomplete) |
16
+ | "Only half alive" | Character in dim lighting, minimal movement |
17
+
18
+ **Props:** Windows, doors, watches/clocks, phones, empty chairs
19
+
20
+ ### GRIEF / LOSS
21
+
22
+ | Metaphor Pattern | Visual Action |
23
+ |------------------|---------------|
24
+ | "Empty without you" | Character in spaces too large for them |
25
+ | "Presence lingers" | Untouched belongings, unused objects |
26
+ | "Cannot move on" | Character unable to change environment |
27
+ | "Ghost of memory" | Character speaks to empty space, sets extra place |
28
+
29
+ **Props:** Photos, clothing, shared items, empty spaces at tables
30
+
31
+ ### DEVOTION / WORSHIP
32
+
33
+ | Metaphor Pattern | Visual Action |
34
+ |------------------|---------------|
35
+ | "You are my god" | Character positions lower, looks up at other |
36
+ | "I worship you" | Ritual behaviors, shrine-like arrangements |
37
+ | "My whole world" | Other person center-framed, character at edges |
38
+ | "I live for you" | Character's space reflects other's preferences |
39
+
40
+ **Props:** Candles, arranged objects, elevated positions, lighting
41
+
42
+ ### OBSESSION
43
+
44
+ | Metaphor Pattern | Visual Action |
45
+ |------------------|---------------|
46
+ | "Cannot stop thinking" | Repetitive actions, checking behaviors |
47
+ | "Consumed by you" | Deteriorating self-care, focus only on other |
48
+ | "You're everywhere" | Multiple images of person, constant reminders |
49
+ | "I collect pieces of you" | Gathering objects, hoarding mementos |
50
+
51
+ **Props:** Collections, repeated images, neglected personal items
52
+
53
+ ### ABANDONMENT / FEAR
54
+
55
+ | Metaphor Pattern | Visual Action |
56
+ |------------------|---------------|
57
+ | "Afraid you'll leave" | Character keeps checking, startles at sounds |
58
+ | "Alone in darkness" | Character in shadows, reaching toward light |
59
+ | "No one to hold me" | Self-comforting gestures, pillow-clutching |
60
+ | "Left behind" | Character in empty spaces, doors closing |
61
+
62
+ **Props:** Lights left on, doors, empty hands, self-embrace
63
+
64
+ ---
65
+
66
+ ## Element Metaphors → Visual Settings
67
+
68
+ ### SEA / WATER
69
+
70
+ | Metaphor | Visual Translation |
71
+ |----------|---------------------|
72
+ | "I am the sea" | Character at shoreline, immersed in water |
73
+ | "Drowning in you" | Character submerged, overwhelmed |
74
+ | "Frozen sea" | Winter beach, ice, stillness at water |
75
+ | "Waiting for ship" | Horizon-gazing, lighthouse imagery |
76
+ | "Storm of emotion" | Turbulent water, wind, rain at coast |
77
+
78
+ **Best locations:** Beach, harbor, pier, lakeside, bathroom (intimate water)
79
+
80
+ ### FIRE / HEAT
81
+
82
+ | Metaphor | Visual Translation |
83
+ |----------|---------------------|
84
+ | "Burning for you" | Character near flames, warm lighting |
85
+ | "Consumed by passion" | Fire imagery, destructive heat |
86
+ | "Warmth of love" | Candlelight, fireplace, warm colors |
87
+ | "Ashes of love" | Cold hearth, burned objects, gray aftermath |
88
+
89
+ **Best locations:** Fireplace, candle-lit rooms, burned spaces
90
+
91
+ ### ICE / COLD
92
+
93
+ | Metaphor | Visual Translation |
94
+ |----------|---------------------|
95
+ | "Heart frozen" | Character in cold environment, breath visible |
96
+ | "Cold without you" | Empty bed, character shivering |
97
+ | "Thaw of feeling" | Ice melting, warm light entering |
98
+ | "Numb" | Character still, unresponsive to environment |
99
+
100
+ **Best locations:** Winter exteriors, cold interiors, empty beds
101
+
102
+ ### EARTH / GROUND
103
+
104
+ | Metaphor | Visual Translation |
105
+ |----------|---------------------|
106
+ | "Grounded in you" | Character rooted, stable when together |
107
+ | "World crumbling" | Unstable surfaces, things falling |
108
+ | "Buried feelings" | Character digging, covering things |
109
+ | "Taking root" | Character staying in place, growing around |
110
+
111
+ **Best locations:** Gardens, graves, foundations, earthy interiors
112
+
113
+ ---
114
+
115
+ ## Time-Based Metaphors
116
+
117
+ | Metaphor | Visual Technique |
118
+ |----------|------------------|
119
+ | "Time stopped" | Frozen frame, clock imagery, unchanged scene |
120
+ | "Days blur together" | Montage of similar actions, overlapping days |
121
+ | "Living in the past" | Flashbacks, sepia tones, old photographs |
122
+ | "Future without you" | Empty spaces, unpopulated futures |
123
+ | "Every second" | Close-ups on clock, counting actions |
124
+
125
+ ---
126
+
127
+ ## Body-Based Metaphors
128
+
129
+ | Metaphor | Visual Action |
130
+ |----------|---------------|
131
+ | "Cannot breathe" | Character gasping, hand to chest |
132
+ | "Heart breaking" | Hand over heart, physical pain response |
133
+ | "Tears I hide" | Wiping eyes quickly, turned away |
134
+ | "Heavy burden" | Slouched posture, weighted movement |
135
+ | "Cannot stand" | Sitting, leaning, collapsing |
136
+ | "Reaching for you" | Outstretched hand to empty space |
137
+
138
+ ---
139
+
140
+ ## Spatial Metaphors
141
+
142
+ | Metaphor | Visual Framing |
143
+ |----------|----------------|
144
+ | "Distance between us" | Wide shot, characters at frame edges |
145
+ | "You fill my world" | Close-up of other person, cramped framing |
146
+ | "Empty space" | Character small in large frame |
147
+ | "Trapped" | Tight framing, enclosed spaces |
148
+ | "Free" | Open spaces, wide horizons |
149
+ | "Looking down/up at you" | Camera angle reflecting power dynamic |
150
+
151
+ ---
152
+
153
+ ## Quick Translation Checklist
154
+
155
+ When converting metaphor to visual:
156
+
157
+ 1. **What emotion?** (longing, grief, devotion, obsession, fear)
158
+ 2. **What element?** (sea, fire, ice, earth, air)
159
+ 3. **What action?** (waiting, worshipping, searching, preserving)
160
+ 4. **What object?** (belonging, shared item, barrier, connection)
161
+ 5. **What setting?** (where would this emotion be felt most?)
162
+ 6. **What time?** (dawn for hope, night for fear, dusk for endings)
163
+
164
+ ---
165
+
166
+ ## Indonesian-Specific Metaphors
167
+
168
+ Common patterns in Indonesian emotional expression:
169
+
170
+ | Pattern | Visual Approach |
171
+ |---------|-----------------|
172
+ | "Seprai yang membeku" | Empty bed, cold morning light |
173
+ | "Altar pribadi" | Shrine-like arrangement of belongings |
174
+ | "Pelaut dan laut" | Shore waiting, horizon gazing |
175
+ | "Pusat semesta" | Other person center-framed, light source |
176
+ | "Tidak bisa bernapas" | Closed spaces, gasping, window-seeking |
177
+ | "Pulang" | Door-watching, path to home imagery |
@@ -0,0 +1,162 @@
1
+ ---
2
+ name: thread-pro
3
+ description: |
4
+ Transform boring AI writing into viral threads with strong hooks and relatable voice.
5
+ USE WHEN: User asks to write threads, create viral content, transform content into threads,
6
+ or mentions "thread about [topic]". Target platforms: X/Twitter and Threads.
7
+ TRIGGERS: write thread, create thread, thread about, viral thread, make this a thread, thread-pro
8
+ category: creative
9
+ ---
10
+
11
+ # Thread Pro: From Boring AI to Viral Relatability
12
+
13
+ Transform generic AI writing into threads that people actually want to read.
14
+
15
+ ## Core Philosophy
16
+
17
+ **The Problem:** AI writes like a polite robot. Perfect grammar, smooth transitions, zero personality.
18
+
19
+ **The Solution:** Inject humanity through specificity, tension, and imperfect authenticity.
20
+
21
+ ## Transformation Process
22
+
23
+ ### Step 1: Identify the Core Value
24
+
25
+ Before writing, answer:
26
+ - What's the ONE thing readers will take away?
27
+ - Why should they care RIGHT NOW?
28
+ - What would make them screenshot this?
29
+
30
+ ### Step 2: Apply the Hook Formula
31
+
32
+ Choose from these proven hook types (see `references/hook-formulas.md`):
33
+
34
+ | Hook Type | When to Use | Example |
35
+ |-----------|-------------|---------|
36
+ | **Specificity** | Numbers, results | "I gained 12,847 followers in 63 days" |
37
+ | **Bold Claim** | Contrarian take | "Most Twitter advice will kill your growth" |
38
+ | **Curiosity Gap** | Hidden secrets | "The real reason VCs rejected me 47 times" |
39
+ | **Story** | Personal journey | "A year ago I was broke. Today I sold my company" |
40
+ | **Mistake** | Learning from failure | "I lost $50K because of one stupid assumption" |
41
+
42
+ ### Step 3: Kill AI Patterns
43
+
44
+ **NEVER use these (instant AI detection):**
45
+ - "Delve", "dive into", "unpack"
46
+ - "In today's fast-paced world"
47
+ - "It's important to note that"
48
+ - "Moreover", "Furthermore", "Additionally" (at start)
49
+ - "Robust", "leverage", "synergy"
50
+ - "Let's explore", "Let me share"
51
+ - Perfect parallel structure in every list
52
+ - Generic examples ("a local coffee shop")
53
+
54
+ **REPLACE with:**
55
+ - Specific names, dates, places
56
+ - Conversational fragments
57
+ - Occasional grammatical "imperfections"
58
+ - First-person opinions
59
+ - Real numbers (even if messy: "$47.3K" not "$50K")
60
+
61
+ Full list: `references/anti-ai-patterns.md`
62
+
63
+ ### Step 4: Structure the Thread
64
+
65
+ **Tweet 1: Hook** (most important)
66
+ - Pattern interrupt
67
+ - Specific promise
68
+ - Curiosity gap
69
+ - End with "🧵" or "Thread:"
70
+
71
+ **Tweet 2-3: Context/Credibility**
72
+ - Why should they trust you?
73
+ - Brief background
74
+ - Set up the tension
75
+
76
+ **Tweet 4-8: Value Delivery**
77
+ - One idea per tweet
78
+ - Short sentences
79
+ - Line breaks for mobile
80
+ - Mix lengths (burstiness)
81
+
82
+ **Tweet 9-10: Payoff + CTA**
83
+ - Deliver the promise
84
+ - Summarize key takeaway
85
+ - Clear call-to-action
86
+
87
+ ### Step 5: Voice Injection
88
+
89
+ Make it sound human by adding:
90
+
91
+ **Specificity over generality:**
92
+ - ❌ "I worked at a tech company"
93
+ - ✅ "I worked at Stripe. 3rd floor. Desk by the window"
94
+
95
+ **Emotional honesty:**
96
+ - ❌ "It was challenging"
97
+ - ✅ "I cried in my car. Twice"
98
+
99
+ **Casual connectors:**
100
+ - "Here's the thing—"
101
+ - "But wait."
102
+ - "Plot twist:"
103
+ - "Real talk:"
104
+ - "Honestly?"
105
+
106
+ **Imperfect structure:**
107
+ - One-word sentences. Yes.
108
+ - Incomplete thoughts that—
109
+ - Questions that make you think?
110
+
111
+ Full guide: `references/voice-injection.md`
112
+
113
+ ## Thread Templates
114
+
115
+ ### Template A: Transformation Story
116
+ ```
117
+ [Hook: Where you are now vs then]
118
+ [Context: The struggle]
119
+ [Turning point: What changed]
120
+ [3-5 lessons learned]
121
+ [Payoff: The result]
122
+ [CTA: Follow for more]
123
+ ```
124
+
125
+ ### Template B: Listicle with Tension
126
+ ```
127
+ [Hook: Surprising number + promise]
128
+ [Why this matters]
129
+ [Items 1-7 with micro-hooks]
130
+ [The unexpected one]
131
+ [Summary + CTA]
132
+ ```
133
+
134
+ ### Template C: Contrarian Take
135
+ ```
136
+ [Hook: Bold disagreement]
137
+ [Why everyone is wrong]
138
+ [Your alternative view]
139
+ [Evidence/story]
140
+ [The real lesson]
141
+ [CTA]
142
+ ```
143
+
144
+ More templates: `references/thread-structures.md`
145
+
146
+ ## Quick Checklist
147
+
148
+ Before publishing, verify:
149
+ - [ ] Hook stops the scroll in 3 seconds?
150
+ - [ ] Zero AI buzzwords?
151
+ - [ ] At least ONE specific detail (name, number, place)?
152
+ - [ ] Sentence length varies (burstiness)?
153
+ - [ ] Mobile-friendly (short lines)?
154
+ - [ ] Clear CTA at the end?
155
+ - [ ] Would YOU screenshot this?
156
+
157
+ ## Resources
158
+
159
+ - `references/hook-formulas.md` - 10 detailed hook templates with examples
160
+ - `references/anti-ai-patterns.md` - Complete list of words/phrases to avoid
161
+ - `references/thread-structures.md` - Full thread templates for different content types
162
+ - `references/voice-injection.md` - Humanization techniques and persona guidelines