mcpbeat Sign in

Skill Content Repurposing Agent Skill

>- 将一篇内容拆解改编到小红书、抖音、B站、微博等多平台,适配各平台原生格式和风格。 当用户说"一稿多发""改编到各平台""内容复用""多平台适配""这篇改成小红书/抖音""转成其他平台""一鱼多吃"时使用。 和 skill-cross-platform-diff 的区别:diff 做平台差异洞察分析(发现层);本 SKILL 实际改写内容到各平台。 和 skill-cross-platform-publish 的区别:本 SKILL 只改写适配内容,cross-platform-publish 负责实际一键分发到多平台。

5k tokens
context cost
the whole folder, loaded on every use
4
files
instructions only
0
copies elsewhere
how many repositories repackaged it
112
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/ZJU-REAL/Easel --skill skill-content-repurposing

What comes with it

15 733 bytes besides the instruction
EASEL-META.md
references/conversion-recipes.md
references/platform-specs.md

What it tells the agent to use

found in the instruction text
WebFetch fetches pages from the network

The instruction itself

3 sections, as written by the author

跨平台内容改编

> 将一篇长内容拆解为多平台原生素材,根据各平台特性适配格式、长度与语气,实现「一次创作,全域分发」。

输入

用户 prompt 中提供源内容,支持以下形式:

  • 文本:直接提供社媒帖子、公众号文章、视频脚本等文本
  • URL:提供内容链接(通过 WebFetch 抓取)
  • 视频/音频转录稿:提供短视频口播稿或直播文字版
  • 混合:源内容 + 指定目标平台

示例 prompt:

Execute /skill-content-repurposing
源内容:<B站视频脚本>
目标平台:小红书、抖音、微博

输出

输出包含两部分:

1. 改编计划

{
  "source_type": "blog_post",
  "source_word_count": 2000,
  "core_elements": {
    "thesis": "核心论点",
    "key_points": ["要点1", "要点2", "要点3"],
    "quotable_lines": ["金句1", "金句2"],
    "data_points": ["数据1"]
  },
  "target_platforms": ["twitter", "linkedin", "xiaohongshu"],
  "total_pieces": 8
}

2. 各平台改编内容

每个平台输出独立的、符合该平台原生格式的内容。具体转换规则参见 references/conversion-recipes.md

内容金字塔

本 SKILL 遵循三层内容金字塔方法论:

| 层级 | 说明 | 示例 |

|------|------|------|

| 支柱内容 (Pillar) | 深度长内容 | B站长视频、公众号长文、播客、直播回放 |

| 衍生内容 (Derivative) | 中等长度,提取支柱内容的子主题 | 小红书图文、知乎回答、抖音口播脚本 |

| 微内容 (Micro) | 短小精悍,单点突破 | 微博热评、抖音15秒、小红书封面金句卡 |

一篇支柱内容可衍生 15–25 个跨平台素材。SKILL 根据源内容类型自动规划金字塔拆解方案。

执行步骤

  • 识别源内容类型
  • 判断源内容属于支柱层的哪种类型(B站视频 / 公众号文章 / 直播 / 播客)
  • 统计字数、段落数,评估内容密度
  • 提取核心元素
  • 提炼核心论点(thesis)
  • 提取 3–5 个关键要点(key points)
  • 标记可引用金句(quotable lines)
  • 抓取数据点和案例(data points)
  • 映射目标平台
  • 有 Profile:从 Profile 的 platforms 字段读取目标平台列表
  • 无 Profile:使用用户指定的平台,或默认为 小红书 + 抖音 + 微博
  • 根据 references/platform-specs.md 确定每个平台的格式要求
  • 逐平台生成改编内容
  • 根据 references/conversion-recipes.md 中的转换配方执行改编
  • 每条内容必须是该平台的原生内容——不是简单截断或复制粘贴
  • 适配长度限制、语气风格、标签策略、格式规范
  • 输出排期建议
  • 建议各平台的发布顺序和时间间隔
  • 原则:支柱内容先发 → 衍生内容次日起陆续发 → 微内容穿插填充

改编原则

  • 平台原生:每条内容读起来像是专门为该平台写的,不是机械裁剪
  • 核心一致:所有改编内容传达同一核心信息,不跑题不矛盾
  • 独立成立:每条内容单独阅读也完整有价值,不依赖用户看过源内容
  • 格式适配:严格遵守各平台的长度、格式、标签规则(见 references/platform-specs.md

Profile 感知

  • 有 Profile
  • platforms 字段读取目标平台列表,自动确定改编方向
  • tone / voice 字段读取语气风格,统一应用到所有改编内容
  • audience 字段读取目标受众,调整内容深度和表达方式
  • hashtag_strategy 字段读取标签偏好
  • 无 Profile
  • 要求用户指定目标平台(未指定则默认 小红书 + 抖音 + 微博)
  • 使用通用专业语气
  • 提示:"如提供账号 Profile(含平台和受众信息),可获得更精准的改编效果"

How to use it

Copy the folder

Take zju-real/skill-content-repurposing from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.