Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

ai-content-repurposer-proAI 内容重用器专业版

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

6,414

周安装

262

GitHub Stars

公开资料未说明

下载量

2,054
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-content-repurposer-pro(AI 内容重用器专业版)
来源仓库:https://github.com/lvjunjie-byte/ai-content-repurposer-pro
安装命令:
openclaw skills install ai-content-repurposer-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ai-content-repurposer-pro

简介

将长视频、博客和播客转换为社交媒体脚本与摘要。

  • 适合在 OpenClaw 中做内容跨平台分发时使用。
  • 通过 clawhub 安装,需确认输入格式和输出平台要求。
  • 建议保留原文关键信息,避免过度压缩失真。
  • 注意是否会触发文件读写或网络请求。ai-content-repurposer-pro 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AI Content Repurposer Skill

Transform long-form content into multiple formats instantly. Repurpose YouTube videos, blog posts, and podcasts into platform-optimized content.

Description

AI Content Repurposer is a powerful content transformation tool that helps creators, marketers, and businesses maximize their content ROI by automatically converting long-form content into multiple platform-specific formats.

Key Features

  • 🎬 YouTube → TikTok/Shorts/Reels: Transform video transcripts into engaging short-form scripts with hooks, visual cues, and CTAs
  • 📝 Blog → Twitter Threads: Convert articles into viral Twitter threads with proper formatting and engagement hooks
  • 💼 Blog → LinkedIn Posts: Create professional LinkedIn posts with thought-leadership tone and engagement questions
  • 🎙️ Podcast → Transcripts: Format raw transcripts with chapters, timestamps, and speaker labels
  • 📊 Podcast → Summaries: Generate episode summaries, key takeaways, and shareable quote cards
  • 🔄 Batch Processing: Process multiple content pieces at once with configurable output formats

Installation

# Install via ClawHub (recommended)
clawhub install ai-content-repurposer

# Or install manually
npm install -g ai-content-repurposer

Usage

Basic Commands

# Convert YouTube video to TikTok script
ai-content-repurposer youtube-to-shorts transcript.txt -p tiktok -o output.json

# Convert blog post to Twitter thread
ai-content-repurposer blog-to-twitter https://example.com/blog-post -n 10 -o thread.json

# Convert blog to LinkedIn post
ai-content-repurposer blog-to-linkedin article.txt -t thought-leadership

# Format podcast transcript
ai-content-repurposer podcast-to-transcript episode.txt --speakers -o formatted.json

# Generate podcast summary and quotes
ai-content-repurposer podcast-to-summary episode.txt -o summary.json

# Batch process multiple content pieces
ai-content-repurposer batch config.json -o ./output

# Interactive mode
ai-content-repurposer interactive

Command Options

youtube-to-shorts

Usage: ai-content-repurposer youtube-to-shorts [options] <transcript>

Arguments:
  transcript                 Path to transcript file or text

Options:
  -p, --platform <platform>  Target platform: tiktok, shorts, reels (default: "tiktok")
  -o, --output <file>        Output file path
  -h, --help                 Display help

blog-to-twitter

Usage: ai-content-repurposer blog-to-twitter [options] <url-or-file>

Arguments:
  url-or-file               Blog URL or file path

Options:
  -n, --tweets <number>     Number of tweets (default: "7")
  -o, --output <file>       Output file path
  -h, --help                Display help

blog-to-linkedin

Usage: ai-content-repurposer blog-to-linkedin [options] <url-or-file>

Arguments:
  url-or-file               Blog URL or file path

Options:
  -t, --tone <tone>         Tone: thought-leadership, educational, story (default: "thought-leadership")
  -o, --output <file>       Output file path
  -h, --help                Display help

podcast-to-transcript

Usage: ai-content-repurposer podcast-to-transcript [options] <transcript>

Arguments:
  transcript                Path to transcript file

Options:
  --no-timestamps           Disable timestamps
  --speakers                Add speaker labels
  -o, --output <file>       Output file path
  -h, --help                Display help

podcast-to-summary

Usage: ai-content-repurposer podcast-to-summary [options] <transcript>

Arguments:
  transcript                Path to transcript file

Options:
  -o, --output <file>       Output file path
  -h, --help                Display help

batch

Usage: ai-content-repurposer [options] <config>

Arguments:
  config                    Path to batch config JSON file

Options:
  -o, --output-dir <dir>    Output directory (default: "./output")
  -h, --help                Display help

Configuration

Environment Variables

# OpenAI API Key (required for AI-powered transformations)
export OPENAI_API_KEY=your_api_key_here

# Optional: Custom model
export AI_MODEL=gpt-4-turbo

Batch Config Example

Create a batch-config.json:

{
  "jobs": [
    {
      "name": "video-1-tiktok",
      "type": "youtube-to-shorts",
      "content": "Path to or text of transcript",
      "platform": "tiktok"
    },
    {
      "name": "blog-1-twitter",
      "type": "blog-to-twitter",
      "content": "Blog content text",
      "tweetCount": 8
    },
    {
      "name": "podcast-1-summary",
      "type": "podcast-to-summary",
      "content": "Path to transcript file"
    }
  ]
}

Output Examples

YouTube → TikTok Script

{
  "title": "3 Secrets to Productivity",
  "hook": "Stop working harder. Start working smarter.",
  "body": [
    "Most people focus on time management. Wrong approach.",
    "Energy management is the real game-changer.",
    "Here's the framework that changed everything for me..."
  ],
  "cta": "Follow for more productivity hacks!",
  "hashtags": ["#productivity", "#lifehacks", "#success"],
  "visualCues": [
    "[Show clock spinning]",
    "[Cut to energy graph]",
    "[Text overlay: 'The Framework']"
  ]
}

Blog → Twitter Thread

{
  "threadTitle": "The Complete Guide to Content Repurposing",
  "tweets": [
    {
      "number": 1,
      "text": "🧵 Create once, publish everywhere. Here's how to turn 1 piece of content into 20+ assets (without burning out):"
    },
    {
      "number": 2,
      "text": "1/ Start with long-form content. A blog post, video, or podcast episode. This is your 'pillar' content."
    }
    // ... more tweets
  ],
  "hashtags": ["#contentmarketing", "#socialmedia"]
}

Podcast Summary

{
  "summary": "In this episode, we explore the future of AI and its impact on creative work with industry expert Jane Doe.",
  "takeaways": [
    "AI won't replace creators, but creators using AI will replace those who don't",
    "The best AI tools augment human creativity rather than automate it",
    "Building AI literacy is now as important as digital literacy"
  ],
  "quotes": [
    {
      "text": "AI is not the enemy of creativity. It's the amplifier.",
      "timestamp": "12:34",
      "speaker": "Jane Doe"
    }
  ],
  "socialPosts": [
    {
      "platform": "twitter",
      "content": "🎙️ New episode alert! We're diving deep into AI + creativity with @JaneDoe..."
    }
  ]
}

API Integration

Use the converter directly in your Node.js applications:

const ContentConverter = require('ai-content-repurposer');

const converter = new ContentConverter({
  apiKey: 'your-openai-api-key',
  model: 'gpt-4'
});

// YouTube to TikTok
const tiktokScript = await converter.youtubeToShortForm(transcript, 'tiktok');

// Blog to Twitter
const twitterThread = await converter.blogToTwitterThread(blogContent, 8);

// Podcast summary
const podcastSummary = await converter.podcastToSummary(transcript);

Use Cases

Content Creators

  • Turn YouTube videos into TikTok, Reels, and Shorts scripts
  • Create promotional social posts from podcast episodes
  • Generate quote cards and highlight reels

Marketing Teams

  • Repurpose blog posts into social media campaigns
  • Create LinkedIn thought-leadership content from whitepapers
  • Generate Twitter threads from case studies

Podcasters

  • Auto-generate episode transcripts with chapters
  • Create show notes and summaries
  • Extract shareable quotes for social media

Agencies

  • Scale content production for multiple clients
  • Maintain consistent brand voice across platforms
  • Reduce content creation time by 80%

Pricing

$79/month - Unlimited transformations

  • ✅ All conversion types
  • ✅ Batch processing
  • ✅ API access
  • ✅ Priority support
  • ✅ Custom templates (coming soon)

Requirements

  • Node.js >= 18.0.0
  • OpenAI API key (for AI-powered features)
  • Internet connection

Limitations

  • YouTube transcript fetching requires manual input (API integration coming soon)
  • AI transformations depend on OpenAI API availability
  • Maximum input size: 10,000 characters per transformation

Roadmap

  • [ ] YouTube Transcript API integration
  • [ ] Custom template support
  • [ ] Multi-language support
  • [ ] Direct social media posting
  • [ ] Analytics and performance tracking
  • [ ] Team collaboration features
  • [ ] White-label options for agencies

Support

  • Documentation: https://clawhub.ai/skills/ai-content-repurposer
  • Issues: https://github.com/openclaw/ai-content-repurposer/issues
  • Email: support@openclaw.ai

License

MIT License - See LICENSE file for details


Created by OpenClaw | Part of the ClawHub Skills Ecosystem

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.56%
按下载量换算1,881

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills