bobo-ai-cli 1.0.1

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 (234) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +216 -0
  3. package/dist/agent.d.ts +9 -0
  4. package/dist/agent.js +144 -0
  5. package/dist/agent.js.map +1 -0
  6. package/dist/config.d.ts +15 -0
  7. package/dist/config.js +76 -0
  8. package/dist/config.js.map +1 -0
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +366 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/knowledge-commands.d.ts +2 -0
  13. package/dist/knowledge-commands.js +40 -0
  14. package/dist/knowledge-commands.js.map +1 -0
  15. package/dist/knowledge.d.ts +17 -0
  16. package/dist/knowledge.js +112 -0
  17. package/dist/knowledge.js.map +1 -0
  18. package/dist/memory.d.ts +17 -0
  19. package/dist/memory.js +215 -0
  20. package/dist/memory.js.map +1 -0
  21. package/dist/planner.d.ts +22 -0
  22. package/dist/planner.js +130 -0
  23. package/dist/planner.js.map +1 -0
  24. package/dist/project.d.ts +25 -0
  25. package/dist/project.js +117 -0
  26. package/dist/project.js.map +1 -0
  27. package/dist/rules-commands.d.ts +2 -0
  28. package/dist/rules-commands.js +51 -0
  29. package/dist/rules-commands.js.map +1 -0
  30. package/dist/skills.d.ts +28 -0
  31. package/dist/skills.js +349 -0
  32. package/dist/skills.js.map +1 -0
  33. package/dist/structured/loader.d.ts +19 -0
  34. package/dist/structured/loader.js +147 -0
  35. package/dist/structured/loader.js.map +1 -0
  36. package/dist/structured/paths.d.ts +2 -0
  37. package/dist/structured/paths.js +14 -0
  38. package/dist/structured/paths.js.map +1 -0
  39. package/dist/structured/project-scaffold.d.ts +7 -0
  40. package/dist/structured/project-scaffold.js +60 -0
  41. package/dist/structured/project-scaffold.js.map +1 -0
  42. package/dist/structured/render-markdown.d.ts +37 -0
  43. package/dist/structured/render-markdown.js +47 -0
  44. package/dist/structured/render-markdown.js.map +1 -0
  45. package/dist/structured/render-table.d.ts +1 -0
  46. package/dist/structured/render-table.js +15 -0
  47. package/dist/structured/render-table.js.map +1 -0
  48. package/dist/structured/search.d.ts +10 -0
  49. package/dist/structured/search.js +104 -0
  50. package/dist/structured/search.js.map +1 -0
  51. package/dist/structured/skill-runner.d.ts +15 -0
  52. package/dist/structured/skill-runner.js +60 -0
  53. package/dist/structured/skill-runner.js.map +1 -0
  54. package/dist/structured/types.d.ts +212 -0
  55. package/dist/structured/types.js +97 -0
  56. package/dist/structured/types.js.map +1 -0
  57. package/dist/structured-skills-commands.d.ts +3 -0
  58. package/dist/structured-skills-commands.js +126 -0
  59. package/dist/structured-skills-commands.js.map +1 -0
  60. package/dist/structured-template-commands.d.ts +2 -0
  61. package/dist/structured-template-commands.js +34 -0
  62. package/dist/structured-template-commands.js.map +1 -0
  63. package/dist/tools/index.d.ts +3 -0
  64. package/dist/tools/index.js +450 -0
  65. package/dist/tools/index.js.map +1 -0
  66. package/dist/ui.d.ts +19 -0
  67. package/dist/ui.js +72 -0
  68. package/dist/ui.js.map +1 -0
  69. package/dist/web.d.ts +4 -0
  70. package/dist/web.js +124 -0
  71. package/dist/web.js.map +1 -0
  72. package/knowledge/advanced-patterns.md +70 -0
  73. package/knowledge/agent-directives.md +74 -0
  74. package/knowledge/dream.md +36 -0
  75. package/knowledge/engineering.md +46 -0
  76. package/knowledge/error-catalog.md +33 -0
  77. package/knowledge/index.json +170 -0
  78. package/knowledge/memory/cache-optimization-and-skill-integration.md +102 -0
  79. package/knowledge/memory/engineering-patterns.md +134 -0
  80. package/knowledge/memory/feedback_root_structure.md +16 -0
  81. package/knowledge/memory/project-contexts.md +69 -0
  82. package/knowledge/memory/tools-and-services.md +85 -0
  83. package/knowledge/rules/agents.md +62 -0
  84. package/knowledge/rules/blocking-rules.md +323 -0
  85. package/knowledge/rules/cache-management.md +379 -0
  86. package/knowledge/rules/capability-evolution.md +132 -0
  87. package/knowledge/rules/coding.md +126 -0
  88. package/knowledge/rules/engineering-workflows.md +225 -0
  89. package/knowledge/rules/evomap-content-guidelines.md +354 -0
  90. package/knowledge/rules/evomap-guide.md +224 -0
  91. package/knowledge/rules/git.md +31 -0
  92. package/knowledge/rules/hooks.md +106 -0
  93. package/knowledge/rules/performance.md +101 -0
  94. package/knowledge/rules/remotion-auto-production.md +1120 -0
  95. package/knowledge/rules/security.md +46 -0
  96. package/knowledge/rules/testing.md +32 -0
  97. package/knowledge/rules/work-mode.md +208 -0
  98. package/knowledge/rules.md +62 -0
  99. package/knowledge/skills/Skill_Seekers.md +1722 -0
  100. package/knowledge/skills/ab-test-setup.md +557 -0
  101. package/knowledge/skills/agent-sdk-dev.md +238 -0
  102. package/knowledge/skills/agent-tools.md +136 -0
  103. package/knowledge/skills/analytics-tracking.md +597 -0
  104. package/knowledge/skills/artifacts-builder.md +89 -0
  105. package/knowledge/skills/asana.md +13 -0
  106. package/knowledge/skills/backend-expert.md +97 -0
  107. package/knowledge/skills/brand-voice.md +481 -0
  108. package/knowledge/skills/browser-use.md +419 -0
  109. package/knowledge/skills/cache-optimization-skill.md +179 -0
  110. package/knowledge/skills/canvas-design.md +147 -0
  111. package/knowledge/skills/citation-validator.md +203 -0
  112. package/knowledge/skills/clangd-lsp.md +52 -0
  113. package/knowledge/skills/code-review-expert.md +85 -0
  114. package/knowledge/skills/code-review.md +280 -0
  115. package/knowledge/skills/code-simplifier.md +13 -0
  116. package/knowledge/skills/commit-commands.md +258 -0
  117. package/knowledge/skills/competitor-alternatives.md +795 -0
  118. package/knowledge/skills/content-atomizer.md +910 -0
  119. package/knowledge/skills/content-research-writer.md +605 -0
  120. package/knowledge/skills/context-optimization-suite.md +162 -0
  121. package/knowledge/skills/context7.md +13 -0
  122. package/knowledge/skills/copy-editing.md +494 -0
  123. package/knowledge/skills/copywriting.md +510 -0
  124. package/knowledge/skills/csharp-lsp.md +40 -0
  125. package/knowledge/skills/decision-making-framework.md +154 -0
  126. package/knowledge/skills/developer-growth-analysis.md +335 -0
  127. package/knowledge/skills/direct-response-copy.md +2336 -0
  128. package/knowledge/skills/docker-expert.md +229 -0
  129. package/knowledge/skills/document-skills.md +13 -0
  130. package/knowledge/skills/documentation-expert.md +126 -0
  131. package/knowledge/skills/email-sequence.md +1061 -0
  132. package/knowledge/skills/email-sequences.md +910 -0
  133. package/knowledge/skills/example-plugin.md +72 -0
  134. package/knowledge/skills/explanatory-output-style.md +82 -0
  135. package/knowledge/skills/feature-dev.md +458 -0
  136. package/knowledge/skills/file-organizer.md +466 -0
  137. package/knowledge/skills/firebase.disabled.md +13 -0
  138. package/knowledge/skills/form-cro.md +488 -0
  139. package/knowledge/skills/free-tool-strategy.md +636 -0
  140. package/knowledge/skills/frontend-design-offical.md +55 -0
  141. package/knowledge/skills/frontend-design.md +41 -0
  142. package/knowledge/skills/frontend-expert.md +93 -0
  143. package/knowledge/skills/github.md +13 -0
  144. package/knowledge/skills/gitlab.md +13 -0
  145. package/knowledge/skills/gopls-lsp.md +32 -0
  146. package/knowledge/skills/got-controller.md +218 -0
  147. package/knowledge/skills/greptile.md +72 -0
  148. package/knowledge/skills/hookify.md +376 -0
  149. package/knowledge/skills/image-editor.md +189 -0
  150. package/knowledge/skills/image-enhancer.md +109 -0
  151. package/knowledge/skills/jdtls-lsp.md +49 -0
  152. package/knowledge/skills/json-canvas.md +654 -0
  153. package/knowledge/skills/keyword-research.md +559 -0
  154. package/knowledge/skills/kotlin-lsp.md +28 -0
  155. package/knowledge/skills/laravel-boost.md +13 -0
  156. package/knowledge/skills/launch-strategy.md +394 -0
  157. package/knowledge/skills/lead-magnet.md +393 -0
  158. package/knowledge/skills/learning-output-style.md +106 -0
  159. package/knowledge/skills/linear.md +13 -0
  160. package/knowledge/skills/lua-lsp.md +47 -0
  161. package/knowledge/skills/marketing-ideas.md +720 -0
  162. package/knowledge/skills/marketing-psychology.md +534 -0
  163. package/knowledge/skills/mcp-builder.md +369 -0
  164. package/knowledge/skills/meeting-insights-analyzer.md +347 -0
  165. package/knowledge/skills/memory-evolution-system.md +172 -0
  166. package/knowledge/skills/multi-lens-thinking.md +407 -0
  167. package/knowledge/skills/nano-banana-pro.md +116 -0
  168. package/knowledge/skills/newsletter.md +736 -0
  169. package/knowledge/skills/notebooklm.md +296 -0
  170. package/knowledge/skills/obsidian-bases.md +634 -0
  171. package/knowledge/skills/obsidian-markdown.md +651 -0
  172. package/knowledge/skills/onboarding-cro.md +494 -0
  173. package/knowledge/skills/orchestrator.md +681 -0
  174. package/knowledge/skills/page-cro.md +379 -0
  175. package/knowledge/skills/paid-ads.md +624 -0
  176. package/knowledge/skills/paywall-upgrade-cro.md +651 -0
  177. package/knowledge/skills/php-lsp.md +36 -0
  178. package/knowledge/skills/planning-with-files.md +193 -0
  179. package/knowledge/skills/playwright.md +13 -0
  180. package/knowledge/skills/plugin-dev.md +434 -0
  181. package/knowledge/skills/popup-cro.md +520 -0
  182. package/knowledge/skills/positioning-angles.md +330 -0
  183. package/knowledge/skills/pr-review-toolkit.md +359 -0
  184. package/knowledge/skills/pricing-strategy.md +777 -0
  185. package/knowledge/skills/programmatic-seo.md +714 -0
  186. package/knowledge/skills/pyright-lsp.md +43 -0
  187. package/knowledge/skills/quality-assurance-framework.md +168 -0
  188. package/knowledge/skills/question-refiner.md +160 -0
  189. package/knowledge/skills/ralph-loop.md +205 -0
  190. package/knowledge/skills/refactoring-expert.md +103 -0
  191. package/knowledge/skills/referral-program.md +668 -0
  192. package/knowledge/skills/research-executor.md +164 -0
  193. package/knowledge/skills/review-with-security.md +12 -0
  194. package/knowledge/skills/rust-analyzer-lsp.md +50 -0
  195. package/knowledge/skills/schema-markup.md +647 -0
  196. package/knowledge/skills/security-audit-expert.md +124 -0
  197. package/knowledge/skills/security-expert.md +140 -0
  198. package/knowledge/skills/security-guidance.md +13 -0
  199. package/knowledge/skills/seedance-prompt.md +139 -0
  200. package/knowledge/skills/self-evolution.md +1160 -0
  201. package/knowledge/skills/seo-audit.md +432 -0
  202. package/knowledge/skills/seo-content.md +787 -0
  203. package/knowledge/skills/serena.md +13 -0
  204. package/knowledge/skills/signup-flow-cro.md +409 -0
  205. package/knowledge/skills/skill-creator.md +220 -0
  206. package/knowledge/skills/skill-manager.md +226 -0
  207. package/knowledge/skills/skill-share.md +98 -0
  208. package/knowledge/skills/slack.md +13 -0
  209. package/knowledge/skills/social-content.md +878 -0
  210. package/knowledge/skills/spec-flow-skill.md +124 -0
  211. package/knowledge/skills/stripe.md +13 -0
  212. package/knowledge/skills/supabase.md +13 -0
  213. package/knowledge/skills/swift-lsp.md +40 -0
  214. package/knowledge/skills/synthesizer.md +236 -0
  215. package/knowledge/skills/template-skill.md +16 -0
  216. package/knowledge/skills/testing-expert.md +99 -0
  217. package/knowledge/skills/theme-factory.md +72 -0
  218. package/knowledge/skills/tiktok-research.md +208 -0
  219. package/knowledge/skills/typescript-lsp.md +36 -0
  220. package/knowledge/skills/ui-ux-pro-max.md +247 -0
  221. package/knowledge/skills/verify.md +15 -0
  222. package/knowledge/skills/visual-prompt-engineer.md +102 -0
  223. package/knowledge/skills/webapp-testing.md +111 -0
  224. package/knowledge/skills/wide-research.md +191 -0
  225. package/knowledge/system.md +93 -0
  226. package/knowledge/task-router.md +37 -0
  227. package/knowledge/verification.md +38 -0
  228. package/knowledge/workflows/3d-viz.md +47 -0
  229. package/knowledge/workflows/data-pipeline.md +47 -0
  230. package/knowledge/workflows/db-migration.md +51 -0
  231. package/knowledge/workflows/feature-dev.md +41 -0
  232. package/knowledge/workflows/tdd-flow.md +52 -0
  233. package/knowledge/workflows/ui-verify.md +51 -0
  234. package/package.json +60 -0
