Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计通过

social-publisher社会出版商

Agent Skill

social-publisher 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

26,403

周安装

1,084

GitHub Stars

89

下载量

9,105
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:social-publisher(社会出版商)
来源仓库:https://github.com/claude-office-skills/skills
仓库路径:skills/social-publisher
安装命令:
npx skills add https://github.com/claude-office-skills/skills --skill social-publisher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-office-skills/skills --skill social-publisher

简介

social-publisher 支持多平台社交媒体一键发布,自动适配各平台内容格式与发布时间。

  • 适用于 TikTok、Instagram、YouTube、LinkedIn 等主流平台的自动化内容管理。
  • 可生成平台专属文案、安排发布计划并提供效果追踪与分析数据。
  • 使用前需配置各平台 API 密钥,注意遵守平台政策防止账号异常。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Social Publisher

Automate multi-platform social media publishing with intelligent scheduling, platform-specific optimization, and centralized content management. Based on n8n workflows like PostPulse.

Overview

This skill enables:

  • One-click publishing to multiple platforms
  • Platform-specific caption optimization
  • Automated scheduling workflows
  • Content tracking and analytics
  • AI-powered caption generation

Supported Platforms

PlatformContent TypesBest Posting Times
TikTokVideo (9:16)7am, 12pm, 7pm
InstagramReels, Posts, Stories11am-1pm, 7-9pm
YouTubeShorts, Videos2-4pm (Thu-Sat)
LinkedInPosts, Articles, Videos8-10am (Tue-Thu)
Twitter/XText, Images, Video9am, 12pm, 5pm
FacebookPosts, Reels, Stories1-4pm
ThreadsText, Images7am-9am
PinterestPins, Idea Pins8-11pm (Sat)

Publishing Workflow

Workflow: Google Drive → Multi-Platform

┌──────────────┐    ┌──────────────┐    ┌──────────────┐
│ Google Drive │───▶│ Detect New   │───▶│ Generate     │
│ (Video)      │    │ File         │    │ AI Captions  │
└──────────────┘    └──────────────┘    └──────────────┘
                                               │
         ┌─────────────────────────────────────┼─────────────────────────────────────┐
         │                                     │                                     │
         ▼                                     ▼                                     ▼
┌──────────────┐                    ┌──────────────┐                    ┌──────────────┐
│ TikTok       │                    │ Instagram    │                    │ YouTube      │
│ (Casual)     │                    │ (Polished)   │                    │ (SEO-rich)   │
└──────────────┘                    └──────────────┘                    └──────────────┘
         │                                     │                                     │
         └─────────────────────────────────────┼─────────────────────────────────────┘
                                               │
                                               ▼
                                    ┌──────────────┐
                                    │ Track in     │
                                    │ Airtable     │
                                    └──────────────┘

n8n Configuration

workflow: "Multi-Platform Video Publisher"

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: |
          Create a TikTok caption for video: {filename}
          Style: Casual, trendy, emoji-friendly
          Include: 3-5 hashtags
          Max: 100 characters

        instagram: |
          Create an Instagram Reel caption for: {filename}
          Style: Engaging, slightly longer
          Include: Story element, 5-10 hashtags
          Max: 150 characters (first line hook)

        youtube: |
          Create a YouTube Shorts title and description
          Title: SEO-optimized, engaging (60 chars)
          Description: Keywords, 2-3 sentences

        linkedin: |
          Create a professional LinkedIn post for: {filename}
          Style: Professional, thought leadership
          Include: Industry insights, CTA

  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: |
          ✅ Video published to all platforms!
          📹 {filename}
          🔗 TikTok: {tiktok_url}
          🔗 Instagram: {ig_url}
          🔗 YouTube: {yt_url}
          🔗 LinkedIn: {li_url}

Platform-Specific Optimization

Caption Adaptation

caption_templates:
  original: "5 productivity hacks that changed my life"

  tiktok:
    style: casual, trendy
    output: "POV: you discover these 5 hacks 🤯 #productivity #lifehacks #fyp"

  instagram:
    style: engaging, story-driven
    output: |
      These 5 hacks literally changed how I work 💡

      Save this for later ⬇️

      #productivity #lifehacks #worksmarter #motivation #tips

  youtube:
    title: "5 Productivity Hacks That Will Change Your Life"
    description: |
      Discover the top productivity hacks used by successful professionals.

      In this video:
      00:00 Introduction
      00:15 Hack #1
      ...

      Subscribe for more productivity tips!

  linkedin:
    style: professional, insightful
    output: |
      After years of optimizing my workflow, these 5 strategies consistently deliver results:

      1. [Hack with professional context]
      2. [Hack with business application]
      ...

      Which productivity strategy has made the biggest impact for you?

  twitter:
    style: concise, punchy
    output: "5 productivity hacks that actually work (thread 🧵)"

