social-publisher

social-publisher

热门

多平台社交媒体发布自动化——在TikTok、Instagram、YouTube、LinkedIn等平台安排、发布和追踪内容

313Star
68Fork
更新于 2026/1/31
SKILL.md
只读
名称
social-publisher
描述

多平台社交媒体发布自动化——在TikTok、Instagram、YouTube、LinkedIn等平台安排、发布和追踪内容

版本
1.0.0

Social Publisher

通过智能排期、平台特定优化和集中式内容管理,自动化多平台社交媒体发布。基于n8n工作流如PostPulse。

概述

本技能支持:

  • 一键发布到多个平台
  • 平台特定的文案优化
  • 自动化排期工作流
  • 内容追踪与分析
  • AI驱动的文案生成

支持的平台

平台 内容类型 最佳发布时间
TikTok 视频(9:16) 上午7点、中午12点、晚上7点
Instagram Reels、帖子、Stories 上午11点-下午1点、晚上7-9点
YouTube Shorts、视频 下午2-4点(周四至周六)
LinkedIn 帖子、文章、视频 上午8-10点(周二至周四)
Twitter/X 文字、图片、视频 上午9点、中午12点、下午5点
Facebook 帖子、Reels、Stories 下午1-4点
Threads 文字、图片 上午7-9点
Pinterest Pin、Idea Pin 晚上8-11点(周六)

发布工作流

工作流:Google Drive → 多平台

┌──────────────┐    ┌──────────────┐    ┌──────────────┐
│ Google Drive │───▶│ 检测新文件   │───▶│ 生成AI文案   │
│ (视频)     │    │              │    │              │
└──────────────┘    └──────────────┘    └──────────────┘
                                               │
         ┌─────────────────────────────────────┼─────────────────────────────────────┐
         │                                     │                                     │
         ▼                                     ▼                                     ▼
┌──────────────┐                    ┌──────────────┐                    ┌──────────────┐
│ TikTok       │                    │ Instagram    │                    │ YouTube      │
│ (休闲风格) │                    │ (精致风格) │                    │ (SEO优化)  │
└──────────────┘                    └──────────────┘                    └──────────────┘
         │                                     │                                     │
         └─────────────────────────────────────┼─────────────────────────────────────┘
                                               │
                                               ▼
                                    ┌──────────────┐
                                    │ 在Airtable   │
                                    │ 中追踪       │
                                    └──────────────┘

n8n配置

workflow: "多平台视频发布器"

trigger:
  type: google_drive
  event: file_created
  folder: "/Ready to Publish"
  file_types: [mp4, mov]

steps:
  1. get_video_metadata:
      extract: [filename, duration, size]
      
  2. generate_captions:
      provider: openai
      model: gpt-4
      prompts:
        tiktok: |
          为视频 {filename} 创建TikTok文案
          风格:休闲、潮流、适合表情符号
          包含:3-5个标签
          最多:100个字符
          
        instagram: |
          为 {filename} 创建Instagram Reel文案
          风格:吸引人、稍长
          包含:故事元素、5-10个标签
          最多:150个字符(首行钩子)
          
        youtube: |
          创建YouTube Shorts标题和描述
          标题:SEO优化、吸引人(60字符)
          描述:关键词、2-3句话
          
        linkedin: |
          为 {filename} 创建专业的LinkedIn帖子
          风格:专业、思想领导力
          包含:行业见解、行动号召
          
  3. publish_parallel:
      tiktok:
        caption: "{tiktok_caption}"
        schedule: optimal_time
        
      instagram:
        type: reel
        caption: "{instagram_caption}"
        cover_image: auto_detect
        
      youtube:
        type: short
        title: "{youtube_title}"
        description: "{youtube_description}"
        visibility: public
        
      linkedin:
        content: "{linkedin_caption}"
        visibility: public
        
  4. track_results:
      platform: airtable
      base: "Content Tracker"
      record:
        video_name: "{filename}"
        platforms: [tiktok, instagram, youtube, linkedin]
        publish_time: "{timestamp}"
        status: "published"
        links: ["{tiktok_url}", "{ig_url}", "{yt_url}", "{li_url}"]
        
  5. notify:
      slack:
        channel: "#content-published"
        message: |
          ✅ 视频已发布到所有平台!
          📹 {filename}
          🔗 TikTok: {tiktok_url}
          🔗 Instagram: {ig_url}
          🔗 YouTube: {yt_url}
          🔗 LinkedIn: {li_url}

平台特定优化

文案适配

caption_templates:
  original: "改变我生活的5个效率技巧"
  
  tiktok:
    style: casual, trendy
    output: "POV:你发现了这5个技巧 🤯 #效率 #生活技巧 #fyp"
    
  instagram:
    style: engaging, story-driven
    output: |
      这5个技巧真的改变了我的工作方式 💡
      
      收藏备用 ⬇️
      
      #效率 #生活技巧 #聪明工作 #动力 #小贴士
    
  youtube:
    title: "5个改变你生活的效率技巧"
    description: |
      发现成功专业人士使用的顶级效率技巧。
      
      在本视频中:
      00:00 介绍
      00:15 技巧#1
      ...
      
      订阅获取更多效率技巧!
      
  linkedin:
    style: professional, insightful
    output: |
      经过多年优化工作流程,这5个策略始终能带来成果:
      
      1. [带有专业背景的技巧]
      2. [带有商业应用的技巧]
      ...
      
      哪个效率策略对你影响最大?
      
  twitter:
    style: concise, punchy
    output: "5个真正有效的效率技巧(🧵线程)"

各平台标签策略

