@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,169 @@
1
+ # Hook Anatomy: The Science of the First 3 Seconds
2
+
3
+ ## Why Hooks Matter
4
+
5
+ Your hook is your content's first impression. In 2025's attention economy:
6
+ - Users decide to engage in **0.3-3 seconds**
7
+ - 47% of content is scrolled past without engagement
8
+ - The algorithm measures **stop rate** as a key signal
9
+
10
+ ## The Hook Formula
11
+
12
+ ```text
13
+ HOOK = [Emotion Trigger] + [Specificity] + [Open Loop]
14
+ ```
15
+
16
+ ### Component 1: Emotion Trigger
17
+
18
+ The emotional payload that stops the scroll.
19
+
20
+ **High-Performance Emotions:**
21
+ | Emotion | Stop Rate | Best Format |
22
+ |---------|-----------|-------------|
23
+ | Surprise | 12.3% | Pattern interrupt |
24
+ | Curiosity | 9.8% | Incomplete info |
25
+ | Fear | 8.7% | Warning/consequence |
26
+ | Desire | 8.1% | Transformation promise |
27
+ | Belonging | 7.4% | Identity statements |
28
+
29
+ ### Component 2: Specificity
30
+
31
+ Vague claims = ignored. Specific details = credibility.
32
+
33
+ **Transform:**
34
+ - ❌ "I grew my account fast"
35
+ - ✅ "I grew from 0 to 47,000 followers in 63 days"
36
+
37
+ **Specificity Types:**
38
+ - Numbers: 47.3% (not "almost half")
39
+ - Time frames: 63 days (not "a few months")
40
+ - Money: $10,847 (not "five figures")
41
+ - Quantities: 1,247 posts analyzed (not "thousands")
42
+
43
+ ### Component 3: Open Loop
44
+
45
+ The unfinished thought that demands closure.
46
+
47
+ **Open Loop Techniques:**
48
+ 1. **Incomplete sentence**: "The one thing that changed everything was..."
49
+ 2. **Unanswered question**: "What if everything you know is wrong?"
50
+ 3. **Story gap**: "Last week something happened that I never expected..."
51
+ 4. **Promise unfulfilled**: "Here's the secret nobody talks about..."
52
+
53
+ ## Hook Types Deep Dive
54
+
55
+ ### Visual Hooks (2025 Trending)
56
+
57
+ Movement and visual contrast now outperform verbal hooks.
58
+
59
+ **Techniques:**
60
+ - Drop an object (pattern interrupt)
61
+ - Sudden zoom/camera movement
62
+ - Unexpected location
63
+ - Stop-motion effect
64
+ - Face close-up with emotion
65
+
66
+ **Why it works:** 50% of users watch without sound. Visual hooks work regardless of audio.
67
+
68
+ ### Curiosity Gap Hooks
69
+
70
+ Create an information vacuum that demands filling.
71
+
72
+ **Formula:** `[Partial information] + [Implied value]`
73
+
74
+ **Examples:**
75
+ - "I discovered the one thing that..." (what thing?)
76
+ - "After 5 years, I finally know..." (know what?)
77
+ - "The truth about [topic] that..." (what truth?)
78
+
79
+ ### Controversy Hooks
80
+
81
+ Challenge existing beliefs to trigger engagement.
82
+
83
+ **Formula:** `[Common belief] + [Contradiction]`
84
+
85
+ **Examples:**
86
+ - "Everyone says post daily. They're wrong."
87
+ - "Followers don't matter. Here's why."
88
+ - "The algorithm isn't broken. You are."
89
+
90
+ **Warning:** Must deliver evidence. Pure controversy without substance backfires.
91
+
92
+ ### Personal Story Hooks
93
+
94
+ Vulnerability creates instant connection.
95
+
96
+ **Formula:** `[Failure/struggle] + [Specific detail]`
97
+
98
+ **Examples:**
99
+ - "I lost 10,000 followers in 7 days doing this..."
100
+ - "My biggest mistake cost me $47,000..."
101
+ - "I almost quit last month. Here's what changed..."
102
+
103
+ ## Platform-Specific Optimization
104
+
105
+ ### Instagram Carousels
106
+ - Hook on **Slide 1 AND Slide 2** (algorithm resurfaces)
107
+ - Text: Large, readable in 2 seconds
108
+ - Visual hook > Verbal hook
109
+ - First 15 characters critical for search
110
+
111
+ ### X/Twitter
112
+ - First 50 characters = hook zone
113
+ - Strategic truncation (let algorithm cut at curiosity point)
114
+ - Question or incomplete list forces expansion
115
+ - Thread emoji (🧵) signals value ahead
116
+
117
+ ### Reels/TikTok
118
+ - First 1 second = visual pattern interrupt
119
+ - Text hook + verbal hook (sound on/off coverage)
120
+ - Face > No face (1.3x engagement)
121
+ - Movement in first frame
122
+
123
+ ## Hook Testing Framework
124
+
125
+ ### A/B Test Variables
126
+ 1. Emotion type (fear vs curiosity vs desire)
127
+ 2. Specificity level (vague vs detailed)
128
+ 3. Format (question vs statement vs visual)
129
+ 4. Length (short punch vs detailed setup)
130
+
131
+ ### Metrics to Track
132
+ - Stop rate (reached / impressions)
133
+ - Swipe-through rate (carousels)
134
+ - Expand rate (X/Twitter)
135
+ - Watch time (video first 3 sec)
136
+
137
+ ### Iteration Process
138
+ 1. Create 3 variations (different emotions)
139
+ 2. Test with same content body
140
+ 3. Measure stop/engagement rate
141
+ 4. Double down on winner
142
+ 5. Repeat
143
+
144
+ ## Common Hook Mistakes
145
+
146
+ ### Mistake 1: Clickbait Without Payoff
147
+ - Hook promises something content doesn't deliver
148
+ - Result: High initial engagement, poor retention, damaged trust
149
+
150
+ ### Mistake 2: Too Many Power Words
151
+ - "SHOCKING SECRET REVEALED: ULTIMATE GUIDE"
152
+ - Result: Manipulation feel, audience skepticism
153
+
154
+ ### Mistake 3: Generic Hooks
155
+ - "Want to grow? Read this."
156
+ - Result: No emotional trigger, easily scrolled past
157
+
158
+ ### Mistake 4: Platform Mismatch
159
+ - Long text hook on visual-first platform
160
+ - Result: Ignored by visual-scanning users
161
+
162
+ ## Quick Reference: Hook Templates
163
+
164
+ **Curiosity:** "I discovered the one thing that [outcome]..."
165
+ **Controversy:** "Everyone says [belief]. They're wrong."
166
+ **Personal:** "I [failure/struggle] and here's what I learned..."
167
+ **Data:** "[Surprising stat]. Here's what it means..."
168
+ **Question:** "What if [challenging assumption]?"
169
+ **Visual:** *[Action]* + "This is [metaphor for concept]"
@@ -0,0 +1,134 @@
1
+ # Power Word Science: Psychology Behind Trigger Words
2
+
3
+ ## Table of Contents
4
+ - [What Are Power Words](#what-are-power-words)
5
+ - [The Neuroscience](#the-neuroscience)
6
+ - [Category Deep Dives](#category-deep-dives)
7
+ - [Strategic Usage](#strategic-usage)
8
+ - [Common Mistakes](#common-mistakes)
9
+
10
+ ## What Are Power Words
11
+
12
+ Power words are specific terms that trigger emotional responses, bypassing logical processing and activating the limbic system (emotional brain) directly.
13
+
14
+ **Key Characteristics:**
15
+ - Evoke immediate emotional reaction
16
+ - Increase engagement metrics measurably
17
+ - Work across cultures (with localization)
18
+ - Can backfire if overused
19
+
20
+ ## The Neuroscience
21
+
22
+ ### Dual Processing Theory
23
+
24
+ **System 1 (Fast/Emotional):**
25
+ - Processes power words instantly
26
+ - Triggers emotional response
27
+ - No conscious analysis
28
+ - Where hooks live
29
+
30
+ **System 2 (Slow/Logical):**
31
+ - Processes factual claims
32
+ - Requires mental effort
33
+ - Easily fatigued
34
+ - Where proof lives
35
+
36
+ **Implication:** Hook with System 1 (emotion), support with System 2 (logic).
37
+
38
+ ### Emotional Categories
39
+
40
+ | Emotion | Brain Region | Trigger Words |
41
+ |---------|--------------|---------------|
42
+ | Fear | Amygdala | Warning, Danger, Risk |
43
+ | Desire | Nucleus Accumbens | Ultimate, Dream, Transform |
44
+ | Trust | Prefrontal Cortex | Proven, Guaranteed, Authentic |
45
+ | Curiosity | Dopamine System | Secret, Discover, Hidden |
46
+
47
+ ## Category Deep Dives
48
+
49
+ ### Urgency Words
50
+ **Psychology:** Loss aversion—we fear losing more than we enjoy gaining.
51
+
52
+ **Top Performers:** Now, Limited, Ending, Final, Before
53
+
54
+ **Usage:** Time-sensitive CTAs, launches, limited offers
55
+
56
+ **Caution:** Fake urgency destroys trust
57
+
58
+ ### Exclusivity Words
59
+ **Psychology:** Scarcity + Status—exclusive things feel more valuable.
60
+
61
+ **Top Performers:** Secret, Insider, Hidden, Private, Exclusive
62
+
63
+ **Usage:** Premium content, insider knowledge, community building
64
+
65
+ **Caution:** Overuse dilutes exclusivity
66
+
67
+ ### Curiosity Words
68
+ **Psychology:** Information gap theory—brain needs closure.
69
+
70
+ **Top Performers:** Discover, Reveal, Truth, Finally, Uncover
71
+
72
+ **Usage:** Hooks, headlines, open loops
73
+
74
+ **Caution:** Must deliver payoff
75
+
76
+ ### Fear Words
77
+ **Psychology:** Survival instinct—we prioritize threats.
78
+
79
+ **Top Performers:** Warning, Mistake, Avoid, Risk, Danger
80
+
81
+ **Usage:** Problem-aware content, cautionary tales
82
+
83
+ **Caution:** Always offer solution after fear
84
+
85
+ ### Desire Words
86
+ **Psychology:** Aspirational identity—who we want to become.
87
+
88
+ **Top Performers:** Transform, Ultimate, Perfect, Dream, Unlock
89
+
90
+ **Usage:** Transformation content, aspirational marketing
91
+
92
+ **Caution:** Don't overpromise
93
+
94
+ ## Strategic Usage
95
+
96
+ ### The 1-2 Rule
97
+ Maximum 1-2 power words per hook.
98
+
99
+ **Why:**
100
+ - More = manipulation feel
101
+ - Audience becomes desensitized
102
+ - Credibility decreases
103
+
104
+ **Good:** "The secret strategy that transformed my reach"
105
+ **Bad:** "The SHOCKING SECRET strategy that will INSTANTLY TRANSFORM your reach FOREVER"
106
+
107
+ ### Emotion-Content Matching
108
+
109
+ | Content Type | Primary Emotion | Power Words |
110
+ |--------------|-----------------|-------------|
111
+ | Educational | Curiosity | Discover, Reveal, Truth |
112
+ | Promotional | Urgency + Desire | Limited, Transform, Now |
113
+ | Story | Trust + Vulnerability | Real, Authentic, Honest |
114
+ | Warning | Fear + Solution | Avoid, Instead, Better |
115
+
116
+ ### Placement Optimization
117
+
118
+ **Hook Position:** First 15 characters
119
+ **CTA Position:** Near action verb
120
+ **Avoid:** Mid-content (breaks flow)
121
+
122
+ ## Common Mistakes
123
+
124
+ ### Mistake 1: Power Word Stuffing
125
+ Too many triggers = spam feel
126
+
127
+ ### Mistake 2: Emotion Mismatch
128
+ Urgency words on evergreen content confuses audience
129
+
130
+ ### Mistake 3: Empty Promises
131
+ "Secret" without actual exclusive info = clickbait
132
+
133
+ ### Mistake 4: Fear Without Solution
134
+ Creating anxiety without relief damages relationship
@@ -0,0 +1,157 @@
1
+ # Storytelling Frameworks: Complete Narrative Structures
2
+
3
+ ## Table of Contents
4
+ - [Why Stories Work](#why-stories-work)
5
+ - [Core Frameworks](#core-frameworks)
6
+ - [Social Media Adaptations](#social-media-adaptations)
7
+ - [Framework Selection Guide](#framework-selection-guide)
8
+
9
+ ## Why Stories Work
10
+
11
+ ### Neuroscience of Story
12
+
13
+ **Neural Coupling:** When hearing stories, listener's brain activity mirrors the storyteller's—creating empathy and connection.
14
+
15
+ **Dopamine Release:** Emotional stories trigger dopamine, improving memory and attention.
16
+
17
+ **Oxytocin Production:** Character-driven stories release oxytocin, building trust.
18
+
19
+ **Result:** Stories are 22x more memorable than facts alone.
20
+
21
+ ## Core Frameworks
22
+
23
+ ### 1. AIDA (Attention-Interest-Desire-Action)
24
+
25
+ **Structure:**
26
+ ```
27
+ A - Attention: Hook that stops the scroll
28
+ I - Interest: Why this matters to them
29
+ D - Desire: Paint the transformation
30
+ A - Action: Clear next step
31
+ ```
32
+
33
+ **Best For:** Short-form content, CTAs, promotional posts
34
+
35
+ **Example Flow:**
36
+ - A: "92% of creators make this mistake"
37
+ - I: "It's costing them thousands of followers"
38
+ - D: "Imagine doubling your reach in 30 days"
39
+ - A: "Save this post to avoid the trap"
40
+
41
+ ### 2. PAS (Problem-Agitate-Solve)
42
+
43
+ **Structure:**
44
+ ```
45
+ P - Problem: Identify the pain point
46
+ A - Agitate: Make it feel urgent
47
+ S - Solve: Present your solution
48
+ ```
49
+
50
+ **Best For:** Educational content, product positioning
51
+
52
+ **Example Flow:**
53
+ - P: "Struggling with low engagement?"
54
+ - A: "Every ignored post is a missed opportunity. While you guess, competitors grow."
55
+ - S: "Here's the exact framework that changed everything..."
56
+
57
+ ### 3. Hook-Story-Offer
58
+
59
+ **Structure:**
60
+ ```
61
+ Hook: Grab attention with emotion
62
+ Story: Build connection through narrative
63
+ Offer: Present the value/CTA
64
+ ```
65
+
66
+ **Best For:** Personal brand content, sales
67
+
68
+ **Example Flow:**
69
+ - Hook: "I almost quit creating last month"
70
+ - Story: "Here's what happened and what I discovered"
71
+ - Offer: "Now I help others avoid the same trap"
72
+
73
+ ### 4. Hero's Journey (Condensed)
74
+
75
+ **Structure:**
76
+ ```
77
+ Ordinary World → Call to Adventure → Resistance
78
+
79
+ Mentor/Discovery → Trials → Transformation
80
+
81
+ Return with Wisdom
82
+ ```
83
+
84
+ **Best For:** Transformation stories, long-form carousels
85
+
86
+ ### 5. Before-After-Bridge (BAB)
87
+
88
+ **Structure:**
89
+ ```
90
+ Before: Where they are now (pain)
91
+ After: Where they could be (pleasure)
92
+ Bridge: How to get there (your solution)
93
+ ```
94
+
95
+ **Best For:** Transformation content, testimonials
96
+
97
+ ## Social Media Adaptations
98
+
99
+ ### For Instagram Carousels (7-10 slides)
100
+
101
+ **Adapted Hero's Journey:**
102
+ ```
103
+ S1: Ordinary World (hook with current state)
104
+ S2: Call (the problem emerged)
105
+ S3: Resistance (initial struggle)
106
+ S4: Discovery (the turning point)
107
+ S5-6: Trials (the process)
108
+ S7: Transformation (the result)
109
+ S8: Return (lessons for audience)
110
+ S9: CTA
111
+ ```
112
+
113
+ ### For X/Twitter Threads (10 tweets)
114
+
115
+ **Adapted PAS:**
116
+ ```
117
+ T1: Hook + Problem statement
118
+ T2-3: Agitate (expand on pain)
119
+ T4: Transition ("But here's what I learned...")
120
+ T5-8: Solution (one insight per tweet)
121
+ T9: Summary
122
+ T10: CTA + Retweet request
123
+ ```
124
+
125
+ ### For Reels/TikTok (60 seconds)
126
+
127
+ **Compressed AIDA:**
128
+ ```
129
+ 0-3s: Attention (visual hook)
130
+ 3-15s: Interest (why watch)
131
+ 15-45s: Desire (value delivery)
132
+ 45-60s: Action (CTA)
133
+ ```
134
+
135
+ ## Framework Selection Guide
136
+
137
+ | Content Goal | Best Framework | Why |
138
+ |--------------|----------------|-----|
139
+ | Teach something | PAS | Addresses pain before solution |
140
+ | Share transformation | Hero's Journey | Full emotional arc |
141
+ | Sell/promote | AIDA | Clear action path |
142
+ | Build connection | Hook-Story-Offer | Personal narrative |
143
+ | Show results | BAB | Clear contrast |
144
+
145
+ ## Implementation Tips
146
+
147
+ ### Start with the End
148
+ Know your CTA before writing. Work backwards.
149
+
150
+ ### One Framework Per Piece
151
+ Don't mix. Each framework has internal logic.
152
+
153
+ ### Emotion First, Logic Second
154
+ Hook emotionally, support logically.
155
+
156
+ ### Test Different Frameworks
157
+ Same topic, different structures. Track what resonates.
@@ -0,0 +1,201 @@
1
+ ---
2
+ name: diverse-content-gen
3
+ description: "Agent workflow for generating highly diverse creative content using Verbalized Sampling (VS) technique. Use when user requests multiple variations, brainstorming, creative ideas, or when standard prompting produces repetitive outputs. Increases diversity by 1.6-2.1× while maintaining quality. Works for: blog posts, social media captions, stories, campaign ideas, product descriptions, taglines, and open-ended creative tasks."
4
+ category: creative
5
+ ---
6
+
7
+ # Diverse Content Generation using Verbalized Sampling
8
+
9
+ ## Overview
10
+
11
+ This skill teaches agents how to use **Verbalized Sampling (VS)** - a research-backed prompting technique that dramatically increases output diversity (1.6-2.1× improvement) without sacrificing quality.
12
+
13
+ **The Problem:** Standard aligned LLMs suffer from "mode collapse" - they generate overly similar, safe, predictable outputs because of typicality bias in training data.
14
+
15
+ **The Solution:** Instead of asking for single instances ("write a blog post"), VS prompts the model to verbalize a probability distribution over multiple responses ("generate 5 blog post ideas with their probabilities").
16
+
17
+ **Core Principle:** Different prompt types collapse to different modes. Distribution-level prompts recover the diverse base model distribution, while instance-level prompts collapse to the most typical output.
18
+
19
+ ---
20
+
21
+ ## Workflow Decision Tree
22
+
23
+ **Detect user intent, route to appropriate reference:**
24
+
25
+ | User Request Pattern | Route To | Description |
26
+ |---------------------|----------|-------------|
27
+ | "Generate diverse [content]" | `references/vs-core-technique.md` | Learn VS basics, prompt templates, execution |
28
+ | "Write 5 blog posts / captions / ideas" | `references/task-workflows.md` | Task-specific workflows pre-configured |
29
+ | "Need higher quality" or "too wild" | `references/advanced-techniques.md` | VS-CoT, VS-Multi, parameter tuning |
30
+ | "Save to file" or "batch process 50 items" | `references/tool-integration.md` | VS + File tools, batch workflows |
31
+ | "VS outputs too similar" or errors | `references/troubleshooting.md` | Common pitfalls and solutions |
32
+ | "Which model works best?" | `references/research-findings.md` | Benchmarks, model compatibility |
33
+
34
+ **Default workflow:** Load `vs-core-technique.md` first, then load additional references as needed.
35
+
36
+ ---
37
+
38
+ ## When to Use This Skill
39
+
40
+ ### Trigger Scenarios
41
+
42
+ **Use VS when user requests:**
43
+ - "Give me **multiple variations/options/ideas**"
44
+ - "I need **diverse** [content type]"
45
+ - "**Brainstorm** several approaches to..."
46
+ - "Generate **different angles** for..."
47
+ - "Avoid repetitive/similar outputs"
48
+
49
+ **Use VS for these content types:**
50
+ - Creative writing (blog posts, stories, poems, scripts)
51
+ - Marketing (campaign ideas, taglines, ad copy, social captions)
52
+ - Product content (descriptions, feature bullets, value props)
53
+ - Ideation (brainstorming, exploration, strategy options)
54
+ - Open-ended QA (tasks with multiple valid answers)
55
+
56
+ **DON'T use VS for:**
57
+ - Single-answer factual questions
58
+ - Tasks requiring deterministic output
59
+ - When user explicitly wants "the best" single answer
60
+ - Real-time low-latency applications
61
+
62
+ ---
63
+
64
+ ## Quick Start (30-Second Version)
65
+
66
+ **For agents who need VS immediately:**
67
+
68
+ ### 1. Detect Need
69
+ User wants multiple variations → Use VS
70
+
71
+ ### 2. Basic VS Prompt Template
72
+ ```
73
+ Generate {k} responses to: {user_request}
74
+
75
+ Return JSON format with key "responses" (list of dicts).
76
+ Each dict must include:
77
+ • text: the response string only
78
+ • probability: estimated probability (0.0-1.0)
79
+
80
+ Give ONLY the JSON object, no extra text.
81
+ ```
82
+
83
+ ### 3. Standard Parameters
84
+ - **k = 5** (candidates per call)
85
+ - **temperature = 0.8**
86
+ - **threshold = 0.10** (optional, for more diversity)
87
+
88
+ ### 4. Process Output
89
+ ```python
90
+ import json
91
+ data = json.loads(llm_output)
92
+ candidates = data["responses"]
93
+ # Present to user ranked by probability
94
+ ```
95
+
96
+ **For detailed instructions:** Load `references/vs-core-technique.md`
97
+
98
+ ---
99
+
100
+ ## Progressive Learning Path
101
+
102
+ **Recommended loading sequence:**
103
+
104
+ ### Level 1: Basics (Required)
105
+ 1. Start here: `references/vs-core-technique.md`
106
+ - VS theory and why it works
107
+ - Copy-paste ready prompt templates
108
+ - Step-by-step execution workflow
109
+ - Output parsing and presentation
110
+
111
+ ### Level 2: Task-Specific (Choose based on use case)
112
+ 2. Load: `references/task-workflows.md`
113
+ - Blog post ideas workflow
114
+ - Social media captions workflow
115
+ - Campaign/strategy ideas workflow
116
+ - Story/narrative generation workflow
117
+
118
+ ### Level 3: Advanced (On-demand)
119
+ 3. When needed:
120
+ - **Higher quality needed:** `references/advanced-techniques.md` (VS-CoT, VS-Multi)
121
+ - **File operations:** `references/tool-integration.md` (Write, batch processing)
122
+ - **Issues/errors:** `references/troubleshooting.md` (Pitfalls & fixes)
123
+ - **Model selection:** `references/research-findings.md` (Benchmarks)
124
+
125
+ ---
126
+
127
+ ## Quick Reference Card
128
+
129
+ **Copy this for quick lookup:**
130
+
131
+ | Parameter | Default Value | When to Adjust |
132
+ |-----------|--------------|----------------|
133
+ | k (candidates) | 5 | Use 3 for quick, 10 for exploration |
134
+ | Temperature | 0.7-1.0 | Combine with VS for extra diversity |
135
+ | Probability threshold | 0.10 (optional) | Lower (0.01) for more creative outputs |
136
+
137
+ **Troubleshooting shortcuts:**
138
+ - Outputs too similar? → Lower threshold OR increase k OR load `advanced-techniques.md`
139
+ - Quality too low? → VS-Multi workflow (see `advanced-techniques.md`)
140
+ - JSON parsing errors? → Emphasize "ONLY JSON" OR use regex extraction
141
+ - Not sure which model? → Load `research-findings.md`
142
+
143
+ **Quality checklist before presenting:**
144
+ - [ ] Diversity achieved (different angles/styles)
145
+ - [ ] Quality maintained (baseline standards)
146
+ - [ ] User intent matched
147
+ - [ ] Clean formatting (no JSON artifacts)
148
+
149
+ ---
150
+
151
+ ## Resources
152
+
153
+ This skill uses progressive disclosure for optimal token efficiency:
154
+
155
+ ### references/
156
+ Documentation loaded on-demand based on agent needs:
157
+
158
+ - **vs-core-technique.md** - Core VS concepts, prompt templates, execution steps
159
+ - **task-workflows.md** - Pre-configured workflows for common content types
160
+ - **advanced-techniques.md** - VS-CoT, VS-Multi, parameter tuning, refinement
161
+ - **tool-integration.md** - Combining VS with file tools, batch processing
162
+ - **troubleshooting.md** - Common pitfalls and solutions
163
+ - **research-findings.md** - Performance benchmarks, model compatibility data
164
+
165
+ **Pattern:** Agent loads SKILL.md first (routing), then loads specific references as needed during execution.
166
+
167
+ ---
168
+
169
+ ## Examples in Context
170
+
171
+ ### Example 1: Simple Brainstorming
172
+ **User:** "Give me 5 tagline ideas for a coffee shop"
173
+
174
+ **Agent workflow:**
175
+ 1. Detect: "5 ideas" → VS needed
176
+ 2. Load: `vs-core-technique.md` (if not already loaded)
177
+ 3. Execute: VS prompt with k=5
178
+ 4. Parse & present: 5 diverse taglines
179
+
180
+ ### Example 2: Production Content
181
+ **User:** "Write 10 blog post ideas about AI, I need them saved to a file"
182
+
183
+ **Agent workflow:**
184
+ 1. Detect: "10 ideas" + "saved to file" → VS + file tools
185
+ 2. Load: `vs-core-technique.md` + `tool-integration.md`
186
+ 3. Execute: VS with k=5, make 2 calls
187
+ 4. Process: Format as markdown
188
+ 5. Write: Use Write tool to save file
189
+
190
+ ### Example 3: Quality Refinement
191
+ **User:** "These are good but need more polish for production use"
192
+
193
+ **Agent workflow:**
194
+ 1. Detect: Quality improvement needed
195
+ 2. Load: `advanced-techniques.md`
196
+ 3. Execute: VS-Multi workflow (initial VS → user selects → refine)
197
+ 4. Deliver: Polished output
198
+
199
+ ---
200
+
201
+ **Ready to start?** Load `references/vs-core-technique.md` to begin using VS.