Hashtag Strategy by Platform

hashtags:
  tiktok:
    count: 3-5
    mix: [trending, niche, branded]
    placement: end_of_caption
    examples: ["#fyp", "#viral", "#productivity"]

  instagram:
    count: 5-15
    mix: [high_volume, medium, niche]
    placement: end_or_comment
    examples: ["#productivity", "#worklife", "#tips"]

  youtube:
    count: 3-5 in title area
    placement: description
    style: keyword-focused

  linkedin:
    count: 3-5
    placement: end_of_post
    style: professional
    examples: ["#leadership", "#productivity", "#careeradvice"]

  twitter:
    count: 1-2
    placement: inline_or_end
    examples: ["#productivity"]

Scheduling Strategy

Content Calendar Template

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 Publishing

batch_workflow:
  name: "Weekly Content Batch"

  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

Analytics Integration

Cross-Platform Tracking

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

Performance Dashboard

# Weekly Social Media Report

## Overview
| Platform | Posts | Reach | Engagement | Followers |
|----------|-------|-------|------------|-----------|
| TikTok | 7 | 150K | 8.5% | +500 |
| Instagram | 5 | 45K | 4.2% | +200 |
| YouTube | 3 | 25K | 6.1% | +150 |
| LinkedIn | 5 | 15K | 3.8% | +75 |

## Top Performing Content
1. TikTok: "5 productivity hacks" - 45K views, 12% engagement
2. Instagram: "Day in my life" - 18K views, 5.5% engagement
3. YouTube: "Tutorial video" - 12K views, 8% engagement

## Insights
- Best day: Thursday (2x average engagement)
- Best time: 7pm (highest reach)
- Best content type: Educational (3x shares)

## Next Week Recommendations
- Create more educational content
- Post 2x on Thursdays
- Test 7pm posting time across all platforms

Output Example

Request: "I have a video about remote work tips. Create captions for all platforms."

Output:

# Multi-Platform Captions: Remote Work Tips

## TikTok

POV: you finally master working from home 🏠💻

These 3 tips changed everything for me ⬇️

#remotework #wfh #productivityhacks #workfromhome #fyp

## Instagram Reel

3 years of remote work taught me these game-changers 🚀

The fake commute one? Actually life-changing.

Save this for your next WFH day 📌

... #remotework #workfromhome #productivitytips #wfhlife #careeradvice #worklifebalance #homeoffice #remoteworker #digitalnomad #productivity

## YouTube Short
**Title**: "3 Remote Work Tips That Actually Work"

**Description**:

Master working from home with these proven productivity tips.

After 3 years of remote work, these strategies have made the biggest difference in my daily routine and output.

⏰ Timestamps: 0:00 - Intro 0:05 - Tip 1: The Fake Commute 0:20 - Tip 2: Time Blocking 0:35 - Tip 3: Shutdown Ritual

Subscribe for more productivity content!

#shorts #remotework #productivity

## LinkedIn

3 years of remote work. Here's what actually moves the needle:

1️⃣ The Fake Commute A 10-minute walk before work signals to your brain that it's time to focus. Sounds simple, but it's been transformative for my morning productivity.

2️⃣ Time Blocking (with Buffer) Schedule focus time AND buffer time. Back-to-back calls without breaks is a recipe for burnout.

3️⃣ The Shutdown Ritual When you close your laptop, verbally say "shutdown complete." This cognitive boundary helps separate work from personal time.

What's your best remote work tip?

#remotework #productivity #worklifebalance #leadership

## Twitter/X

3 remote work tips that actually work:

  1. Take a "fake commute" - walk around the block before starting
  2. Time block with 15-min buffers between calls
  3. Say "shutdown complete" when you close your laptop

The last one sounds weird but it's a game-changer for mental boundaries.

---

**Recommended Posting Schedule:**
- TikTok: Thursday 7pm
- Instagram: Friday 12pm
- YouTube: Saturday 3pm
- LinkedIn: Tuesday 9am
- Twitter: Wednesday 12pm

*Social Publisher Skill - Part of Claude Office Skills*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.06%
按下载量换算2,919

Claude

31.55%
按下载量换算2,873

Cursor

17.27%
按下载量换算1,572

Gemini CLI

9.12%
按下载量换算830

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills