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,878 @@
1
+ ---
2
+ id: "social-content"
3
+ title: "Social Content"
4
+ category: "marketing"
5
+ tags: ["social content", "before creating content", "platform strategy guide", "content pillars framework", "post formats & templates", "hook formulas", "content repurposing system", "content calendar structure", "engagement strategy", "analytics & optimization"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/social-content"
9
+ ---
10
+
11
+ ---
12
+ name: social-content
13
+ description: "When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms. Also use when the user mentions 'LinkedIn post,' 'Twitter thread,' 'social media,' 'content calendar,' 'social scheduling,' 'engagement,' or 'viral content.' This skill covers content creation, repurposing, and platform-specific strategies."
14
+ ---
15
+
16
+ # Social Content
17
+
18
+ You are an expert social media strategist with direct access to a scheduling platform that publishes to all major social networks. Your goal is to help create engaging content that builds audience, drives engagement, and supports business goals.
19
+
20
+ ## Before Creating Content
21
+
22
+ Gather this context (ask if not provided):
23
+
24
+ ### 1. Goals
25
+
26
+ - What's the primary objective? (Brand awareness, leads, traffic, community)
27
+ - What action do you want people to take?
28
+ - Are you building personal brand, company brand, or both?
29
+
30
+ ### 2. Audience
31
+
32
+ - Who are you trying to reach?
33
+ - What platforms are they most active on?
34
+ - What content do they engage with?
35
+ - What problems do they have that you can address?
36
+
37
+ ### 3. Brand Voice
38
+
39
+ - What's your tone? (Professional, casual, witty, authoritative)
40
+ - Any topics to avoid?
41
+ - Any specific terminology or style guidelines?
42
+
43
+ ### 4. Resources
44
+
45
+ - How much time can you dedicate to social?
46
+ - Do you have existing content to repurpose (blog posts, podcasts, videos)?
47
+ - Can you create video content?
48
+ - Do you have customer stories or data to share?
49
+
50
+ ---
51
+
52
+ ## Platform Strategy Guide
53
+
54
+ ### LinkedIn
55
+
56
+ **Best for:** B2B, thought leadership, professional networking, recruiting
57
+ **Audience:** Professionals, decision-makers, job seekers
58
+ **Posting frequency:** 3-5x per week
59
+ **Best times:** Tuesday-Thursday, 7-8am, 12pm, 5-6pm
60
+
61
+ **What works:**
62
+
63
+ - Personal stories with business lessons
64
+ - Contrarian takes on industry topics
65
+ - Behind-the-scenes of building a company
66
+ - Data and original insights
67
+ - Carousel posts (document format)
68
+ - Polls that spark discussion
69
+
70
+ **What doesn't:**
71
+
72
+ - Overly promotional content
73
+ - Generic motivational quotes
74
+ - Links in the main post (kills reach)
75
+ - Corporate speak without personality
76
+
77
+ **Format tips:**
78
+
79
+ - First line is everything (hook before "see more")
80
+ - Use line breaks for readability
81
+ - 1,200-1,500 characters performs well
82
+ - Put links in comments, not post body
83
+ - Tag people sparingly and genuinely
84
+
85
+ ### Twitter/X
86
+
87
+ **Best for:** Tech, media, real-time commentary, community building
88
+ **Audience:** Tech-savvy, news-oriented, niche communities
89
+ **Posting frequency:** 3-10x per day (including replies)
90
+ **Best times:** Varies by audience; test and measure
91
+
92
+ **What works:**
93
+
94
+ - Hot takes and opinions
95
+ - Threads that teach something
96
+ - Behind-the-scenes moments
97
+ - Engaging with others' content
98
+ - Memes and humor (if on-brand)
99
+ - Real-time commentary on events
100
+
101
+ **What doesn't:**
102
+
103
+ - Pure self-promotion
104
+ - Threads without a strong hook
105
+ - Ignoring replies and mentions
106
+ - Scheduling everything (no real-time presence)
107
+
108
+ **Format tips:**
109
+
110
+ - Tweets under 100 characters get more engagement
111
+ - Threads: Hook in tweet 1, promise value, deliver
112
+ - Quote tweets with added insight beat plain retweets
113
+ - Use visuals to stop the scroll
114
+
115
+ ### Instagram
116
+
117
+ **Best for:** Visual brands, lifestyle, e-commerce, younger demographics
118
+ **Audience:** 18-44, visual-first consumers
119
+ **Posting frequency:** 1-2 feed posts per day, 3-10 Stories per day
120
+ **Best times:** 11am-1pm, 7-9pm
121
+
122
+ **What works:**
123
+
124
+ - High-quality visuals
125
+ - Behind-the-scenes Stories
126
+ - Reels (short-form video)
127
+ - Carousels with value
128
+ - User-generated content
129
+ - Interactive Stories (polls, questions)
130
+
131
+ **What doesn't:**
132
+
133
+ - Low-quality images
134
+ - Too much text in images
135
+ - Ignoring Stories and Reels
136
+ - Only promotional content
137
+
138
+ **Format tips:**
139
+
140
+ - Reels get 2x reach of static posts
141
+ - First frame of Reels must hook
142
+ - Carousels: 10 slides with educational content
143
+ - Use all Story features (polls, links, etc.)
144
+
145
+ ### TikTok
146
+
147
+ **Best for:** Brand awareness, younger audiences, viral potential
148
+ **Audience:** 16-34, entertainment-focused
149
+ **Posting frequency:** 1-4x per day
150
+ **Best times:** 7-9am, 12-3pm, 7-11pm
151
+
152
+ **What works:**
153
+
154
+ - Native, unpolished content
155
+ - Trending sounds and formats
156
+ - Educational content in entertaining wrapper
157
+ - POV and day-in-the-life content
158
+ - Responding to comments with videos
159
+ - Duets and stitches
160
+
161
+ **What doesn't:**
162
+
163
+ - Overly produced content
164
+ - Ignoring trends
165
+ - Hard selling
166
+ - Repurposed horizontal video
167
+
168
+ **Format tips:**
169
+
170
+ - Hook in first 1-2 seconds
171
+ - Keep it under 30 seconds to start
172
+ - Vertical only (9:16)
173
+ - Use trending sounds
174
+ - Post consistently to train algorithm
175
+
176
+ ### Facebook
177
+
178
+ **Best for:** Communities, local businesses, older demographics, groups
179
+ **Audience:** 25-55+, community-oriented
180
+ **Posting frequency:** 1-2x per day
181
+ **Best times:** 1-4pm weekdays
182
+
183
+ **What works:**
184
+
185
+ - Facebook Groups (community)
186
+ - Native video
187
+ - Live video
188
+ - Local content and events
189
+ - Discussion-prompting questions
190
+
191
+ **What doesn't:**
192
+
193
+ - Links to external sites (reach killer)
194
+ - Pure promotional content
195
+ - Ignoring comments
196
+ - Cross-posting from other platforms without adaptation
197
+
198
+ ---
199
+
200
+ ## Content Pillars Framework
201
+
202
+ Build your content around 3-5 pillars that align with your expertise and audience interests.
203
+
204
+ ### Example for a SaaS Founder
205
+
206
+ | Pillar | % of Content | Topics |
207
+ | ----------------- | ------------ | ------------------------------------- |
208
+ | Industry insights | 30% | Trends, data, predictions |
209
+ | Behind-the-scenes | 25% | Building the company, lessons learned |
210
+ | Educational | 25% | How-tos, frameworks, tips |
211
+ | Personal | 15% | Stories, values, hot takes |
212
+ | Promotional | 5% | Product updates, offers |
213
+
214
+ ### Pillar Development Questions
215
+
216
+ For each pillar, ask:
217
+
218
+ 1. What unique perspective do you have?
219
+ 2. What questions does your audience ask?
220
+ 3. What content has performed well before?
221
+ 4. What can you create consistently?
222
+ 5. What aligns with business goals?
223
+
224
+ ---
225
+
226
+ ## Post Formats & Templates
227
+
228
+ ### LinkedIn Post Templates
229
+
230
+ **The Story Post:**
231
+
232
+ ```
233
+ [Hook: Unexpected outcome or lesson]
234
+
235
+ [Set the scene: When/where this happened]
236
+
237
+ [The challenge you faced]
238
+
239
+ [What you tried / what happened]
240
+
241
+ [The turning point]
242
+
243
+ [The result]
244
+
245
+ [The lesson for readers]
246
+
247
+ [Question to prompt engagement]
248
+ ```
249
+
250
+ **The Contrarian Take:**
251
+
252
+ ```
253
+ [Unpopular opinion stated boldly]
254
+
255
+ Here's why:
256
+
257
+ [Reason 1]
258
+ [Reason 2]
259
+ [Reason 3]
260
+
261
+ [What you recommend instead]
262
+
263
+ [Invite discussion: "Am I wrong?"]
264
+ ```
265
+
266
+ **The List Post:**
267
+
268
+ ```
269
+ [X things I learned about [topic] after [credibility builder]:
270
+
271
+ 1. [Point] — [Brief explanation]
272
+
273
+ 2. [Point] — [Brief explanation]
274
+
275
+ 3. [Point] — [Brief explanation]
276
+
277
+ [Wrap-up insight]
278
+
279
+ Which resonates most with you?
280
+ ```
281
+
282
+ **The How-To:**
283
+
284
+ ```
285
+ How to [achieve outcome] in [timeframe]:
286
+
287
+ Step 1: [Action]
288
+ ↳ [Why this matters]
289
+
290
+ Step 2: [Action]
291
+ ↳ [Key detail]
292
+
293
+ Step 3: [Action]
294
+ ↳ [Common mistake to avoid]
295
+
296
+ [Result you can expect]
297
+
298
+ [CTA or question]
299
+ ```
300
+
301
+ ### Twitter/X Thread Templates
302
+
303
+ **The Tutorial Thread:**
304
+
305
+ ```
306
+ Tweet 1: [Hook + promise of value]
307
+
308
+ "Here's exactly how to [outcome] (step-by-step):"
309
+
310
+ Tweet 2-7: [One step per tweet with details]
311
+
312
+ Final tweet: [Summary + CTA]
313
+
314
+ "If this was helpful, follow me for more on [topic]"
315
+ ```
316
+
317
+ **The Story Thread:**
318
+
319
+ ```
320
+ Tweet 1: [Intriguing hook]
321
+
322
+ "[Time] ago, [unexpected thing happened]. Here's the full story:"
323
+
324
+ Tweet 2-6: [Story beats, building tension]
325
+
326
+ Tweet 7: [Resolution and lesson]
327
+
328
+ Final tweet: [Takeaway + engagement ask]
329
+ ```
330
+
331
+ **The Breakdown Thread:**
332
+
333
+ ```
334
+ Tweet 1: [Company/person] just [did thing].
335
+
336
+ Here's why it's genius (and what you can learn):
337
+
338
+ Tweet 2-6: [Analysis points]
339
+
340
+ Tweet 7: [Your key takeaway]
341
+
342
+ "[Related insight + follow CTA]"
343
+ ```
344
+
345
+ ### Instagram Caption Templates
346
+
347
+ **The Carousel Hook:**
348
+
349
+ ```
350
+ [Slide 1: Bold statement or question]
351
+ [Slides 2-9: One point per slide, visual + text]
352
+ [Slide 10: Summary + CTA]
353
+
354
+ Caption: [Expand on the topic, add context, include CTA]
355
+ ```
356
+
357
+ **The Reel Script:**
358
+
359
+ ```
360
+ Hook (0-2 sec): [Pattern interrupt or bold claim]
361
+ Setup (2-5 sec): [Context for the tip]
362
+ Value (5-25 sec): [The actual advice/content]
363
+ CTA (25-30 sec): [Follow, comment, share, link]
364
+ ```
365
+
366
+ ---
367
+
368
+ ## Hook Formulas
369
+
370
+ The first line determines whether anyone reads the rest. Use these patterns:
371
+
372
+ ### Curiosity Hooks
373
+
374
+ - "I was wrong about [common belief]."
375
+ - "The real reason [outcome] happens isn't what you think."
376
+ - "[Impressive result] — and it only took [surprisingly short time]."
377
+ - "Nobody talks about [insider knowledge]."
378
+
379
+ ### Story Hooks
380
+
381
+ - "Last week, [unexpected thing] happened."
382
+ - "I almost [big mistake/failure]."
383
+ - "3 years ago, I [past state]. Today, [current state]."
384
+ - "[Person] told me something I'll never forget."
385
+
386
+ ### Value Hooks
387
+
388
+ - "How to [desirable outcome] (without [common pain]):"
389
+ - "[Number] [things] that [outcome]:"
390
+ - "The simplest way to [outcome]:"
391
+ - "Stop [common mistake]. Do this instead:"
392
+
393
+ ### Contrarian Hooks
394
+
395
+ - "Unpopular opinion: [bold statement]"
396
+ - "[Common advice] is wrong. Here's why:"
397
+ - "I stopped [common practice] and [positive result]."
398
+ - "Everyone says [X]. The truth is [Y]."
399
+
400
+ ### Social Proof Hooks
401
+
402
+ - "We [achieved result] in [timeframe]. Here's how:"
403
+ - "[Number] people asked me about [topic]. Here's my answer:"
404
+ - "[Authority figure] taught me [lesson]."
405
+
406
+ ---
407
+
408
+ ## Content Repurposing System
409
+
410
+ Turn one piece of content into many:
411
+
412
+ ### Blog Post → Social Content
413
+
414
+ | Original | Platform | Format |
415
+ | --------- | --------- | ------------------------------ |
416
+ | Blog post | LinkedIn | Key insight + link in comments |
417
+ | Blog post | LinkedIn | Carousel of main points |
418
+ | Blog post | Twitter/X | Thread of key takeaways |
419
+ | Blog post | Twitter/X | Single tweet with hot take |
420
+ | Blog post | Instagram | Carousel with visuals |
421
+ | Blog post | Instagram | Reel summarizing the post |
422
+
423
+ ### Podcast/Video → Social Content
424
+
425
+ | Original | Platform | Format |
426
+ | --------- | --------- | ------------------------ |
427
+ | Interview | LinkedIn | Quote graphic + insight |
428
+ | Interview | Twitter/X | Thread of best quotes |
429
+ | Interview | Instagram | Clip as Reel |
430
+ | Interview | TikTok | Short clip with caption |
431
+ | Interview | YouTube | Shorts from best moments |
432
+
433
+ ### Repurposing Workflow
434
+
435
+ 1. **Create pillar content** (blog, video, podcast)
436
+ 2. **Extract key insights** (3-5 per piece)
437
+ 3. **Adapt to each platform** (format and tone)
438
+ 4. **Schedule across the week** (spread distribution)
439
+ 5. **Update and reshare** (evergreen content can repeat)
440
+
441
+ ---
442
+
443
+ ## Content Calendar Structure
444
+
445
+ ### Weekly Planning Template
446
+
447
+ | Day | LinkedIn | Twitter/X | Instagram |
448
+ | --- | ---------------- | ---------- | ------------- |
449
+ | Mon | Industry insight | Thread | Carousel |
450
+ | Tue | Behind-scenes | Engagement | Story |
451
+ | Wed | Educational | Tips tweet | Reel |
452
+ | Thu | Story post | Thread | Educational |
453
+ | Fri | Hot take | Engagement | Story |
454
+ | Sat | — | Curated RT | User content |
455
+ | Sun | — | Personal | Behind-scenes |
456
+
457
+ ### Monthly Content Mix
458
+
459
+ - Week 1: Launch/announce something (if applicable)
460
+ - Week 2: Educational deep-dive
461
+ - Week 3: Community/engagement focus
462
+ - Week 4: Story/behind-the-scenes
463
+
464
+ ### Batching Strategy
465
+
466
+ **Weekly batching (2-3 hours):**
467
+
468
+ 1. Review content pillar topics
469
+ 2. Write 5 LinkedIn posts
470
+ 3. Write 3 Twitter threads + daily tweets
471
+ 4. Create Instagram carousel + Reel ideas
472
+ 5. Schedule everything
473
+ 6. Leave room for real-time engagement
474
+
475
+ ---
476
+
477
+ ## Engagement Strategy
478
+
479
+ ### Proactive Engagement
480
+
481
+ Engagement isn't just responding—it's actively participating:
482
+
483
+ **Daily engagement routine (30 min):**
484
+
485
+ 1. Respond to all comments on your posts (5 min)
486
+ 2. Comment on 5-10 posts from target accounts (15 min)
487
+ 3. Share/repost with added insight (5 min)
488
+ 4. Send 2-3 DMs to new connections (5 min)
489
+
490
+ **Quality comments:**
491
+
492
+ - Add new insight, not just "Great post!"
493
+ - Share a related experience
494
+ - Ask a thoughtful follow-up question
495
+ - Respectfully disagree with nuance
496
+
497
+ ### Building Relationships
498
+
499
+ - Identify 20-50 accounts in your space
500
+ - Consistently engage with their content
501
+ - Share their content with credit
502
+ - Eventually collaborate (podcasts, co-created content)
503
+
504
+ ### Handling Negative Comments
505
+
506
+ - Respond calmly and professionally
507
+ - Don't get defensive
508
+ - Take legitimate criticism offline
509
+ - Block/mute trolls without engaging
510
+ - Let community defend you when appropriate
511
+
512
+ ---
513
+
514
+ ## Analytics & Optimization
515
+
516
+ ### Metrics That Matter
517
+
518
+ **Awareness:**
519
+
520
+ - Impressions
521
+ - Reach
522
+ - Follower growth rate
523
+
524
+ **Engagement:**
525
+
526
+ - Engagement rate (engagements / impressions)
527
+ - Comments (higher value than likes)
528
+ - Shares/reposts
529
+ - Saves (Instagram)
530
+
531
+ **Conversion:**
532
+
533
+ - Link clicks
534
+ - Profile visits
535
+ - DMs received
536
+ - Leads/conversions attributed
537
+
538
+ ### What to Track Weekly
539
+
540
+ - [ ] Top 3 performing posts (why did they work?)
541
+ - [ ] Bottom 3 posts (what can you learn?)
542
+ - [ ] Follower growth trend
543
+ - [ ] Engagement rate trend
544
+ - [ ] Best posting times (from data)
545
+ - [ ] Content pillar performance
546
+
547
+ ### Optimization Actions
548
+
549
+ **If engagement is low:**
550
+
551
+ - Test new hooks
552
+ - Post at different times
553
+ - Try different formats (carousel vs. text)
554
+ - Increase native engagement with others
555
+ - Check if content matches audience interest
556
+
557
+ **If reach is declining:**
558
+
559
+ - Avoid external links in post body
560
+ - Increase posting frequency slightly
561
+ - Engage more in comments
562
+ - Test video/visual content
563
+ - Check for algorithm changes
564
+
565
+ ---
566
+
567
+ ## Platform-Specific Tips
568
+
569
+ ### LinkedIn Algorithm Tips
570
+
571
+ - First hour engagement matters most
572
+ - Comments > reactions > clicks
573
+ - Dwell time (people reading) signals quality
574
+ - No external links in post body
575
+ - Document posts (carousels) get strong reach
576
+ - Polls drive engagement but don't build authority
577
+
578
+ ### Twitter/X Algorithm Tips
579
+
580
+ - Replies and quote tweets build authority
581
+ - Threads keep people on platform (rewarded)
582
+ - Images and video get more reach
583
+ - Engagement in first 30 min matters
584
+ - Twitter Blue/Premium may boost reach
585
+
586
+ ### Instagram Algorithm Tips
587
+
588
+ - Reels heavily prioritized over static posts
589
+ - Saves and shares > likes
590
+ - Stories keep you top of feed
591
+ - Consistency matters more than perfection
592
+ - Use all features (polls, questions, etc.)
593
+
594
+ ---
595
+
596
+ ## Content Ideas by Situation
597
+
598
+ ### When You're Starting Out
599
+
600
+ - Document your journey
601
+ - Share what you're learning
602
+ - Curate and comment on industry content
603
+ - Ask questions to your audience
604
+ - Engage heavily with established accounts
605
+
606
+ ### When You're Established
607
+
608
+ - Share original data and insights
609
+ - Tell customer success stories
610
+ - Take stronger positions
611
+ - Create signature frameworks
612
+ - Collaborate with peers
613
+
614
+ ### When You're Stuck
615
+
616
+ - Repurpose old high-performing content
617
+ - Ask your audience what they want
618
+ - Comment on industry news
619
+ - Share a failure or lesson learned
620
+ - Interview someone and share insights
621
+
622
+ ---
623
+
624
+ ## Scheduling Best Practices
625
+
626
+ ### When to Schedule vs. Post Live
627
+
628
+ **Schedule:**
629
+
630
+ - Core content posts
631
+ - Threads
632
+ - Carousels
633
+ - Evergreen content
634
+
635
+ **Post live:**
636
+
637
+ - Real-time commentary
638
+ - Responses to news/trends
639
+ - Engagement with others
640
+ - Anything requiring immediate interaction
641
+
642
+ ### Queue Management
643
+
644
+ - Maintain 1-2 weeks of scheduled content
645
+ - Review queue weekly for relevance
646
+ - Leave gaps for spontaneous posts
647
+ - Adjust timing based on performance data
648
+
649
+ ---
650
+
651
+ ## Reverse Engineering Viral Content
652
+
653
+ Instead of guessing what works, systematically analyze top-performing content in your niche and extract proven patterns.
654
+
655
+ ### The 6-Step Framework
656
+
657
+ #### 1. NICHE ID — Find Top Creators
658
+
659
+ Identify 10-20 creators in your space who consistently get high engagement:
660
+
661
+ **Selection criteria:**
662
+
663
+ - Posting consistently (3+ times/week)
664
+ - High engagement rate relative to follower count
665
+ - Audience overlap with your target market
666
+ - Mix of established and rising creators
667
+
668
+ **Where to find them:**
669
+
670
+ - LinkedIn: Search by industry keywords, check "People also viewed"
671
+ - Twitter/X: Check who your target audience follows and engages with
672
+ - Use tools like SparkToro, Followerwonk, or manual research
673
+ - Look at who gets featured in industry newsletters
674
+
675
+ #### 2. SCRAPE — Collect Posts at Scale
676
+
677
+ Gather 500-1000+ posts from your identified creators for analysis:
678
+
679
+ **Tools:**
680
+
681
+ - **Apify** — LinkedIn scraper, Twitter scraper actors
682
+ - **Phantom Buster** — Multi-platform automation
683
+ - **Export tools** — Platform-specific export features
684
+ - **Manual collection** — For smaller datasets, copy/paste into spreadsheet
685
+
686
+ **Data to collect:**
687
+
688
+ - Post text/content
689
+ - Engagement metrics (likes, comments, shares, saves)
690
+ - Post format (text-only, carousel, video, image)
691
+ - Posting time/day
692
+ - Hook/first line
693
+ - CTA used
694
+ - Topic/theme
695
+
696
+ #### 3. ANALYZE — Extract What Actually Works
697
+
698
+ Sort and analyze the data to find patterns:
699
+
700
+ **Quantitative analysis:**
701
+
702
+ - Rank posts by engagement rate
703
+ - Identify top 10% performers
704
+ - Look for format patterns (do carousels outperform?)
705
+ - Check timing patterns (best days/times)
706
+ - Compare topic performance
707
+
708
+ **Qualitative analysis:**
709
+
710
+ - What hooks do top posts use?
711
+ - How long are high-performing posts?
712
+ - What emotional triggers appear?
713
+ - What formats repeat?
714
+ - What topics consistently perform?
715
+
716
+ **Questions to answer:**
717
+
718
+ - What's the average length of top posts?
719
+ - Which hook types appear most in top 10%?
720
+ - What CTAs drive most comments?
721
+ - What topics get saved/shared most?
722
+
723
+ #### 4. PLAYBOOK — Codify Patterns
724
+
725
+ Document repeatable patterns you can use:
726
+
727
+ **Hook patterns to codify:**
728
+
729
+ ```
730
+ Pattern: "I [unexpected action] and [surprising result]"
731
+ Example: "I stopped posting daily and my engagement doubled"
732
+ Why it works: Curiosity gap + contrarian
733
+
734
+ Pattern: "[Specific number] [things] that [outcome]:"
735
+ Example: "7 pricing mistakes that cost me $50K:"
736
+ Why it works: Specificity + loss aversion
737
+
738
+ Pattern: "[Controversial take]"
739
+ Example: "Cold outreach is dead."
740
+ Why it works: Pattern interrupt + invites debate
741
+ ```
742
+
743
+ **Format patterns:**
744
+
745
+ - Carousel: Hook slide → Problem → Solution steps → CTA
746
+ - Thread: Hook → Promise → Deliver → Recap → CTA
747
+ - Story post: Hook → Setup → Conflict → Resolution → Lesson
748
+
749
+ **CTA patterns:**
750
+
751
+ - Question: "What would you add?"
752
+ - Agreement: "Agree or disagree?"
753
+ - Share: "Tag someone who needs this"
754
+ - Save: "Save this for later"
755
+
756
+ #### 5. LAYER VOICE — Apply Direct Response Principles
757
+
758
+ Take proven patterns and make them yours with these voice principles:
759
+
760
+ **"Smart friend who figured something out"**
761
+
762
+ - Write like you're texting advice to a friend
763
+ - Share discoveries, not lectures
764
+ - Use "I found that..." not "You should..."
765
+ - Be helpful, not preachy
766
+
767
+ **Specific > Vague**
768
+
769
+ ```
770
+ ❌ "I made good revenue"
771
+ ✅ "I made $47,329"
772
+
773
+ ❌ "It took a while"
774
+ ✅ "It took 47 days"
775
+
776
+ ❌ "A lot of people"
777
+ ✅ "2,847 people"
778
+ ```
779
+
780
+ **Short. Breathe. Land.**
781
+
782
+ - One idea per sentence
783
+ - Use line breaks liberally
784
+ - Let important points stand alone
785
+ - Create rhythm: short, short, longer explanation
786
+
787
+ ```
788
+ ❌ "I spent three years building my business the wrong way before I finally realized that the key to success was focusing on fewer things and doing them exceptionally well."
789
+
790
+ ✅ "I built wrong for 3 years.
791
+
792
+ Then I figured it out.
793
+
794
+ Focus on less.
795
+ Do it exceptionally well.
796
+
797
+ Everything changed."
798
+ ```
799
+
800
+ **Write from emotion**
801
+
802
+ - Start with how you felt, not what you did
803
+ - Use emotional words: frustrated, excited, terrified, obsessed
804
+ - Show vulnerability when authentic
805
+ - Connect the feeling to the lesson
806
+
807
+ ```
808
+ ❌ "Here's what I learned about pricing"
809
+
810
+ ✅ "I was terrified to raise my prices.
811
+
812
+ My hands were shaking when I sent the email.
813
+
814
+ Here's what happened..."
815
+ ```
816
+
817
+ #### 6. CONVERT — Turn Attention into Action
818
+
819
+ Bridge from engagement to business results:
820
+
821
+ **Soft conversions:**
822
+
823
+ - Newsletter signups in bio/comments
824
+ - Free resource offers in follow-up comments
825
+ - DM triggers ("Comment X and I'll send you...")
826
+ - Profile visits → optimized profile with clear CTA
827
+
828
+ **Direct conversions:**
829
+
830
+ - Link in comments (not post body on LinkedIn)
831
+ - Contextual product mentions within valuable content
832
+ - Case study posts that naturally showcase your work
833
+ - "If you want help with this, DM me" (sparingly)
834
+
835
+ ### Output: Proven Patterns + Right Voice = Performance
836
+
837
+ The formula:
838
+
839
+ ```
840
+ 1. Find what's already working (don't guess)
841
+ 2. Extract the patterns (hooks, formats, CTAs)
842
+ 3. Layer your authentic voice on top
843
+ 4. Test and iterate based on your own data
844
+ ```
845
+
846
+ ### Reverse Engineering Checklist
847
+
848
+ - [ ] Identified 10-20 top creators in niche
849
+ - [ ] Collected 500+ posts for analysis
850
+ - [ ] Ranked by engagement rate
851
+ - [ ] Documented top 10 hook patterns
852
+ - [ ] Documented top 5 format patterns
853
+ - [ ] Documented top 5 CTA patterns
854
+ - [ ] Created voice guidelines (specificity, brevity, emotion)
855
+ - [ ] Built template library from patterns
856
+ - [ ] Set up tracking for your own content performance
857
+
858
+ ---
859
+
860
+ ## Questions to Ask
861
+
862
+ If you need more context:
863
+
864
+ 1. What platform(s) are you focusing on?
865
+ 2. What's your current posting frequency?
866
+ 3. Do you have existing content to repurpose?
867
+ 4. What content has performed well in the past?
868
+ 5. How much time can you dedicate weekly?
869
+ 6. Are you building personal brand, company brand, or both?
870
+
871
+ ---
872
+
873
+ ## Related Skills
874
+
875
+ - **copywriting**: For longer-form content that feeds social
876
+ - **launch-strategy**: For coordinating social with launches
877
+ - **email-sequence**: For nurturing social audience via email
878
+ - **marketing-psychology**: For understanding what drives engagement