hashtags:
  tiktok:
    count: 3-5
    mix: [trending, niche, branded]
    placement: end_of_caption
    examples: ["#fyp", "#viral", "#效率"]
    
  instagram:
    count: 5-15
    mix: [high_volume, medium, niche]
    placement: end_or_comment
    examples: ["#效率", "#工作生活", "#小贴士"]
    
  youtube:
    count: 3-5 in title area
    placement: description
    style: keyword-focused
    
  linkedin:
    count: 3-5
    placement: end_of_post
    style: professional
    examples: ["#领导力", "#效率", "#职业建议"]
    
  twitter:
    count: 1-2
    placement: inline_or_end
    examples: ["#效率"]

排期策略

内容日历模板

weekly_schedule:
  monday:
    - platform: linkedin
      time: 8:00 AM
      content_type: thought_leadership
      
    - platform: tiktok
      time: 7:00 PM
      content_type: educational
      
  tuesday:
    - platform: instagram
      time: 12:00 PM
      content_type: reel
      
    - platform: twitter
      time: 9:00 AM
      content_type: thread
      
  wednesday:
    - platform: youtube
      time: 3:00 PM
      content_type: short
      
    - platform: linkedin
      time: 10:00 AM
      content_type: article
      
  thursday:
    - platform: tiktok
      time: 12:00 PM
      content_type: trend
      
    - platform: instagram
      time: 7:00 PM
      content_type: carousel
      
  friday:
    - platform: all
      time: varies
      content_type: engagement_post

批量发布

batch_workflow:
  name: "每周内容批次"
  
  input:
    folder: "/Content/Week-{week_number}"
    videos: 7
    
  process:
    1. sort_by_type:
        educational: [mon, wed, fri]
        entertainment: [tue, thu]
        promotional: [sat]
        community: [sun]
        
    2. assign_platforms:
        each_video:
          primary: auto_detect_best_fit
          secondary: [remaining_platforms]
          
    3. generate_all_captions:
        batch_size: 7
        parallel: true
        
    4. schedule:
        distribution: optimal_times
        gap_between: minimum_4_hours
        
    5. queue_for_review:
        send_to: content_manager
        deadline: 24_hours_before_first_post

数据分析集成

跨平台追踪

tracking_fields:
  per_post:
    - post_id
    - platform
    - publish_time
    - content_type
    - caption
    - hashtags
    - views (24h, 48h, 7d)
    - likes
    - comments
    - shares
    - saves
    - profile_visits
    - follower_change
    
  aggregated:
    - total_reach
    - engagement_rate
    - best_performing_content
    - optimal_posting_times
    - audience_growth

效果仪表盘

# 每周社交媒体报告

## 概览
| 平台 | 帖子数 | 触达 | 互动率 | 粉丝变化 |
|----------|-------|-------|------------|-----------|
| TikTok | 7 | 150K | 8.5% | +500 |
| Instagram | 5 | 45K | 4.2% | +200 |
| YouTube | 3 | 25K | 6.1% | +150 |
| LinkedIn | 5 | 15K | 3.8% | +75 |

## 表现最佳的内容
1. TikTok:"5个效率技巧" - 45K观看,12%互动率
2. Instagram:"我的一天" - 18K观看,5.5%互动率
3. YouTube:"教程视频" - 12K观看,8%互动率

## 洞察
- 最佳日期:周四(平均互动率2倍)
- 最佳时间:晚上7点(触达最高)
- 最佳内容类型:教育类(分享量3倍)

## 下周建议
- 制作更多教育类内容
- 周四发布2次
- 在所有平台测试晚上7点发布

输出示例

请求:"我有一个关于远程工作技巧的视频。为所有平台创建文案。"

输出

# 多平台文案:远程工作技巧

## TikTok

POV:你终于掌握了在家工作的技巧 🏠💻

这3个技巧彻底改变了我 ⬇️

#远程工作 #在家办公 #效率技巧 #workfromhome #fyp


## Instagram Reel

3年远程工作教会我的这些改变游戏规则的事 🚀

假通勤那个?真的改变了生活。

收藏起来,下次在家办公时用 📌

.
.
.
#远程工作 #在家办公 #效率技巧 #在家办公生活 #职业建议 #工作生活平衡 #家庭办公室 #远程工作者 #数字游民 #效率


## YouTube Short
**标题**:"3个真正有效的远程工作技巧"

**描述**:

通过这些经过验证的效率技巧,掌握在家工作的艺术。

经过3年的远程工作,这些策略对我的日常工作和产出产生了最大的影响。

⏰ 时间戳:
0:00 - 介绍
0:05 - 技巧1:假通勤
0:20 - 技巧2:时间块管理
0:35 - 技巧3:关机仪式

订阅获取更多效率内容!

#shorts #远程工作 #效率


## LinkedIn

3年远程工作。以下是真正有效的做法:

1️⃣ 假通勤
工作前散步10分钟,向大脑发出信号:该集中注意力了。听起来简单,但对我的早晨效率产生了变革性影响。

2️⃣ 时间块管理(带缓冲)
安排专注时间和缓冲时间。连续开会不休息是导致倦怠的秘诀。

3️⃣ 关机仪式
当你合上笔记本电脑时,口头说一句"关机完成"。这种认知边界有助于将工作与个人时间分开。

你最好的远程工作技巧是什么?

#远程工作 #效率 #工作生活平衡 #领导力


## Twitter/X

3个真正有效的远程工作技巧:

  1. 进行"假通勤"——开始工作前在街区散步
  2. 时间块管理,会议之间留15分钟缓冲
  3. 合上笔记本电脑时说"关机完成"

最后一个听起来奇怪,但对心理边界来说是改变游戏规则的。


---

**推荐发布时间表:**
- TikTok:周四晚上7点
- Instagram:周五中午12点
- YouTube:周六下午3点
- LinkedIn:周二上午9点
- Twitter:周三中午12点

Social Publisher技能 - 属于Claude Office Skills