بنقرة واحدة
platform-rewrite
平台 native 改写 skill。把一个母稿改成不同平台的版本,强调"重写而不是裁剪"。支持单平台和多平台一键改写,自动生成各平台标题和 hashtag。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
平台 native 改写 skill。把一个母稿改成不同平台的版本,强调"重写而不是裁剪"。支持单平台和多平台一键改写,自动生成各平台标题和 hashtag。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Orchestrate a single content writing task. Activate when user asks to write one specific piece of content, or picks a topic to write about. Trigger: "写这个" / "帮我写" / "写成文案" / "写一篇".
为中文社媒写一篇完整原创稿。用户要写帖子、出内容、起草文章、产出文案时激活。这是执行者技能——真正动笔的那一个。
启动 AutoCrew 风格校准流程。用户主动激活,类似 YC office hours 的引导式对话。 Trigger: 用户输入 "/calibrate" 或 "风格校准" 或 "校准风格"
Calibrate writing style to match user's brand voice. Activate when user provides sample content, asks to set up their brand voice, or wants to calibrate style. Trigger: "风格校准" / "设置风格" / "我的风格是" / "参考这个账号".
Publish approved content to social media platforms. Activate when user asks to publish, post, or distribute content. Trigger: "发布" / "发到小红书" / "帮我发" / "发布这篇". Supports Xiaohongshu, Douyin, WeChat Video, WeChat MP (公众号).
内容审核 skill — 整合敏感词扫描 + 去 AI 味检查 + 质量评分,输出审核报告并联动状态机
استنادا إلى تصنيف SOC المهني
| name | platform-rewrite |
| description | 平台 native 改写 skill。把一个母稿改成不同平台的版本,强调"重写而不是裁剪"。支持单平台和多平台一键改写,自动生成各平台标题和 hashtag。 |
Turn one source draft into platform-native versions. Rewrite, don't trim.
Supported platforms: 小红书 · 抖音 · 公众号 · 视频号 · B站
autocrew_rewrite.humanizer-zh before final delivery.From an existing draft:
{
"action": "adapt_platform",
"content_id": "content-xxx",
"target_platform": "douyin",
"save_as_draft": true
}
From raw text:
{
"action": "adapt_platform",
"title": "原始标题",
"body": "原始正文",
"target_platform": "xiaohongshu"
}
After rewrite completes:
Generate title variants + hashtags for the target platform:
title-hashtag.ts → generateForPlatform(topic, platform, { tags })autocrew_content action="update":
{ "action": "update", "id": "<new-content-id>", "hashtags": ["#tag1", "#tag2"] }
Run humanizer on the adapted text if it reads too smooth or generic.
Show output to user: adapted title, body, hashtags, and notes.
When user says "帮我改成所有平台" or specifies 2+ platforms:
Determine target platforms. Default all 5 if user says "全平台":
["xiaohongshu", "douyin", "wechat_mp", "wechat_video", "bilibili"]
Generate titles + hashtags for all platforms in one call:
title-hashtag.ts → generateForAllPlatforms(baseTopic, platforms, { tags })PlatformTitleResult[] with titles, hashtags, and tips per platform.Rewrite each platform sequentially via autocrew_rewrite:
for each platform:
1. autocrew_rewrite action="adapt_platform" → get adapted body
2. autocrew_content action="save" → save as new draft with platform-specific title + hashtags
3. autocrew_humanize (if needed)
Link siblings: after all variants are saved, update each with sibling IDs:
{ "action": "update", "id": "<content-id>", "siblings": ["id-1", "id-2", "id-3"] }
Summary table — show user a comparison:
| 平台 | 标题 | 字数 | Hashtags | Content ID |
|---|---|---|---|---|
| 小红书 | ... | 800 | 8 | content-xxx |
| 抖音 | ... | 600 | 5 | content-yyy |
| ... | ... | ... | ... | ... |
If creator-profile.json has styleCalibrated: true:
autocrew_review action="full_review" on each adapted version.Always tell the user:
| Failure | Action |
|---|---|
| Source content not found | Ask user for content_id or raw text. |
| Unsupported platform | List supported platforms, ask user to pick. |
| title-hashtag returns empty | Fall back to original title + basic hashtags from tags. |
| Save fails | Output adapted text in chat so user can copy. Retry once. |