docs/zh-CN/skills/crosspost/SKILL.md
跨X、LinkedIn、Threads和Bluesky的多平台内容分发。使用内容引擎模式根据平台适配内容。从不跨平台发布相同内容。当用户希望跨社交平台分发内容时使用。
npx skillsauth add SiniyaYousuf/everything_claudecode 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
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.
documentation
Translate visa application documents (images) to English and create a bilingual PDF with original and translation
tools
See, Understand, Act on video and audio. See- ingest from local files, URLs, RTSP/live feeds, or live record desktop; return realtime context and playable stream links. Understand- extract frames, build visual/semantic/temporal indexes, and search moments with timestamps and auto-clips. Act- transcode and normalize (codec, fps, resolution, aspect ratio), perform timeline edits (subtitles, text/image overlays, branding, audio overlays, dubbing, translation), generate media assets (image, audio, video), and create real time alerts for events from live streams or desktop capture.
development
AI-assisted video editing workflows for cutting, structuring, and augmenting real footage. Covers the full pipeline from raw capture through FFmpeg, Remotion, ElevenLabs, fal.ai, and final polish in Descript or CapCut. Use when the user wants to edit video, cut footage, create vlogs, or build video content.