Author: 泥瓦匠 @bysocket
Special thanks to ChenChang @changchen_cc for sharing insights on KOL Marketing and viral content distribution logic during the Workshop. Deeply inspired by his work!
The GitHub open-source repository for the Agent Skill is available here:
https://github.com/JeffLi1993/content-repurposing-skills
Let's walk through a live case study:

Source Article:https://bysocket.com/seo-link-building-conversion-data/
As shown above, it outputs the following two structured results:


Select Post 2, and it immediately suggests visual image options:

Pick an image option, and automatically publish the generated visual + copy!
Content creators know that finishing a 3,000-word post is just the beginning. The real time sink is distribution.
Splitting a long article into short posts for LinkedIn, X, or RED requires tweaking tone, changing structures, drafting hooks, and creating images for every single platform.
Having spent half a year handling manual distribution, I can summarize it in one word: repetitive. Every publish follows the same steps:
80% of the work is strategic repetition, and only 20% requires human judgment.
When building seo-audit-skill, I used a Script + LLM dual architecture where scripts handled deterministic checks and LLM parsed semantics.
But content repurposing is different: there are no APIs to call and no HTML to parse. The core is strategic knowledge. What hook captures attention? How to extract different angles? How to make 3 posts distinct yet complementary?
So the idea here is: Distill strategic knowledge into Prompts, allowing the Agent to execute my methodology.

Give it any long-form content (blogs, whitepapers, case studies, guides), and it outputs 3 differentiated social posts for LinkedIn and X.
Each post includes:
The 3 posts are not rewordings of the same post, but a coordinated campaign package. After post selection, it suggests 3 visual graphic options for instant generation.
Two installation methods:
npx skills add JeffLi1993/content-repurposing-skills --skill long-blog-to-viral-social-posts
/plugin marketplace add JeffLi1993/content-repurposing-skills/plugin install long-blog-to-viral-social-posts
Once installed, simply prompt: Repurpose this post into 3 social posts: https://your-blog-url.com/post. It automatically scrapes, cleans, extracts, and generates the assets.
The biggest difference between this Skill and seo-audit: Zero script code, 100% strategic knowledge distillation.

The logic of seo-audit was "don't let LLM guess what code can verify" - an HTTP request easily verifies if robots.txt exists. But content repurposing has no deterministic checks; it is entirely strategic decision-making.
So what I did was encode my experience from doing hundreds of manual content repurposing runs into an executable workflow:
1️⃣ Content Atom Framework: Long posts shouldn't be summarized, but atomized. I defined 9 Content Atoms (Claims, Data, Insights, Frameworks, Stories, Proof, Quotes, Objections, Resources) for the Agent to extract before drafting.
2️⃣ Combination Strategy: The 3 posts cannot share the same Atom, Hook family, or engagement mechanism, preventing repetitive packaging.
3️⃣ 70/20/10 Scoring Model: Evaluates posts out of 100 points: Attention accounts for 70 (Hook 25 + Claim 15 + Insight 15 + Pattern Interrupt 15), Engagement 20, Conversion 10. Anything below 80 points is automatically revised.
4️⃣ Hook Generation Flow: Generates 5 candidates across different families and scores them based on tension, curiosity gap, conciseness, and ICP relevance.
5️⃣ De-AI Writing Rules: Restructures phrasing using native social media rhythm, avoiding robotic translationese and generic AI buzzwords.
The entire Skill consists of a SKILL.md + 2 reference docs (Hook templates and Platform rules), without script dependencies.
content-repurposing-skills/
└── long-blog-to-viral-social-posts/
├── SKILL.md # Skill definition + 12-step workflow
└── references/
├── hook-templates.md # Hook template library
└── platform-rules.md # Platform rules for LinkedIn / XThis tool was born out of my own content distribution needs. Hope it helps fellow content creators!
If you:
Open source & free. Looking forward to your feedback!
Self-distillation means turning implicit experience into explicit rules, and encoding explicit rules into an executable workflow.

AI cannot replace you in this process. It can execute your strategy, but you must pave the strategy yourself first.
So my advice remains: Do it yourself first until you can teach others, then let AI scale it for you. Hope this tool saves you distribution time so you can focus on writing better content 🚀