@@ -0,0 +1,910 @@
1
+ ---
2
+ id: "content-atomizer"
3
+ title: "Content Atomizer Skill"
4
+ category: "marketing"
5
+ tags: ["content atomizer skill", "the core job", "input types", "platform playbooks", "the atomization workflow", "transformation examples", "platform voice adjustments", "the test"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/content-atomizer"
9
+ ---
10
+
11
+ ---
12
+ name: content-atomizer
13
+ description: 'Transform one piece of content into platform-optimized assets across LinkedIn, Twitter/X, Instagram, TikTok, and YouTube. Use when someone has existing content (blog post, newsletter, podcast, video) and wants to maximize distribution. Covers format specs, hook formulas, algorithm signals, and creator-tested patterns for each platform. Triggers on: repurpose this, turn this into social posts, atomize this content, create social content from, LinkedIn post from this, thread from this. Outputs platform-specific content ready to publish.'
14
+ ---
15
+
16
+ # Content Atomizer Skill
17
+
18
+ One piece of content should become ten. The best creators don't create more—they distribute better.
19
+
20
+ This skill transforms any source content into platform-optimized assets. Not generic repurposing. Platform-native content that performs.
21
+
22
+ **The math:** A single blog post can become 1 LinkedIn carousel + 2 LinkedIn text posts + 1 Twitter thread + 3 single tweets + 2 Instagram carousels + 1 Reel script + 2 TikTok scripts + 1 YouTube Short script = 13 pieces of content from one source.
23
+
24
+ ---
25
+
26
+ ## The Core Job
27
+
28
+ Transform source content into **platform-native assets** that:
29
+
30
+ - Match each platform's algorithm signals
31
+ - Use format-specific best practices
32
+ - Include hooks proven to stop the scroll
33
+ - Feel native, not repurposed
34
+
35
+ ---
36
+
37
+ ## Input Types
38
+
39
+ ### What Can Be Atomized
40
+
41
+ | Source Type | Best Outputs | Atomization Potential |
42
+ | --------------------- | ------------------------------------ | ----------------------- |
43
+ | **Blog Post** | All platforms | High (lots of material) |
44
+ | **Newsletter** | LinkedIn, Twitter, Instagram | High |
45
+ | **Podcast Episode** | Short-form video, threads, carousels | Very High |
46
+ | **Long-form Video** | Shorts, Reels, TikToks, carousels | Very High |
47
+ | **Webinar/Talk** | All platforms | Very High |
48
+ | **Case Study** | LinkedIn, Twitter threads | High |
49
+ | **Data/Research** | Carousels, threads, single posts | Medium-High |
50
+ | **Framework/Process** | Carousels, threads, video scripts | High |
51
+
52
+ ### What to Extract
53
+
54
+ From any source, identify:
55
+
56
+ 1. **The Core Insight** — The one thing someone should remember
57
+ 2. **Supporting Points** — 3-7 sub-points that build the argument
58
+ 3. **Stories/Examples** — Concrete illustrations
59
+ 4. **Data Points** — Stats, numbers, proof
60
+ 5. **Contrarian Takes** — Opinions that challenge conventional wisdom
61
+ 6. **Actionable Steps** — What someone can do with this
62
+ 7. **Quotable Lines** — Punchy phrases that stand alone
63
+
64
+ ---
65
+
66
+ ## Platform Playbooks
67
+
68
+ ### LinkedIn
69
+
70
+ **Algorithm Signals (December 2025):**
71
+
72
+ - **Dwell time** — How long people spend reading (still #1)
73
+ - **Topic authority** — Consistent niche posting builds algorithmic trust
74
+ - **Golden hour** — First 60 minutes determines reach to 2nd/3rd-degree connections
75
+ - **Relevance over recency** — Mid-2025 update shows older posts (2-3 weeks) if highly relevant
76
+ - **Authentic engagement** — AI detects engagement pods via comment velocity and patterns
77
+ - **Native content** — Posts without links get significantly more reach
78
+
79
+ **2025 Reality Check:** Organic views down ~50%, engagement down ~25% as LinkedIn prioritizes quality over quantity. Post 2-3x/week max, not daily.
80
+
81
+ **Optimal Specs:**
82
+
83
+ | Format | Specs | Notes |
84
+ | --------- | -------------------------------- | ------------------------------- |
85
+ | Carousel | 5-10 slides, 1080x1350px | Highest dwell time, save-worthy |
86
+ | Text Post | 1,200-1,500 chars, 3-line hook | Depth over frequency |
87
+ | Document | PDF, 10-15 pages max | Good for frameworks |
88
+ | Video | 30-90 seconds, captions required | Lower reach than text/carousels |
89
+
90
+ #### LinkedIn Carousel Template
91
+
92
+ **Slide 1: Hook Slide**
93
+
94
+ ```
95
+ [BOLD CLAIM OR QUESTION]
96
+
97
+ (That challenges what they think they know)
98
+
99
+ Swipe → to learn [specific outcome]
100
+ ```
101
+
102
+ **Slide 2-6: Content Slides**
103
+
104
+ ```
105
+ [NUMBER]. [POINT HEADLINE]
106
+
107
+ [2-3 sentences of explanation]
108
+
109
+ [Visual element or example if possible]
110
+ ```
111
+
112
+ **Slide 7: Summary Slide**
113
+
114
+ ```
115
+ Quick recap:
116
+
117
+ 1. [Point 1 - 5 words max]
118
+ 2. [Point 2 - 5 words max]
119
+ 3. [Point 3 - 5 words max]
120
+ 4. [Point 4 - 5 words max]
121
+ 5. [Point 5 - 5 words max]
122
+ ```
123
+
124
+ **Final Slide: CTA Slide**
125
+
126
+ ```
127
+ Found this useful?
128
+
129
+ → Follow for more [topic]
130
+ → Repost to help others
131
+ → Save for later
132
+
133
+ [Your name/handle]
134
+ ```
135
+
136
+ #### LinkedIn Text Post Template
137
+
138
+ ```
139
+ [HOOK - First line must stop the scroll]
140
+
141
+ [Line break]
142
+
143
+ [CONTEXT - Why this matters, 2-3 lines]
144
+
145
+ [Line break]
146
+
147
+ Here's what I learned:
148
+
149
+ [Line break]
150
+
151
+ 1. [Point with brief explanation]
152
+
153
+ 2. [Point with brief explanation]
154
+
155
+ 3. [Point with brief explanation]
156
+
157
+ 4. [Point with brief explanation]
158
+
159
+ 5. [Point with brief explanation]
160
+
161
+ [Line break]
162
+
163
+ [TAKEAWAY - The "so what"]
164
+
165
+ [Line break]
166
+
167
+ [CTA - Question or action]
168
+
169
+ ---
170
+
171
+ [Hashtags - 3-5 max, at the bottom]
172
+ ```
173
+
174
+ #### LinkedIn Hook Formulas
175
+
176
+ **Pattern 1: Contrarian Statement**
177
+
178
+ > "Stop [thing everyone does]. It's killing your [result]."
179
+
180
+ **Pattern 2: Story Hook**
181
+
182
+ > "Last week, I [did something]. What happened next changed how I think about [topic]."
183
+
184
+ **Pattern 3: List Preview**
185
+
186
+ > "[Number] [things] that [outcome]. (Number [X] is the one no one talks about.)"
187
+
188
+ **Pattern 4: Credibility + Insight**
189
+
190
+ > "After [impressive stat/experience], here's what I know for sure about [topic]:"
191
+
192
+ **Pattern 5: Question Hook**
193
+
194
+ > "Why do [surprising thing happen]? I finally figured it out."
195
+
196
+ **Pattern 6: Bold Claim**
197
+
198
+ > "[Counterintuitive claim]. Here's the proof:"
199
+
200
+ ---
201
+
202
+ ### Twitter/X
203
+
204
+ **Algorithm Signals (December 2025):**
205
+
206
+ - **Replies** — Highest weight, especially from accounts you engage with
207
+ - **Quote tweets** — 2x engagement value vs plain retweet
208
+ - **Time spent** — On tweet and clicked links
209
+ - **Profile clicks** — Curiosity driven by tweet
210
+ - **Media boost** — Images/videos/GIFs increase visibility scores
211
+ - **Early engagement** — First hours critical for amplification
212
+
213
+ **2025 Changes:** Following feed now uses **Grok AI** for ranking (based on past interactions and topics)—no longer purely chronological. Users default to For You feed.
214
+
215
+ **Optimal Specs:**
216
+
217
+ | Format | Specs | Performance |
218
+ | ------------ | ----------------------- | -------------------------- |
219
+ | Single Tweet | <100 characters optimal | Highest engagement rate |
220
+ | Thread | 8-15 tweets | Best for depth + followers |
221
+ | Quote Tweet | Add value to original | 2x engagement vs retweet |
222
+ | Image Tweet | 1200x675px | 35% more engagement |
223
+
224
+ #### Twitter Thread Template
225
+
226
+ **Tweet 1: Hook Tweet**
227
+
228
+ ```
229
+ [BOLD CLAIM OR PROMISE]
230
+
231
+ [What they'll learn in one line]
232
+
233
+ 🧵 Thread:
234
+ ```
235
+
236
+ **Tweets 2-X: Content Tweets**
237
+
238
+ ```
239
+ [NUMBER]. [POINT]
240
+
241
+ [2-3 sentences of explanation]
242
+
243
+ [Example or proof if fits]
244
+ ```
245
+
246
+ **Final Tweet: Wrap + CTA**
247
+
248
+ ```
249
+ TL;DR:
250
+
251
+ • [Point 1]
252
+ • [Point 2]
253
+ • [Point 3]
254
+ • [Point 4]
255
+ • [Point 5]
256
+
257
+ If this was useful:
258
+ 1. Follow @[handle] for more
259
+ 2. RT the first tweet
260
+
261
+ [Link if relevant]
262
+ ```
263
+
264
+ #### Single Tweet Templates
265
+
266
+ **The Insight Tweet:**
267
+
268
+ ```
269
+ [Counterintuitive observation about industry/topic]
270
+
271
+ Most people think [X].
272
+
273
+ But [Y] is actually true because [Z].
274
+ ```
275
+
276
+ **The List Tweet:**
277
+
278
+ ```
279
+ [Number] [things] that [outcome]:
280
+
281
+ • [Item 1]
282
+ • [Item 2]
283
+ • [Item 3]
284
+ • [Item 4]
285
+ • [Item 5]
286
+
287
+ Which one hits different?
288
+ ```
289
+
290
+ **The Hot Take:**
291
+
292
+ ```
293
+ Unpopular opinion:
294
+
295
+ [Contrarian statement]
296
+
297
+ Here's why: [One-line reasoning]
298
+ ```
299
+
300
+ **The Question Tweet:**
301
+
302
+ ```
303
+ [Provocative question about industry/topic]?
304
+
305
+ Genuine question. Reply with your take.
306
+ ```
307
+
308
+ **The Proof Tweet:**
309
+
310
+ ```
311
+ [Impressive result/stat]
312
+
313
+ Here's exactly how:
314
+
315
+ [3-5 bullet points of method]
316
+ ```
317
+
318
+ #### Twitter Hook Formulas
319
+
320
+ **Pattern 1: Bold Opener**
321
+
322
+ > "[Thing] is dead. Here's what's replacing it:"
323
+
324
+ **Pattern 2: Numbers + Outcome**
325
+
326
+ > "I [did X] for [time period]. Here's what happened:"
327
+
328
+ **Pattern 3: Controversial Take**
329
+
330
+ > "This will piss off [group], but [claim]."
331
+
332
+ **Pattern 4: Curiosity Gap**
333
+
334
+ > "The [industry] secret no one talks about:"
335
+
336
+ **Pattern 5: Specific Proof**
337
+
338
+ > "[Specific result] in [timeframe]. No [common excuse]. Here's the playbook:"
339
+
340
+ ---
341
+
342
+ ### Instagram
343
+
344
+ **Algorithm Signals (December 2025):**
345
+
346
+ - **DM shares ("sends per reach")** — Now one of the STRONGEST discovery signals
347
+ - **Saves** — Still critical for Feed and Explore
348
+ - **Watch time & retention** — For Reels, completion rate is king
349
+ - **Likes per reach** — Quality signal (not raw likes)
350
+ - **Early velocity** — First 30-90 minutes determines push to wider audience
351
+ - **Relationship signals** — DMs, profile taps, comment history with account
352
+
353
+ **2025 Changes:** Photos getting more support in Feed again (Adam Mosseri). Carousels expanded to 20 slides in some regions. Hashtag weighting significantly reduced. New "Your Algorithm" feature lets users see why they're seeing content.
354
+
355
+ **Optimal Specs:**
356
+
357
+ | Format | Specs | Performance |
358
+ | ------------ | --------------------------------------- | ------------------------------- |
359
+ | Carousel | 6-10 slides (up to 20), 1080x1350px | Highest engagement, save-worthy |
360
+ | Reel | 7-15 sec (viral), 30-45 sec (tutorials) | Best for discovery/reach |
361
+ | Single Image | 1080x1350px | Getting more support in 2025 |
362
+ | Story | 1080x1920px, <15 sec | Best for DM engagement |
363
+
364
+ #### Instagram Carousel Template
365
+
366
+ **Slide 1: Cover (The Hook)**
367
+
368
+ ```
369
+ [BOLD STATEMENT OR QUESTION]
370
+
371
+ in [large, readable font]
372
+
373
+ [Minimal design, high contrast]
374
+ ```
375
+
376
+ **Slide 2: The Problem/Setup**
377
+
378
+ ```
379
+ [Why this matters]
380
+
381
+ or
382
+
383
+ [What most people get wrong]
384
+ ```
385
+
386
+ **Slides 3-8: The Content**
387
+
388
+ ```
389
+ [ONE point per slide]
390
+
391
+ [Large text, minimal words]
392
+
393
+ [Visual hierarchy: headline + 1-2 supporting lines]
394
+ ```
395
+
396
+ **Slide 9: Summary (Optional)**
397
+
398
+ ```
399
+ Quick recap:
400
+
401
+ ✓ [Point 1]
402
+ ✓ [Point 2]
403
+ ✓ [Point 3]
404
+ ✓ [Point 4]
405
+ ✓ [Point 5]
406
+ ```
407
+
408
+ **Slide 10: CTA**
409
+
410
+ ```
411
+ Save this for later 📌
412
+
413
+ Follow @[handle] for more
414
+
415
+ Share with someone who needs this
416
+ ```
417
+
418
+ #### Instagram Caption Template
419
+
420
+ ```
421
+ [HOOK - First line must work in preview]
422
+
423
+ .
424
+ .
425
+ .
426
+
427
+ [BODY - The value/story/insight]
428
+
429
+ [2-4 paragraphs max]
430
+
431
+ [Each paragraph 2-3 sentences]
432
+
433
+ ---
434
+
435
+ 💾 Save this for later
436
+ 📤 Share with a friend who needs it
437
+ 💬 Drop a [emoji] if this resonated
438
+
439
+ ---
440
+
441
+ #[niche hashtag] #[broader hashtag] #[topic hashtag]
442
+ ```
443
+
444
+ #### Instagram Reel Script Template (15-30 seconds)
445
+
446
+ ```
447
+ [SECONDS 0-3: HOOK]
448
+ "[Pattern interrupt or bold claim that stops scroll]"
449
+
450
+ [SECONDS 3-20: VALUE]
451
+ "Here's [what/why/how]:
452
+ Point one: [brief]
453
+ Point two: [brief]
454
+ Point three: [brief]"
455
+
456
+ [SECONDS 20-30: CTA]
457
+ "Follow for more [topic]"
458
+ OR
459
+ "Save this for later"
460
+ OR
461
+ "Send to someone who needs this"
462
+ ```
463
+
464
+ #### Instagram Story Sequence Template
465
+
466
+ **Story 1: Hook**
467
+
468
+ ```
469
+ [Poll or question sticker]
470
+
471
+ "Quick question..."
472
+ [Poll: Option A / Option B]
473
+ ```
474
+
475
+ **Story 2: Setup**
476
+
477
+ ```
478
+ "Here's why I ask..."
479
+
480
+ [Brief context]
481
+ ```
482
+
483
+ **Story 3-5: Value**
484
+
485
+ ```
486
+ [One point per story]
487
+
488
+ [Use text animation or stickers for engagement]
489
+ ```
490
+
491
+ **Story 6: CTA**
492
+
493
+ ```
494
+ "Want the full breakdown?"
495
+
496
+ [Link sticker to content]
497
+
498
+ OR
499
+
500
+ "DM me [word] for [resource]"
501
+ ```
502
+
503
+ ---
504
+
505
+ ### TikTok
506
+
507
+ **Algorithm Signals (December 2025):**
508
+
509
+ - **Watch time (first seconds)** — Completion rate still #1, but early seconds weighted heavily
510
+ - **Rewatch rate** — Multiple views = strong signal
511
+ - **Shares** — Especially to DMs
512
+ - **Niche community alignment** — 2025 favors specialized audiences over broad virality
513
+ - **Contextual categorization** — AI distinguishes humor, education, emotion to match interests
514
+ - **Video quality** — Lighting, sound, editing now integrated into ranking
515
+
516
+ **2025 Changes:** Algorithm now favors **longer content (30-60+ seconds) if retention is high**. Niche communities (#BookTok, etc.) get boosted over generic viral attempts. Deeper AI personalization analyzes watch duration, replays, and cross-platform habits.
517
+
518
+ **Optimal Specs:**
519
+
520
+ | Format | Specs | Performance |
521
+ | ---------- | ------------------ | ------------------------------------- |
522
+ | Short-form | 15-30 seconds | Highest completion rate |
523
+ | Medium | 30-60 seconds | Now favored if retention is strong |
524
+ | Long-form | 1-3 minutes | Good for depth with engaged audiences |
525
+ | Vertical | 1080x1920px (9:16) | Required |
526
+
527
+ #### TikTok Script Template (15-30 seconds)
528
+
529
+ ```
530
+ [HOOK - 0-3 seconds]
531
+ "[Visual hook + verbal hook simultaneously]"
532
+
533
+ Options:
534
+ - "Stop scrolling if you [identifier]"
535
+ - "POV: You just realized [insight]"
536
+ - "The [industry] secret no one tells you:"
537
+ - "[Controversial statement]—let me explain"
538
+ - "I'm about to save you [time/money/pain]"
539
+
540
+ [BODY - 3-25 seconds]
541
+ "Here's the thing:
542
+
543
+ [Point 1 - delivered fast]
544
+
545
+ [Point 2 - keep momentum]
546
+
547
+ [Point 3 - the payoff]"
548
+
549
+ [CTA - 25-30 seconds]
550
+ "Follow for more [topic]"
551
+ OR
552
+ "Part 2?" [to boost comments]
553
+ OR
554
+ "Save this" [drives saves]
555
+ ```
556
+
557
+ #### TikTok Hook Formulas
558
+
559
+ **Pattern 1: Pattern Interrupt**
560
+
561
+ > "[Unexpected visual or statement that breaks scroll pattern]"
562
+
563
+ **Pattern 2: Identity Call-Out**
564
+
565
+ > "This is for my [specific group] who [specific situation]"
566
+
567
+ **Pattern 3: Proof First**
568
+
569
+ > "[Show the result immediately, then explain how]"
570
+
571
+ **Pattern 4: Controversy Spark**
572
+
573
+ > "I'm going to get hate for this but [take]"
574
+
575
+ **Pattern 5: Curiosity Gap**
576
+
577
+ > "I can't believe [industry/brand] doesn't want you to know this"
578
+
579
+ **Pattern 6: Tutorial Promise**
580
+
581
+ > "In 30 seconds I'll show you how to [specific outcome]"
582
+
583
+ #### TikTok Content Patterns That Work
584
+
585
+ 1. **Before/After** — Show transformation immediately
586
+ 2. **Green Screen** — You + content behind you (tweets, articles, data)
587
+ 3. **Stitch/Duet** — React to trending content in your niche
588
+ 4. **Day in the Life** — Niche-specific (day in the life of a marketer, etc.)
589
+ 5. **POV** — "POV: You're [scenario]" with relatable insight
590
+ 6. **Listicle** — "3 things [outcome]" with fast delivery
591
+ 7. **Myth Busting** — "Stop believing [common misconception]"
592
+
593
+ ---
594
+
595
+ ### YouTube
596
+
597
+ **Algorithm Signals (December 2025):**
598
+
599
+ - **Click-through rate (CTR)** — How often people click when shown your video
600
+ - **Average view duration & % watched** — Raw watch time AND completion percentage
601
+ - **Session impact** — Does your video keep people on YouTube longer?
602
+ - **Viewer satisfaction** — YouTube now uses surveys + behavior to estimate quality
603
+ - **Negative feedback** — "Not interested," skips, very low retention hurt you
604
+ - **Topical authority** — Channels focused on clear topics get recommended more
605
+
606
+ **2025 Changes:** AI-driven hyper-personalization (device, time of day, habits). Older evergreen videos get revived when topics trend again. Stronger emphasis on authority, depth, and "entity-rich" content (aligned with Google Search updates).
607
+
608
+ **Optimal Specs:**
609
+
610
+ | Format | Specs | Performance |
611
+ | --------- | ----------------------------------- | -------------------------------------- |
612
+ | Shorts | 10-35 sec (discovery), up to 60 sec | Highest reach, lower depth |
613
+ | Long-form | 8-12 minutes (sweet spot) | Best for monetization + depth |
614
+ | Thumbnail | 1280x720px | CTR target: 4-10% (Home), 6-12% strong |
615
+
616
+ #### YouTube Shorts Script Template
617
+
618
+ ```
619
+ [HOOK - 0-2 seconds]
620
+ "[Immediate value promise or pattern interrupt]"
621
+
622
+ Examples:
623
+ - "Here's why [common belief] is wrong"
624
+ - "[Number] second [topic] lesson"
625
+ - "The [industry] hack that changed everything"
626
+
627
+ [BODY - 2-50 seconds]
628
+ [Deliver value fast]
629
+
630
+ [Each point: 5-10 seconds max]
631
+
632
+ [Keep visual movement—don't stand still]
633
+
634
+ [CTA - 50-60 seconds]
635
+ "Subscribe for more [topic]"
636
+ OR
637
+ "Full video on my channel"
638
+ OR
639
+ End abruptly (drives rewatch for missed content)
640
+ ```
641
+
642
+ #### YouTube Long-Form Framework (HIVES)
643
+
644
+ **H - Hook (0-30 seconds)**
645
+
646
+ ```
647
+ [Pattern interrupt or bold claim]
648
+ [Quick credibility if needed]
649
+ [Preview of what they'll learn]
650
+ "By the end of this video, you'll know exactly how to [outcome]"
651
+ ```
652
+
653
+ **I - Intro (30 seconds - 1 minute)**
654
+
655
+ ```
656
+ [Brief context on why this matters]
657
+ [Who this is for]
658
+ [What you'll cover]
659
+ "Let's dive in"
660
+ ```
661
+
662
+ **V - Value (Main content)**
663
+
664
+ ```
665
+ [Deliver on the promise]
666
+ [Clear sections with verbal signposting]
667
+ "First... Second... Third..."
668
+ [Examples and proof for each point]
669
+ ```
670
+
671
+ **E - Engagement Prompts (Throughout)**
672
+
673
+ ```
674
+ [Every 2-3 minutes, insert:]
675
+ "Let me know in the comments if [question]"
676
+ "Hit like if [relatable statement]"
677
+ "If you're finding this useful, subscribe"
678
+ ```
679
+
680
+ **S - Strong CTA (Final 30 seconds)**
681
+
682
+ ```
683
+ [Summarize key points]
684
+ [Clear next action]
685
+ "If you want to go deeper on [topic], watch this video next"
686
+ [End screen with subscribe + related video]
687
+ ```
688
+
689
+ #### YouTube Thumbnail + Title Patterns
690
+
691
+ **Thumbnail Principles:**
692
+
693
+ - 3 elements max (face, text, object)
694
+ - High contrast colors
695
+ - Readable at small size
696
+ - Emotion on face (if showing face)
697
+ - Curiosity gap (show outcome, not process)
698
+
699
+ **Title Formulas:**
700
+
701
+ | Pattern | Example |
702
+ | ------------------------------------------ | --------------------------------------------------- |
703
+ | How I [result] | "How I Built a 6-Figure Newsletter in 8 Months" |
704
+ | [Number] [Things] That [Outcome] | "7 LinkedIn Mistakes Killing Your Reach" |
705
+ | Why [Thing] Doesn't Work | "Why Your Content Strategy Isn't Working" |
706
+ | The [Adjective] [Thing] | "The Boring Marketing Strategy That Actually Works" |
707
+ | I [Did X] For [Time]. Here's What Happened | "I Posted Daily for 90 Days. Here's What Happened" |
708
+ | [Year] Guide to [Topic] | "2024 Guide to Growing on LinkedIn" |
709
+ | [Thing] vs [Thing] | "Threads vs Twitter: Which One Should You Use?" |
710
+
711
+ ---
712
+
713
+ ## The Atomization Workflow
714
+
715
+ ### Step 1: Extract
716
+
717
+ From your source content, pull out:
718
+
719
+ ```
720
+ CORE INSIGHT:
721
+ [One sentence that captures the main point]
722
+
723
+ SUPPORTING POINTS:
724
+ 1. [Point + brief explanation]
725
+ 2. [Point + brief explanation]
726
+ 3. [Point + brief explanation]
727
+ 4. [Point + brief explanation]
728
+ 5. [Point + brief explanation]
729
+
730
+ STORIES/EXAMPLES:
731
+ - [Story 1]
732
+ - [Story 2]
733
+
734
+ DATA/PROOF:
735
+ - [Stat 1]
736
+ - [Stat 2]
737
+
738
+ QUOTABLE LINES:
739
+ - "[Quote 1]"
740
+ - "[Quote 2]"
741
+
742
+ CONTRARIAN TAKES:
743
+ - [Take 1]
744
+ - [Take 2]
745
+ ```
746
+
747
+ ### Step 2: Map to Platforms
748
+
749
+ | Content Element | Best Platforms | Best Formats |
750
+ | ---------------------------- | ------------------ | -------------------------- |
751
+ | Core insight | All | Single posts, hooks |
752
+ | Supporting points (together) | LinkedIn, Twitter | Carousel, thread |
753
+ | Individual points | All | Single posts |
754
+ | Stories | Instagram, TikTok | Reels, Stories |
755
+ | Data points | LinkedIn, Twitter | Image posts, carousels |
756
+ | Quotable lines | Twitter, Instagram | Quote graphics |
757
+ | Contrarian takes | Twitter, TikTok | Single tweets, video hooks |
758
+
759
+ ### Step 3: Transform
760
+
761
+ For each platform, apply:
762
+
763
+ 1. **Format** — Use the templates above
764
+ 2. **Hook** — Platform-specific hook formula
765
+ 3. **Length** — Match platform norms
766
+ 4. **CTA** — Platform-appropriate action
767
+ 5. **Voice** — Adjust formality (LinkedIn > Instagram > TikTok)
768
+
769
+ ### Step 4: Sequence
770
+
771
+ **Optimal posting sequence:**
772
+
773
+ 1. **LinkedIn carousel** — Day 1 (longest shelf life)
774
+ 2. **Twitter thread** — Day 1-2 (good for discussion)
775
+ 3. **Instagram carousel** — Day 2-3 (repurpose LinkedIn design)
776
+ 4. **TikTok/Reel** — Day 3-4 (needs video production)
777
+ 5. **YouTube Short** — Day 4-5 (can repurpose TikTok)
778
+ 6. **Single posts** — Ongoing (extract individual points)
779
+
780
+ ---
781
+
782
+ ## Anti-Patterns: What Not to Do
783
+
784
+ ### Don't:
785
+
786
+ 1. **Copy-paste across platforms**
787
+ - Each platform has different norms
788
+ - Cross-posted content performs 40-60% worse
789
+
790
+ 2. **Use the same hook everywhere**
791
+ - LinkedIn hooks ≠ TikTok hooks
792
+ - Adjust energy and format per platform
793
+
794
+ 3. **Ignore platform-native features**
795
+ - No hashtags on LinkedIn carousels
796
+ - Always use captions on video
797
+ - Instagram needs visual-first thinking
798
+
799
+ 4. **Post everything at once**
800
+ - Stagger across days/weeks
801
+ - Gives each piece room to perform
802
+
803
+ 5. **Forget the CTA**
804
+ - Every platform piece needs a clear next action
805
+ - But make it platform-appropriate
806
+
807
+ ### Do:
808
+
809
+ 1. **Lead with the best hook per platform**
810
+ 2. **Adapt length to platform norms**
811
+ 3. **Use native formatting (threads, carousels, etc.)**
812
+ 4. **Front-load value (especially for video)**
813
+ 5. **Create platform-specific visuals when possible**
814
+
815
+ ---
816
+
817
+ ## Transformation Examples
818
+
819
+ ### Example: Blog Post → Multi-Platform
820
+
821
+ **Source:** 2,000-word blog post on "5 Pricing Mistakes That Kill SaaS Growth"
822
+
823
+ **Atomization:**
824
+
825
+ | Platform | Format | Content |
826
+ | ------------- | --------- | -------------------------------------------------- |
827
+ | LinkedIn | Carousel | 8 slides: Hook + 5 mistakes + recap + CTA |
828
+ | LinkedIn | Text Post | Deep dive on mistake #1 with personal story |
829
+ | Twitter | Thread | 7 tweets: Hook + 5 mistakes + wrap |
830
+ | Twitter | Single | Just mistake #3 (most contrarian) as hot take |
831
+ | Instagram | Carousel | Visual version of LinkedIn carousel |
832
+ | Instagram | Reel | 30-sec: "Stop making these pricing mistakes" |
833
+ | TikTok | Video | 20-sec: Most controversial mistake, hot take style |
834
+ | YouTube Short | Video | 45-sec: All 5 mistakes, rapid fire |
835
+
836
+ ### Example: Podcast Episode → Multi-Platform
837
+
838
+ **Source:** 45-minute podcast interview with actionable insights
839
+
840
+ **Atomization:**
841
+
842
+ | Platform | Format | Content |
843
+ | ------------- | --------- | -------------------------------------- |
844
+ | LinkedIn | Text Post | Best quote + context + your take |
845
+ | LinkedIn | Carousel | Key framework from interview |
846
+ | Twitter | Thread | 10 best insights from the episode |
847
+ | Twitter | Single | Best quote as standalone insight |
848
+ | Instagram | Carousel | Visual quotes from guest |
849
+ | Instagram | Reel | Best 30-second clip with captions |
850
+ | TikTok | Video | Spiciest take from interview |
851
+ | YouTube Short | Video | Best insight with visual hook |
852
+ | YouTube | Long-form | Full episode or highlights compilation |
853
+
854
+ ---
855
+
856
+ ## Platform Voice Adjustments
857
+
858
+ The same insight needs different energy per platform:
859
+
860
+ | Platform | Voice | Example (same insight) |
861
+ | --------- | ------------------------ | ------------------------------------------------------------------------------------------ |
862
+ | LinkedIn | Professional, thoughtful | "After 10 years in marketing, I've learned that simplicity beats complexity. Here's why:" |
863
+ | Twitter | Punchy, direct | "Hot take: Simple marketing > 'sophisticated' marketing. Every time." |
864
+ | Instagram | Visual, inspirational | [Image with text: "Simple > Sophisticated" + story in caption] |
865
+ | TikTok | Casual, energetic | "Y'all I need to talk about why everyone's overcomplicating their marketing..." |
866
+ | YouTube | Conversational, thorough | "If you've been in marketing for any length of time, you've probably noticed something..." |
867
+
868
+ ---
869
+
870
+ ## Quick Reference: Platform Specs (December 2025)
871
+
872
+ | Platform | Optimal Length | Best Format | Hook Window | Top Signal |
873
+ | ---------------- | --------------------------------- | -------------- | ---------------- | ----------------------------- |
874
+ | LinkedIn | 1,200-1,500 chars | Carousel | First 3 lines | Dwell time + topic authority |
875
+ | Twitter/X | <100 chars (single) | Thread (8-15) | First tweet | Replies + early engagement |
876
+ | Instagram | 6-10 slides | Carousel | First slide | DM shares ("sends per reach") |
877
+ | TikTok | 30-60 seconds (if retention high) | Short video | First 3 seconds | Completion + niche alignment |
878
+ | YouTube (Shorts) | 10-35 seconds | Vertical video | First 2 seconds | Completion rate |
879
+ | YouTube (Long) | 8-12 minutes | Horizontal | First 30 seconds | Satisfaction + session time |
880
+
881
+ ---
882
+
883
+ ## The Test
884
+
885
+ Good atomization means:
886
+
887
+ 1. **Each piece stands alone** — Makes sense without the source
888
+ 2. **Each piece feels native** — Doesn't feel "repurposed"
889
+ 3. **Hooks match the platform** — Right energy, right format
890
+ 4. **Value is front-loaded** — Best stuff first
891
+ 5. **CTAs are appropriate** — Platform-native actions
892
+ 6. **Quality over quantity** — 5 great pieces > 15 mediocre ones
893
+
894
+ ---
895
+
896
+ ## How This Connects to Other Skills
897
+
898
+ **Input from:**
899
+
900
+ - **seo-content** → Blog posts to atomize
901
+ - **newsletter** → Newsletter editions to atomize
902
+ - **direct-response-copy** → Landing page insights to distribute
903
+ - **brand-voice** → Ensures consistent voice across platforms
904
+
905
+ **The flow:**
906
+
907
+ 1. Create source content (blog, newsletter, video)
908
+ 2. **content-atomizer transforms into platform pieces**
909
+ 3. Each piece drives back to source or offer
910
+ 4. Repeat with next piece of source content