Jump to related tools in the same category or review the original source on GitHub.

Coding Agents & IDEs @mariusfit Updated 6/28/2026 1,060 downloads 1 stars Security: Pass

Oc Content Repurposer OpenClaw Plugin & Skill | ClawHub

Looking to integrate Oc Content Repurposer into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.

What this skill does

Repurpose any blog post or article into multiple social media formats. Input a URL or text, get X/Twitter thread, LinkedIn post, Instagram caption, email snippet, and summary. Use when asked to repurpose content, create social posts from an article, turn a blog into tweets, or generate multi-platform content.

Install

ClawHub CLI
openclaw skills install @mariusfit/oc-content-repurposer
Node.js (npx)
npx clawhub@latest install oc-content-repurposer

Full SKILL.md

Open original
Metadata table.
namedescription
content-repurposerRepurpose any blog post or article into multiple social media formats. Input a URL or text, get X/Twitter thread, LinkedIn post, Instagram caption, email snippet, and summary. Use when asked to repurpose content, create social posts from an article, turn a blog into tweets, or generate multi-platform content.

SKILL.md content below is scrollable.

Content Repurposer

Turn any article or blog post into ready-to-post content for multiple platforms.

Quick Start

# Repurpose from URL — generates all formats
uv run --with beautifulsoup4 python scripts/repurpose.py url "https://example.com/blog-post"

# Repurpose from text file
python scripts/repurpose.py file article.txt

# Generate only specific formats
uv run --with beautifulsoup4 python scripts/repurpose.py url "https://example.com/post" --formats twitter,linkedin

# Output as JSON (for automation)
uv run --with beautifulsoup4 python scripts/repurpose.py url "https://example.com/post" -f json

# Save all outputs to files
uv run --with beautifulsoup4 python scripts/repurpose.py url "https://example.com/post" -o output/

# Repurpose from clipboard/stdin
echo "Your article text here..." | python scripts/repurpose.py stdin

Commands

Command Args Description
url <url> [--formats LIST] [-f FORMAT] [-o DIR] Extract article from URL and repurpose
file <path> [--formats LIST] [-f FORMAT] [-o DIR] Repurpose from text/markdown file
stdin [--formats LIST] [-f FORMAT] Repurpose from piped input

Output Formats

Platform What You Get
Twitter/X Thread of 5-8 tweets, each ≤280 chars, with hooks and hashtags
LinkedIn Professional post (1300 chars), insight-driven, with CTA
Instagram Caption (2200 chars max), storytelling style, 20-30 hashtags
Email Newsletter snippet with subject line, preview text, and body
Summary 3-sentence TL;DR for quick sharing

Examples

From URL

uv run --with beautifulsoup4 python scripts/repurpose.py url "https://blog.example.com/ai-trends-2026"

Only Twitter + LinkedIn

uv run --with beautifulsoup4 python scripts/repurpose.py url "https://example.com/post" --formats twitter,linkedin

Save to directory

uv run --with beautifulsoup4 python scripts/repurpose.py url "https://example.com/post" -o ./social-posts/
# Creates: twitter.txt, linkedin.txt, instagram.txt, email.txt, summary.txt

Notes

  • Uses beautifulsoup4 for URL extraction (optional for file/stdin input)
  • Content extraction focuses on article body (removes nav, sidebar, footer)
  • All generated content is original repurposing, not copy-paste
  • Character limits are enforced per platform
ClawHub Registry URL: https://clawhub.ai/mariusfit/skills/oc-content-repurposer

Related skills

If this matches your use case, these are close alternatives in the same category.