Install
openclaw skills install ai-content-tailor快速将文章智能改写成公众号、小红书、知乎、抖音四个平台适配版本,保持核心观点并符合平台风格要求。
openclaw skills install ai-content-tailor一键将同一篇文章改写成适合不同平台的版本,节省内容创作者的时间。
clawhub install ai-content-tailor
cd ~/.openclaw/workspace/skills/ai-content-tailor
./install.sh
export OPENAI_API_KEY="your-api-key"
# 快速改写
ai-content-tailor repurpose article.md --output ./versions/
# 指定平台
ai-content-tailor repurpose article.md --platforms wechat,xiaohongshu,zhihu,dy
# 预览模式
ai-content-tailor repurpose article.md --preview
# 批量处理
ai-content-tailor batch ./articles/ --output ./repurposed/
| 参数 | 类型 | 必需 | 描述 |
|---|---|---|---|
input | 路径 | 是 | 输入文章(Markdown/Text) |
command | 选项 | 是 | repurpose 或 batch |
--output | 路径 | 否 | 输出目录(默认:当前目录) |
--platforms | 列表 | 否 | 平台列表:wechat,xhs,zhihu,dy(默认:全部) |
--model | 字符串 | 否 | LLM 模型:gpt-4o/gpt-4o-mini(默认:gpt-4o-mini) |
--preview | 布尔 | 否 | 只预览,不保存文件 |
--tone | 选项 | 否 | 语气:professional,casual,storytelling(默认:自动) |
article.md
├── wechat_article.md
├── xhs_post.md
├── zhihu_answer.md
└── dy_script.md
# 改写一篇公众号文章为四个平台版本
ai-content-tailor repurpose my_article.md --output ./all_platforms/
# 只生成小红书和抖音版本
ai-content-tailor repurpose my_article.md --platforms xhs,dy
# 用正式语气改写
ai-content-tailor repurpose my_article.md --tone professional
# 批量处理 articles 文件夹
ai-content-tailor batch ./articles/ --output ./repurposed/ --preview
MIT