Token导航 LogoToken导航TokenDH.com
研究检索敏感数据unknown未标认证来源可访问许可证需确认审计未展示

content-factory内容工厂

Agent Skill

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

总安装

275

周安装

11

下载量

89
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:content-factory(内容工厂)
来源仓库:https://skills.volces.com
仓库路径:content-factory
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

content-factory 用于标准化批量生产内容初稿。

  • 适合在 Local Agent 中快速生成 FAQ、教程、公告等模板化文本。
  • 支持变量替换与批量定制,但个性化表达仍需人工介入。
  • 安装前应评估其对系统资源的占用情况。content-factory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输出结果需经过事实核对与风格统一才能正式发布。

SKILL.md

Content Factory

All-in-one YouTube content generator. Create regular videos, Shorts from scratch, and convert long videos into Shorts. Combines the best of youtube-factory and AI-Youtube-Shorts-Generator with 100% free tools.

Three powerful modes in one skill:

  1. Regular Video Mode - Generate complete YouTube videos from prompts
  2. Shorts from Scratch - Create vertical Shorts from text prompts
  3. Shorts from Long - Convert long videos into engaging Shorts
Love this skill? Support the creator! ![Buy Me a Coffee](https://buymeacoffee.com/mayank8290) ![Tip in Crypto](https://tip.md/oyi77)

What This Skill Does

🎬 Regular Video Mode

Turn any topic into a publish-ready YouTube video:

  • Script Generation - Uses your LLM to write engaging scripts
  • Voiceover - Free Microsoft Edge TTS (natural-sounding voices)
  • Stock Footage - Auto-fetches relevant B-roll from Pexels (free)
  • Video Assembly - FFmpeg combines everything seamlessly
  • Captions - Styled subtitles burned into video
  • Thumbnail - Auto-generated clickable thumbnail

📱 Shorts from Long Mode

Convert long videos (YouTube or local) into viral Shorts:

  • Smart Download - Supports YouTube URLs via yt-dlp
  • AI Transcription - Whisper for accurate speech-to-text (optional)
  • Highlight Detection - AI finds the most engaging segments
  • Vertical Cropping - Intelligent 9:16 crop focused on center
  • Caption Extraction - Extracts text from highlighted segment
  • Multiple Sessions - Running concurrently without conflicts

⚡ Shorts from Scratch Mode

Create viral Shorts from text prompts:

  • Short Scripts - Optimized for 60-second format
  • Snap Voiceover - Quick TTS generation
  • Vertical Stock - Pexels videos pre-cropped for Shorts

Quick Start

Regular Video

Create a YouTube video about "5 Morning Habits of Successful People"

Shorts from Long Video

Convert this YouTube video to Shorts: https://youtu.be/VIDEO_ID

Shorts from Scratch

Make a YouTube Short about "surprising facts about coffee"

Commands

Generate Regular Video

/content-factory [topic]

Creates complete YouTube video with all elements.

Generate Shorts from Long

/content-factory "https://youtu.be/VIDEO_ID" --shorts
/content-factory "/path/to/video.mp4" --shorts

Converts long video to vertical Shorts.

Generate Shorts from Scratch

/content-factory [topic] --shorts

Creates Shorts from text prompt.

Custom Options

/content-factory [topic] --style documentary --length 10
/content-factory [topic] --voice en-US-JennyNeural
/content-factory --shorts --duration 45

Video Styles

  • documentary - Serious, informative (default)
  • listicle - "Top 10" format with clear sections
  • tutorial - Step-by-step instructional
  • casual - Friendly, conversational tone

TTS Voices

Free Microsoft Edge TTS voices:

  • en-US-ChristopherNeural - Male, professional (default)
  • en-US-JennyNeural - Female, friendly
  • en-US-GuyNeural - Male, casual
  • en-US-AriaNeural - Female, news anchor
  • en-GB-SoniaNeural - British female
  • en-AU-NatashaNeural - Australian female

Output Files

Regular Videos

After generation, you'll find in ~/Videos/OpenClaw/:

your-video-title/
├── script.md          # The full script
├── voiceover.mp3      # Audio track
├── video_raw.mp4      # Without captions
├── video_final.mp4    # With captions (upload this!)
├── thumbnail.jpg      # YouTube thumbnail
└── metadata.json      # Title, description, tags

Shorts

video-title/
├── source.mp4         # Original long video
├── audio.wav          # Extracted audio
├── video_short_cropped.mp4  # Extracted segment
├── video_short.mp4    # Final vertical short
└── captions.txt       # Captions for the short

Requirements

Basic (All Modes)

  • FFmpeg installed (brew install ffmpeg or apt install ffmpeg)
  • Edge TTS (pip install edge-tts)

Regular Videos

Shorts from Long (Optional AI Features)

  • OpenAI Whisper for transcription (pip install openai-whisper)
  • yt-dlp for YouTube downloads (pip install yt-dlp)

Setup

Install Dependencies

macOS:

brew install ffmpeg
pip install edge-tts pillow python-dotenv requests

Linux (Ubuntu/Debian):

sudo apt install ffmpeg
pip install edge-tts pillow python-dotenv requests

Windows:

# Install FFmpeg from https://ffmpeg.org/download.html
pip install edge-tts pillow python-dotenv requests

Optional: AI Features

pip install openai-whisper yt-dlp

Configure API Keys

Create config directory:

mkdir -p ~/.openclaw-content-factory

Add Pexels API key:

echo "PEXELS_API_KEY=your_key" >> ~/.openclaw-content-factory/config.env

Optional: OpenAI API key (for advanced features):

echo "OPENAI_API_KEY=your_key" >> ~/.openclaw-content-factory/config.env

Optional: Configure defaults:

echo "DEFAULT_VOICE=en-US-ChristopherNeural" >> ~/.openclaw-content-factory/config.env
echo "WHISPER_MODEL=base" >> ~/.openclaw-content-factory/config.env

Features

✨ Regular Video Mode

  • 100% free stock footage from Pexels
  • Natural-sounding voiceover with edge-tts
  • Professional captions burned into video
  • Auto-generated thumbnails
  • Metadata for YouTube upload

🚀 Shorts from Long Mode

  • YouTube video download support
  • Local video file support
  • Whisper AI transcription (optional)
  • Smart highlight detection
  • Intelligent vertical cropping
  • Fast processing (< 2 minutes for 5 min video)
  • Concurrent execution support

⚡ Shorts from Scratch Mode

  • Quick script generation
  • Snap TTS processing
  • Vertical stock footage
  • Optimized for 60-second format

Monetization

MethodPotential
Fiverr/Upwork service$200-500/video
Monthly retainer$1,500-3,000/client
Your own channels$2,000-10,000/mo AdSense
Sell this skill$50-150 on ClawHub
Shorts agency$100-300/short

Video Ideas

  • Faceless Finance Channel - "The Psychology of Money"
  • Tech Tutorials - "How to Start Coding with AI"
  • Productivity - "5 Morning Habits of Success"
  • Viral Shorts - "Coffee facts you didn't know"
  • Educational - "History of Your City"

Examples

Regular Video

Create a 10-minute YouTube video about "The Psychology of Money"
Style: Documentary
Include 5 key lessons
Professional male voice

Shorts from Long

Convert this video to Shorts:
https://youtu.be/dQw4w9WgXcQ
Highlight duration: 60 seconds

Shorts from Scratch

Make a YouTube Short about a surprising fact about sleep
Style: Casual
Female voice

Tutorial Content

Generate a tutorial video:
Topic: How to Start Investing with $100
Length: 12 minutes
Style: Tutorial with clear steps
Voice: Friendly female

Architecture

This skill combines two powerful tools:

  1. youtube-factory - For regular video generation
  2. AI-Youtube-Shorts-Generator - For long video to Shorts conversion

Mode Decision Logic

Input → Check source type
  ├─ YouTube URL OR local file → Shorts from Long mode
  ├─ --shorts flag → Shorts from Scratch mode
  └─ Otherwise → Regular Video mode

Troubleshooting

No Stock Footage

Ensure Pexels API key is set:

cat ~/.openclaw-content-factory/config.env

Whisper Not Found

Install Whisper:

pip install openai-whisper

YouTube Download Fails

Install yt-dlp:

pip install yt-dlp

FFmpeg Not Found

Install FFmpeg:

# macOS
brew install ffmpeg

# Ubuntu/Debian
sudo apt install ffmpeg

# Windows
# Download from https://ffmpeg.org/download.html

Performance Optimization

For Faster Processing

  • Use WHISPER_MODEL=base instead of large
  • Set shorter highlight durations
  • Use SSD for temporary files

For Better Quality

  • Use WHISPER_MODEL=medium or large
  • Higher resolution stock footage
  • Professional voiceover from your own studio

Support This Project

If this skill saved you time or made you money, consider supporting your friendly AI assistant!

Buy Me a Coffee

Tip in Crypto

Every coffee or crypto tip helps me build more free tools for the OpenClaw community.

License

MIT License - Feel free to use, modify, and distribute!


Built for OpenClaw | 100% Free Tools | Support the Creator

Made with ❤️ by the OpenClaw community

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

78.27%
按下载量换算70

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills