Tool/everything-claude-code/docs/zh-CN/skills/crosspost/SKILL.md
跨X、LinkedIn、Threads和Bluesky的多平台内容分发。使用内容引擎模式根据平台适配内容。从不跨平台发布相同内容。当用户希望跨社交平台分发内容时使用。
npx skillsauth add lyxjack/toolbox crosspostInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
将内容分发到多个社交平台,并适配各平台原生风格。
| 平台 | 最大长度 | 链接处理 | 话题标签 | 媒体 | |----------|-----------|---------------|----------|-------| | X | 280 字符 (Premium 用户为 4000) | 计入长度 | 少量 (最多 1-2 个) | 图片、视频、GIF | | LinkedIn | 3000 字符 | 不计入长度 | 3-5 个相关标签 | 图片、视频、文档、轮播 | | Threads | 500 字符 | 独立的链接附件 | 通常不使用 | 图片、视频 | | Bluesky | 300 字符 | 通过 Facets (富文本) | 无 (使用 Feeds) | 图片 |
从核心想法开始。使用 content-engine 技能来生成高质量草稿:
询问用户或根据上下文确定:
针对每个目标平台,转换内容:
X 平台适配:
LinkedIn 平台适配:
Threads 平台适配:
Bluesky 平台适配:
首先发布到主平台:
x-api 技能处理 X将适配后的版本发布到其余平台:
X 版本:
We just shipped [feature].
[One specific thing it does that's impressive]
[Link]
LinkedIn 版本:
Excited to share: we just launched [feature] at [Company].
Here's why it matters:
[2-3 short paragraphs with context]
[Takeaway for the audience]
[Link]
Threads 版本:
just shipped something cool — [feature]
[casual explanation of what it does]
link in bio
X 版本:
TIL: [specific technical insight]
[Why it matters in one sentence]
LinkedIn 版本:
A pattern I've been using that's made a real difference:
[Technical insight with professional framing]
[How it applies to teams/orgs]
#relevantHashtag
如果使用跨平台发布服务 (例如 Postbridge、Buffer 或自定义 API),模式如下:
import os
import requests
resp = requests.post(
"https://your-crosspost-service.example/api/posts",
headers={"Authorization": f"Bearer {os.environ['POSTBRIDGE_API_KEY']}"},
json={
"platforms": ["twitter", "linkedin", "threads"],
"content": {
"twitter": {"text": x_version},
"linkedin": {"text": linkedin_version},
"threads": {"text": threads_version}
}
},
timeout=30
)
resp.raise_for_status()
没有 Postbridge 时,使用各平台原生 API 发布:
x-api 技能模式发布前:
content-engine — 生成平台原生内容x-api — X/Twitter API 集成development
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
development
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
data-ai
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
development
X/Twitter API integration for posting tweets, threads, reading timelines, search, and analytics. Covers OAuth auth patterns, rate limits, and platform-native content posting. Use when the user wants to interact with X programmatically.