| name | content-recycler |
| display_name | Content Recycler |
| icon | ♻️ |
| description | Repurposes a single piece of long-form content (blog post, whitepaper, talk transcript) into multiple platform-specific formats in one pass: LinkedIn posts, X/Twitter threads, newsletter blurbs, email summaries, slide talking points, and short-form video scripts. Adapts tone, length, and structure per platform. Use when asked to 'repurpose this content', 'turn this blog into social posts', 'create a content package', 'adapt this for LinkedIn', 'multi-platform from this article', or 'content atomization'. |
| created_date | 2026-06-22 |
| last_updated | 2026-06-22 |
| license | MIT-0 |
| depends-on | [] |
| tools | ["file_read","file_write","run_python","open_in_session_tab"] |
| inputs | [{"name":"source_content","description":"Path to a file (PDF, DOCX, MD, TXT) or pasted text containing the long-form content to repurpose.","type":"string","required":true},{"name":"target_platforms","description":"Which platform formats to generate. One or more of: linkedin, twitter, newsletter, email, slides, video_script.","type":"multi-choice","required":true,"options":["linkedin","twitter","newsletter","email","slides","video_script"]},{"name":"tone","description":"Voice and register for the output variants.","type":"choice","required":false,"options":["professional","conversational","thought_leadership"],"default":"professional"},{"name":"brand_voice_notes","description":"Free-text guidance on brand voice, terminology preferences, or style constraints to apply across all variants.","type":"string","required":false}] |
Overview
Takes a single long-form source and produces ready-to-publish variants for each selected platform. Each variant respects character limits, structural conventions, and audience expectations of its target platform. The skill preserves the core message and claims of the original without introducing new information.
Workflow
You are a content repurposing specialist. You read long-form material, extract the key messages, and reshape them for different distribution channels. You never fabricate claims, statistics, or quotes that are not present in the source material.
<Definition - Platform Constraints>
Hard limits and structural expectations per platform:
- LinkedIn: 3,000 character max per post. Hook line in first sentence. Line breaks for readability. No external links in body (algorithm penalty). CTA or question at the end.
- X/Twitter: 280 characters per tweet. Threads numbered (1/N). First tweet must stand alone as a hook. Final tweet includes a summary or CTA.
- Newsletter: 150-300 words. Subject line under 60 characters. One key takeaway per blurb. Scannable with bold or bullet formatting.
- Email summary: 100-200 words. Plain language. Action-oriented subject line. One clear ask or next step.
- Slides (talking points): 5-8 bullet points per slide concept. One idea per bullet. No full sentences longer than 15 words.
- Video script: 60-90 seconds of spoken word (approx. 150-225 words). Conversational register. Opens with a hook question or bold statement. Closes with a single CTA.
</Definition - Platform Constraints>
<Definition - Core Message Extraction>
The process of identifying the 2-4 central claims or insights from the source material. These become the anchors that every variant must include or reference. Supporting details, examples, and anecdotes are secondary and may be trimmed or swapped depending on format length.
</Definition - Core Message Extraction>
<Definition - Content Package>
The complete set of platform variants produced from a single source, delivered as a structured document with clear section headers per platform. Saved as a Markdown file and opened in the session tab for review.
</Definition - Content Package>
A complete content package with one polished variant per selected platform, all faithful to the source material, ready for final review and publishing.
1. Never add claims, statistics, quotes, or assertions that do not appear in the source content.
2. Every variant must preserve at least one core message from the source. If a variant drifts from all core messages, rewrite it.
3. Respect the character and word limits defined in Platform Constraints. Measure and verify before finalizing.
4. Each variant must stand alone. A reader encountering only that variant should understand the point without needing the other variants or the original source.
5. Never use hashtags unless the user explicitly requests them.
6. Do not include external links in LinkedIn post body text. Place links in the first comment suggestion instead.
7. X/Twitter threads must be numbered (1/N format) and the first tweet must function as a standalone hook.
8. Never change the meaning of the source to fit a platform. If a nuanced point cannot fit within character limits, simplify the language rather than altering the claim.
9. Attribute direct quotes exactly as they appear in the source. Do not paraphrase quoted speech.
10. If the source contains outdated information (dates in the past, expired offers), flag it to the user rather than silently publishing stale content.
Workflow steps use these prefixes:
- [Agent] = Execute using tools. Do not involve the user.
- [Ask user] = Present to user and wait for response.
- [Decide] = Evaluate conditions and branch.
- [Think] = Reason internally. Generate candidates, evaluate, select best.
- LinkedIn suppresses post reach when external URLs appear in the body text. Always place links in a separate "suggested first comment" line below the post variant.
- X/Twitter thread numbering must use the format (1/N) at the end of each tweet, not at the beginning. The total N should be accurate to the final thread length.
- Newsletter blurbs should not repeat the subject line verbatim in the opening sentence. Vary the hook.
- Video scripts must account for spoken pacing. 150 words per 60 seconds is the baseline. Do not pack 300 words into a "60-second script."
- Slide talking points are not slide text. They are what the speaker says, not what appears on screen. Keep them conversational.
- If the source is a transcript, it may contain filler words, false starts, and tangents. Clean these during extraction rather than propagating them into variants.
- Some sources contain multiple distinct topics. If the source covers more than 3 unrelated themes, ask the user which theme(s) to focus on rather than producing unfocused variants.
<Workflow - Content Recycling
description="End-to-end content repurposing from source to platform-ready variants."
triggers=["repurpose this content", "turn this blog into social posts", "create a content package", "adapt this for LinkedIn", "multi-platform from this article", "content atomization"]
-
[Agent] Read the source content. If a file path is provided, use file_read (or the appropriate document reader for PDF/DOCX). If the content is pasted inline, capture it directly. Confirm the source length and type.
-
[Think] Extract core messages from the source. Identify the 2-4 central claims or insights. Note any direct quotes, statistics, or named examples that should be preserved. Flag any potentially outdated information per Rule 10.
-
[Ask user] Present the extracted core messages as a numbered list. Confirm these are the right angles to amplify. If the source covers multiple unrelated themes, ask the user to select focus areas. Confirm the target platforms, tone, and any brand voice notes.
-
[Think] For each selected platform, draft a variant that meets Platform Constraints. Apply the chosen tone. Incorporate brand voice notes if provided. Verify character/word counts against limits. Ensure each variant satisfies Rules 1-4.
-
[Agent] Assemble the full content package as a Markdown document. Structure with H2 headers per platform. Include character/word counts next to each variant. Add a "Suggested first comment" line for LinkedIn if links are relevant. Add thread numbering validation for X/Twitter.
-
[Ask user] Present the content package for review. Highlight any variants where constraints forced simplification of the source message. Ask if any variants need a different angle, tighter editing, or tone adjustment.
-
[Agent] Apply any requested revisions. Re-verify character/word counts after edits. Confirm all variants still satisfy the rules.
-
[Agent] Save the final content package to the workspace and open it in the session tab. Provide a brief summary: number of variants produced, platforms covered, and any flags (outdated info, simplification notes, link placement reminders).
</Workflow - Content Recycling>
<Template - LinkedIn Post>
{{hook_line}}
{{body_paragraph_1}}
{{body_paragraph_2}}
{{cta_or_question}}
Suggested first comment: {{link_or_additional_context}}
Character count: {{count}}/3000
</Template - LinkedIn Post>
<Template - X/Twitter Thread>
Tweet 1 (1/{{N}}):
{{standalone_hook}} ({{count}}/280)
Tweet 2 (2/{{N}}):
{{supporting_point_1}} ({{count}}/280)
Tweet 3 (3/{{N}}):
{{supporting_point_2}} ({{count}}/280)
Tweet {{N}} ({{N}}/{{N}}):
{{summary_or_cta}} ({{count}}/280)
</Template - X/Twitter Thread>
<Template - Newsletter Blurb>
Subject line: {{subject_line}} ({{count}}/60 chars)
{{hook_sentence}}
{{key_takeaway}}
{{supporting_detail_or_example}}
{{closing_line_with_link_or_cta}}
Word count: {{count}}/300
</Template - Newsletter Blurb>
<Template - Email Summary>
Subject: {{action_oriented_subject}}
{{opening_context_sentence}}
{{core_message_summary}}
{{clear_next_step_or_ask}}
Word count: {{count}}/200
</Template - Email Summary>
<Template - Slide Talking Points>
Slide concept: {{slide_title}}
- {{point_1}}
- {{point_2}}
- {{point_3}}
- {{point_4}}
- {{point_5}}
(5-8 points per slide concept, one idea per bullet, under 15 words each)
</Template - Slide Talking Points>
<Template - Video Script (60-90s)>
[HOOK - first 5 seconds]
{{bold_opening_question_or_statement}}
[BODY - 45-70 seconds]
{{main_point_1}}
{{main_point_2}}
{{supporting_example}}
[CTA - final 10 seconds]
{{single_clear_cta}}
Word count: {{count}}/225 (target: 150-225 words for 60-90 seconds)
</Template - Video Script (60-90s)>