@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,305 @@
1
+ # Threads SEO Playbook (2025)
2
+
3
+ Optimization guide for Meta's Threads platform. Reflects platform evolution as of December 2025.
4
+
5
+ ## Platform Context
6
+
7
+ **Threads = Meta's Twitter Competitor:**
8
+ - Launched July 2023, rapid growth in 2024-2025
9
+ - Tight integration with Instagram (same account base)
10
+ - Algorithm prioritizes conversation over virality
11
+ - SEO features still evolving (younger platform)
12
+
13
+ **Key Difference from X/Twitter:**
14
+ - Less emphasis on trending topics
15
+ - More focus on community/niche conversations
16
+ - Cross-platform synergy with Instagram
17
+
18
+ ## Profile Optimization
19
+
20
+ ### Username & Display Name
21
+ **Synchronized with Instagram:**
22
+ - Same username as Instagram (can't differ)
23
+ - Display name can be different
24
+ - Bio separate from Instagram
25
+
26
+ **Strategy:**
27
+ - If Instagram optimized → Threads inherits benefits
28
+ - If not → Optimize Instagram first
29
+
30
+ ### Bio Optimization
31
+
32
+ **Format:** `[What you do] • [Who for] • [Value]`
33
+
34
+ **Example:**
35
+ ```
36
+ Social media SEO tips • Helping creators get discovered • DM for resources
37
+ ```
38
+
39
+ **Keywords:** 1-2 naturally integrated
40
+
41
+ **Length:** Keep under 150 characters (mobile readability)
42
+
43
+ ## Content Optimization
44
+
45
+ ### Post Structure
46
+
47
+ **Opening Line Critical:**
48
+ - First 12-15 characters matter for discovery
49
+ - Front-load keyword or hook
50
+ - No wasted space
51
+
52
+ **Example:**
53
+ - ❌ "So I was thinking about..."
54
+ - ✅ "Instagram SEO tip: keywords in Name field"
55
+
56
+ ### Thread Posts
57
+
58
+ **When to Thread:**
59
+ - Multi-part insights (3-5 posts)
60
+ - Step-by-step guides
61
+ - Story narratives
62
+
63
+ **Structure:**
64
+ 1. Hook post (standalone value)
65
+ 2. Context/Setup
66
+ 3. Main content (1-2 posts)
67
+ 4. Conclusion + CTA
68
+
69
+ **Note:** Threads algorithm rewards complete threads (read all posts)
70
+
71
+ ### Post Length
72
+
73
+ **Optimal:** 100-200 characters
74
+ - Scannable on mobile
75
+ - Complete thought
76
+ - Leaves room for engagement
77
+
78
+ **Longer Acceptable:**
79
+ - Educational content
80
+ - Story-driven posts
81
+ - Use line breaks for readability
82
+
83
+ ## Hashtag Strategy
84
+
85
+ **Current State (Dec 2025):**
86
+ - Hashtags less developed than Instagram/X
87
+ - Follow hashtags not yet available
88
+ - Limited discoverability via hashtags
89
+
90
+ **Best Practice:**
91
+ - 2-3 hashtags maximum
92
+ - Niche-specific over broad
93
+ - Topic-focused hashtags
94
+
95
+ **Example:**
96
+ ```
97
+ #CreatorEconomy #SocialMediaTips #ContentStrategy
98
+ ```
99
+
100
+ **Don't:**
101
+ - Copy Instagram's 30-hashtag lists
102
+ - Use trending-only hashtags
103
+ - Hashtag stuff
104
+
105
+ ## Cross-Platform Strategy
106
+
107
+ ### Instagram Synergy
108
+
109
+ **Algorithm Connection:**
110
+ - Meta recognizes related content across platforms
111
+ - Similar topics on both → 2x discovery boost
112
+ - Cross-posting can work if adapted
113
+
114
+ **How to Leverage:**
115
+ 1. Post similar themes on both
116
+ 2. Adapt caption for each platform
117
+ 3. Share Threads posts to IG Stories
118
+ 4. Link IG posts in Threads when relevant
119
+
120
+ **Example Flow:**
121
+ ```
122
+ Instagram: Full caption + image + 5 hashtags
123
+ Threads: Condensed version + link to IG post + discussion question
124
+ ```
125
+
126
+ ### Content Repurposing
127
+
128
+ **From Instagram:**
129
+ - Rewrite caption (shorter, conversation-starter)
130
+ - Same topic, different angle
131
+ - Ask for opinions/experiences
132
+
133
+ **From X/Twitter:**
134
+ - Threads = longer posts (can adapt thread)
135
+ - Less emphasis on virality
136
+ - More community discussion
137
+
138
+ ## Engagement Tactics
139
+
140
+ ### Conversation Over Likes
141
+
142
+ **Algorithm Preference:**
143
+ - Replies weighted heavily
144
+ - Quality conversation > viral metrics
145
+ - Genuine discussions boosted
146
+
147
+ **Strategy:**
148
+ - Ask open-ended questions
149
+ - Reply to every comment (first hour)
150
+ - Start conversations, not broadcasts
151
+
152
+ ### Reply Within 1 Hour
153
+
154
+ **Why Critical:**
155
+ - First hour sets engagement trajectory
156
+ - Algorithm tests with small audience first
157
+ - High early engagement → wider distribution
158
+
159
+ **Action:**
160
+ - Turn on post notifications
161
+ - Reply thoughtfully (not just "thanks")
162
+ - Ask follow-up questions
163
+
164
+ ### Community Building
165
+
166
+ **Threads Rewards:**
167
+ - Consistent engagement with specific accounts
168
+ - Niche community participation
169
+ - Quality over quantity followers
170
+
171
+ **Build Community:**
172
+ - Reply to others' posts in your niche
173
+ - Share others' content (with credit)
174
+ - Create discussion threads
175
+
176
+ ## Topic Clarity (Critical)
177
+
178
+ ### Last 9-12 Posts Matter
179
+
180
+ **How Algorithm Works:**
181
+ - Analyzes your recent posts (9-12)
182
+ - Categorizes your account by topic
183
+ - Suggests your content to interested users
184
+
185
+ **Strategy:**
186
+ - Stay focused on niche topics
187
+ - Avoid random off-topic posts
188
+ - Build topical authority
189
+
190
+ **Example:**
191
+ - ✅ All posts about social media SEO
192
+ - ❌ Random mix: SEO, food photos, political opinions
193
+
194
+ ### Niche Consistency
195
+
196
+ **Topic Authority:**
197
+ - Post 80%+ in your primary niche
198
+ - 20% can be related topics
199
+ - Avoid complete topic jumps
200
+
201
+ **Algorithm Benefit:**
202
+ - Higher unconnected reach (discovery)
203
+ - Recommended to similar interests
204
+ - Profile appears in topic searches
205
+
206
+ ## Distribution System
207
+
208
+ ### Two-Tier Reach
209
+
210
+ **Connected Reach (Your Followers):**
211
+ - Relationship strength matters
212
+ - Prior engagement history
213
+ - Recent interaction patterns
214
+
215
+ **Unconnected Reach (Discovery):**
216
+ - Topic relevance
217
+ - Freshness
218
+ - Engagement velocity
219
+
220
+ **Optimize Both:**
221
+ - Engage with followers (connected)
222
+ - Use keywords + hashtags (unconnected)
223
+
224
+ ### Boosting Unconnected Reach
225
+
226
+ **Tactics:**
227
+ 1. Keyword-rich first line
228
+ 2. Topic consistency (9-12 posts)
229
+ 3. High early engagement
230
+ 4. Quality replies (not just likes)
231
+ 5. Cross-promotion from Instagram
232
+
233
+ ## What to Avoid
234
+
235
+ ❌ **Posting Off-Topic** - Confuses algorithm categorization
236
+ ❌ **Ignoring Replies** - Kills engagement signals
237
+ ❌ **Cross-Posting Verbatim** - Adapt for each platform
238
+ ❌ **Chasing Virality** - Threads rewards conversation
239
+ ❌ **Broadcasting Only** - Engage with community
240
+
241
+ ## Content Types That Work
242
+
243
+ ### Discussion Starters
244
+ - Open-ended questions
245
+ - "What's your experience with..."
246
+ - Controversial (but respectful) takes
247
+
248
+ ### Educational Posts
249
+ - Quick tips (1-2 sentences)
250
+ - Mini-tutorials
251
+ - Myth-busting
252
+
253
+ ### Personal Stories
254
+ - Behind-the-scenes
255
+ - Lessons learned
256
+ - Vulnerability moments
257
+
258
+ ### Resource Shares
259
+ - Tools
260
+ - Articles
261
+ - Other creators' content (with credit)
262
+
263
+ ## Analytics Tracking
264
+
265
+ **Threads Insights:**
266
+ - Views (reach metric)
267
+ - Replies (engagement quality)
268
+ - Reposts (share signal)
269
+ - Quotes (engagement + reach)
270
+
271
+ **Track:**
272
+ 1. Which topics get most replies?
273
+ 2. Best posting times for YOUR audience
274
+ 3. Engagement rate by post type
275
+ 4. Growth in unconnected reach
276
+
277
+ ## Future Features (Watch For)
278
+
279
+ **Evolving Platform:**
280
+ - DM functionality (rolled out partially)
281
+ - Search improvements (ongoing)
282
+ - Hashtag following (not yet available)
283
+ - Algorithm refinements (frequent)
284
+
285
+ **Stay Updated:**
286
+ - Follow @mosseri (Adam Mosseri, Instagram head)
287
+ - Test new features early
288
+ - Adapt strategy as platform evolves
289
+
290
+ ## Integration with SEO Manager
291
+
292
+ **Use Cases:**
293
+ 1. Adapt Instagram captions for Threads
294
+ 2. Query `databases/caption-styles.csv` filtered for conversation
295
+ 3. Cross-platform content calendar
296
+ 4. Track which topics work where
297
+
298
+ **Workflow:**
299
+ ```
300
+ 1. Create Instagram post (optimized)
301
+ 2. Adapt for Threads (shorter, question-based)
302
+ 3. Post to both
303
+ 4. Track engagement patterns
304
+ 5. Iterate strategy
305
+ ```
@@ -0,0 +1,337 @@
1
+ # X/Twitter SEO Playbook (2025)
2
+
3
+ Complete guide for optimizing X/Twitter content for visibility, engagement, and discovery. Reflects November 2025 algorithm updates.
4
+
5
+ ## Critical Algorithm Understanding (2025)
6
+
7
+ **How X Prioritizes Content:**
8
+ 1. **Recency** - Fresh content gets significant boost (24-48 hour window)
9
+ 2. **Engagement Quality** - Meaningful replies > retweets > likes
10
+ 3. **Account Authority** - Verification, follower quality, account history
11
+ 4. **First 100 Characters** - Critical for search ranking and categorization
12
+ 5. **Watch Time** (for videos) - Completion rate heavily weighted
13
+
14
+ **Search Visibility:**
15
+ - X has internal search (keyword-based)
16
+ - Google indexes tweets (appears in SERPs for trending topics)
17
+ - First 50-100 characters determine search ranking
18
+
19
+ ## Profile Optimization
20
+
21
+ ### Bio (160 Characters)
22
+
23
+ **Formula:** `[Role/Expertise] helping [audience] [achieve result] • [proof element]`
24
+
25
+ **Structure:**
26
+ 1. WHO you are (role + keyword)
27
+ 2. WHO you help (target audience)
28
+ 3. WHAT you deliver (value proposition)
29
+ 4. PROOF (social proof/credentials—optional)
30
+
31
+ **Examples:**
32
+ - "SEO strategist helping creators with discoverability • 100k+ followers grown • Thread master 🧵"
33
+ - "Content marketing for B2B SaaS • Grew 50 companies to 7-figures • Tips daily"
34
+
35
+ **Keywords:** Include 1-2 primary keywords naturally
36
+
37
+ ### Display Name
38
+
39
+ **Options:**
40
+ 1. Name + Keyword: "Sarah Chen | SEO Expert"
41
+ 2. Name + Achievement: "John Smith • 100k Creator"
42
+ 3. Keyword-Rich: "SEO Tips Daily"
43
+
44
+ **Searchable:** Display name is heavily weighted in X search
45
+
46
+ ### Username (@handle)
47
+
48
+ **Best:** Include keyword if available (`@seotips`, `@contentgrowth`)
49
+ **Reality:** Most keyword handles taken—prioritize brand consistency
50
+ **SEO Value:** Moderate (less than display name or bio)
51
+
52
+ ### Profile Photo
53
+
54
+ **Best Performers:** Clear face shots (human connection)
55
+ **Branding:** Logos work if already known brand
56
+ **Consistency:** Keep same photo (recognition builds trust)
57
+
58
+ ### Pinned Tweet
59
+
60
+ **Strategic Use:**
61
+ - Showcases best content (appears in Google for your brand)
62
+ - Include call-to-action
63
+ - Update monthly with top performer
64
+
65
+ **Formula:** Hook + Value + CTA
66
+ **Example:** "10 SEO tips that grew me to 100k. Bookmark this thread: [link]"
67
+
68
+ ## Tweet Optimization
69
+
70
+ ### First 100 Characters = Make or Break
71
+
72
+ **Why Critical:**
73
+ - X search algorithm prioritizes opening words
74
+ - Google preview shows first ~100 characters
75
+ - Users decide to engage in <3 seconds
76
+
77
+ **Structure:**
78
+ ```
79
+ [Hook/Keyword] [Value proposition] [Curiosity gap]
80
+ ```
81
+
82
+ **Examples:**
83
+ - ❌ "Hey everyone! I've been thinking about..."
84
+ - ✅ "Twitter SEO tip that 10x'd my reach: Front-load keywords in first line."
85
+
86
+ ### Hook Formulas
87
+
88
+ Use `databases/hook-formulas.csv` filtered for platform=twitter
89
+
90
+ **Top Performers:**
91
+ 1. Bold claim + proof
92
+ 2. Data hook (I analyzed X...)
93
+ 3. Contrarian take
94
+ 4. Pattern recognition
95
+ 5. Personal failure story
96
+
97
+ ### Tweet Length
98
+
99
+ **Optimal:** 120-150 characters
100
+ - Leaves room for retweets with comments
101
+ - Forces conciseness (higher engagement)
102
+
103
+ **Longer Tweets:** Okay for value-dense content
104
+ - Use line breaks for readability
105
+ - Each paragraph = distinct point
106
+
107
+ ### Hashtag Strategy (IMPORTANT)
108
+
109
+ **2025 Update:** X algorithm **penalizes 3+ hashtags**
110
+
111
+ **Best Practice:**
112
+ - 1-2 hashtags maximum
113
+ - Place in first 50 characters (if using)
114
+ - Trending hashtags > niche hashtags
115
+
116
+ **Use Cases:**
117
+ - 1 hashtag: Trending topic hijack
118
+ - 2 hashtags: Category + niche
119
+ - 0 hashtags: Often best (keywords > hashtags on X)
120
+
121
+ **Reference:** `databases/hashtag-strategies.csv` platform=twitter
122
+
123
+ ## Thread Architecture
124
+
125
+ ### Why Threads Work
126
+ - More space for keywords
127
+ - Higher engagement rate
128
+ - Better for complex topics
129
+ - Searchable (thread compilation)
130
+
131
+ ### Thread Structure
132
+
133
+ **Use:** `databases/thread-structures.csv`
134
+
135
+ **Basic Formula:**
136
+ 1. **Hook tweet** (standalone + thread tease)
137
+ 2. **Context** (why this matters)
138
+ 3. **Value tweets** (7-9 tweets of core content)
139
+ 4. **Summary** (key takeaways)
140
+ 5. **CTA** (follow, bookmark, share)
141
+
142
+ ### First Tweet Optimization
143
+
144
+ **Critical Elements:**
145
+ 1. Keyword in first 10 words
146
+ 2. Hook formula (curiosity/bold claim/data)
147
+ 3. Thread indicator (🧵 or "Thread:")
148
+ 4. Standalone value (works without thread)
149
+
150
+ **Example:**
151
+ ```
152
+ Twitter SEO changed in 2025. Here's what 1000 viral threads taught me: 🧵
153
+
154
+ 1. First 100 characters decide everything
155
+ 2. Hashtags now hurt reach (use 1-2 max)
156
+ 3. Engagement quality > quantity
157
+ ...
158
+ ```
159
+
160
+ ### Thread Length
161
+
162
+ **Optimal:** 10-12 tweets
163
+ - 1 hook
164
+ - 7-9 value
165
+ - 1 CTA
166
+
167
+ **Avoid:** 20+ tweets (completion rate drops)
168
+
169
+ ## Content Types That Perform
170
+
171
+ ### Educational Threads
172
+ - How-to guides
173
+ - Frameworks/Templates
174
+ - Tool recommendations
175
+ - Case studies
176
+
177
+ ### Data-Driven Content
178
+ - "I analyzed X..."
179
+ - Research findings
180
+ - A/B test results
181
+ - Metrics/Stats
182
+
183
+ ### Personal Stories
184
+ - Failure → Success
185
+ - Behind-the-scenes
186
+ - Controversial opinions
187
+ - Lessons learned
188
+
189
+ ## Media Optimization
190
+
191
+ ### Images
192
+ **Always Add Alt Text:**
193
+ - Accessibility requirement
194
+ - SEO benefit (indexed by search)
195
+ - Formula: `[Keyword] + [detailed description]`
196
+
197
+ **Example Alt Text:**
198
+ ```
199
+ "Twitter SEO performance dashboard showing 300% engagement increase after implementing keyword optimization strategy"
200
+ ```
201
+
202
+ ### Videos
203
+ **Best Length:** Under 30 seconds (completion rate critical)
204
+ **Overlay Text:** Include keywords visible on screen
205
+ **Captions:** Enable for accessibility + retention
206
+
207
+ ## Engagement Strategy
208
+
209
+ ### First Hour = 80% of Viral Potential
210
+
211
+ **Actions:**
212
+ 1. Reply to every comment (within 60 min)
213
+ 2. Quote-tweet relevant content
214
+ 3. Tag relevant accounts (when appropriate)
215
+ 4. Retweet related threads
216
+
217
+ ### Reply SEO
218
+ - Your replies appear in search
219
+ - Include keywords in replies
220
+ - Build conversation threads (boosts both tweets)
221
+
222
+ ### Quote Tweet Strategy
223
+ - Add value, don't just agree
224
+ - Use keywords in quote
225
+ - Tag original author (notification → engagement)
226
+
227
+ ## What to Avoid
228
+
229
+ ❌ **3+ Hashtags** - Algorithm confirmed penalty
230
+ ❌ **Generic Engagement Bait** - "Like if you agree" hurts reach
231
+ ❌ **Link in First Tweet** - Reduces algorithmic distribution
232
+ ❌ **Keyword Stuffing** - Readability > SEO
233
+ ❌ **Auto-DM Spam** - Kills trust instantly
234
+
235
+ ## Posting Strategy
236
+
237
+ ### Timing
238
+ **Best Practice:** Post when YOUR audience is active
239
+ - Check X Analytics → Audience insights
240
+ - Test different times for 30 days
241
+ - First hour engagement = critical
242
+
243
+ **General Guidelines:**
244
+ - Weekdays: 8-10am, 12-1pm, 5-7pm (local time)
245
+ - Weekends: 9am-12pm
246
+
247
+ ### Frequency
248
+ **Quality > Quantity:**
249
+ - 1-3 high-value tweets/day > 10 mediocre
250
+ - Consistency matters more than volume
251
+ - Thread 1-2x per week = optimal
252
+
253
+ ## Analytics to Track
254
+
255
+ **X Analytics Dashboard:**
256
+ 1. **Impressions** - Reach metric
257
+ 2. **Engagement Rate** - Quality signal
258
+ 3. **Profile Visits** from tweets
259
+ 4. **Link Clicks** - If monetizing
260
+ 5. **Follower Growth** - Long-term metric
261
+
262
+ **Track by Tweet Type:**
263
+ - Which hooks perform best?
264
+ - Thread topics with highest engagement?
265
+ - Optimal posting times for you?
266
+
267
+ **Iterate:** Double down on what works, cut what doesn't
268
+
269
+ ## Tools Integration
270
+
271
+ **X Premium/Pro Features:**
272
+ - Longer tweets (4000 chars)
273
+ - Edit tweets (30 min window)
274
+ - Analytics boost
275
+ - Verification (credibility signal)
276
+
277
+ **TweetDeck/XPro:**
278
+ - Schedule tweets
279
+ - Monitor mentions
280
+ - Track keywords
281
+ - Manage multiple accounts
282
+
283
+ **Third-Party:**
284
+ - Hypefury (auto-repost winners)
285
+ - Typefully (thread composer)
286
+ - Buffer/Hootsuite (scheduling)
287
+
288
+ ## Advanced Tactics
289
+
290
+ ### Thread Templates
291
+ - Create reusable structures
292
+ - Test and iterate frameworks
293
+ - Save winners in `databases/thread-structures.csv`
294
+
295
+ ### Evergreen Threads
296
+ - Pin to profile
297
+ - Repost every 2-3 months
298
+ - Update with fresh data
299
+
300
+ ### Cross-Promotion
301
+ - Share threads on LinkedIn (repurpose)
302
+ - Embed in blog posts
303
+ - Newsletter feature
304
+
305
+ ### Collaboration
306
+ - Guest threads on others' accounts
307
+ - Round-up threads (tag multiple experts)
308
+ - Twitter Spaces (voice + engagement)
309
+
310
+ ## Workflow Integration
311
+
312
+ **Content Creation:**
313
+ 1. Research keywords → `databases/keyword-clusters.csv`
314
+ 2. Select thread structure → `databases/thread-structures.csv`
315
+ 3. Write hook → `databases/hook-formulas.csv`
316
+ 4. Optimize first 100 chars (keywords front-loaded)
317
+ 5. Add 1-2 hashtags (if relevant)
318
+ 6. Write alt text for images
319
+ 7. Schedule for optimal time
320
+ 8. Engage first hour
321
+
322
+ **Iteration:**
323
+ 1. Track performance (X Analytics)
324
+ 2. Identify winners (engagement rate)
325
+ 3. Analyze why (hook? topic? timing?)
326
+ 4. Create variations
327
+ 5. Test and iterate
328
+
329
+ ## SEO Checklist (Per Tweet)
330
+
331
+ - [ ] Keyword in first 100 characters?
332
+ - [ ] Hook from proven formulas?
333
+ - [ ] 1-2 hashtags max (or zero)?
334
+ - [ ] Alt text on images?
335
+ - [ ] Profile optimized?
336
+ - [ ] Ready to engage first hour?
337
+ - [ ] CTA included?