Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

social-producer-agent社会生产者 Agent 人

Agent Skill

social-producer-agent 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

466

周安装

20

GitHub Stars

10

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/michaelboeding/skills --skill social-producer-agent

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目状态与变更事项。

  • 适用于围绕仓库动态、代码提交或团队协作进行信息归纳的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否触发联网或文件读写操作。
  • social-producer-agent 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Social Producer

Create coordinated social media content packs with multiple assets.

This is an orchestrator skill that combines:

  • Image generation (Gemini Image)
  • Short video generation (Veo 3.1)
  • Audio/music (Lyria, Gemini TTS)
  • Asset assembly and formatting

What You Can Create

TypeExample
Launch kitHero video + carousel images + short clips
Content pack5 posts for a week (mix of images/videos)
Campaign assetsMultiple formats for one campaign
Social seriesEpisodic content (tips, facts, stories)
Platform kitSame content in multiple aspect ratios

Prerequisites

  • GOOGLE_API_KEY - For Gemini (images), Veo (video), Lyria (music), TTS
  • FFmpeg installed: brew install ffmpeg

Workflow

Step 1: Gather Requirements (REQUIRED)

⚠️ DO NOT skip this step. Use interactive questioning — ask ONE question at a time.

Question Flow

⚠️ Use the AskUserQuestion tool for each question below. Do not just print questions in your response — use the tool to create interactive prompts with the options shown.

Q1: Platform

"I'll create your social media content pack! First — which platform(s)? - Instagram - TikTok - YouTube - LinkedIn - All of the above - Or specify"

*Wait for response.*

Q2: Quantity

"How many pieces of content? *(e.g., 5 posts, 10 assets, a week's worth)*"

*Wait for response.*

Q3: Types

"What content types? - Images only - Videos/Reels only - Mix of both - Or specify"

*Wait for response.*

Q4: Theme

"What's the theme or campaign? - Product launch - Tips/educational series - Brand awareness - Promotional/sale - Or describe your own"

*Wait for response.*

Q5: Assets

"Do you have existing assets to use? - Product photos (provide paths) - Logo/brand assets - Brand colors/guidelines - No, generate everything"

*Wait for response.*

Quick Reference

QuestionDetermines
PlatformAspect ratios and format requirements
QuantityNumber of assets to generate
TypesImage vs video generation
ThemeContent direction and messaging
AssetsWhether to use existing or generate

Step 2: Plan the Content Pack

Create a manifest of assets to generate:

Example: Product Launch Kit

SOCIAL CONTENT PACK: New Headphones Launch

PLATFORMS: Instagram, TikTok, LinkedIn

ASSETS TO CREATE:

1. Hero Video (Reel/TikTok)
   - Format: 9:16 vertical, 15-30s
   - Content: Product reveal + features
   - Audio: Trending-style music + text overlays

2. Carousel Images (Instagram)
   - Format: 1:1 square, 5 images
   - Content: Feature breakdown, specs, lifestyle

3. Product Shots (All platforms)
   - Format: 1:1 square, 16:9 landscape
   - Content: Clean product images, different angles

4. Short Clips (Stories/TikTok)
   - Format: 9:16 vertical, 5-8s each
   - Content: Quick feature highlights

5. LinkedIn Banner
   - Format: 1200x627
   - Content: Professional product showcase

Step 3: Generate Assets by Type

Images (Gemini)

Product shots:

# Square format
python3 ${CLAUDE_PLUGIN_ROOT}/skills/image-generation/scripts/gemini.py \
  --prompt "Premium wireless headphones, product photography, clean white background, professional lighting, 3/4 angle" \
  --aspect-ratio "1:1" \
  --resolution "2K"

# Lifestyle shot
python3 ${CLAUDE_PLUGIN_ROOT}/skills/image-generation/scripts/gemini.py \
  --prompt "Person wearing premium headphones, urban setting, modern lifestyle, candid moment, warm lighting" \
  --aspect-ratio "4:5" \
  --resolution "2K"

Carousel frames:

# Feature 1
python3 ${CLAUDE_PLUGIN_ROOT}/skills/image-generation/scripts/gemini.py \
  --prompt "Infographic style: Wireless headphones with '40hr battery' text overlay, clean modern design, brand colors blue and white" \
  --aspect-ratio "1:1"

# Feature 2
python3 ${CLAUDE_PLUGIN_ROOT}/skills/image-generation/scripts/gemini.py \
  --prompt "Infographic style: Headphones with 'Active Noise Cancelling' visual representation, sound waves, modern design" \
  --aspect-ratio "1:1"

With user's product image as reference:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/image-generation/scripts/gemini.py \
  --prompt "Product in lifestyle setting, coffee shop, warm lighting" \
  --reference "/path/to/product.jpg" \
  --aspect-ratio "4:5"

Short Videos (Veo)

Vertical reel (9:16):

python3 ${CLAUDE_PLUGIN_ROOT}/skills/video-generation/scripts/veo.py \
  --prompt "Quick product reveal, headphones emerging from shadow, dynamic camera movement, trendy social media style" \
  --model veo-3.1 \
  --duration 8 \
  --aspect-ratio "9:16"

Feature highlight clip:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/video-generation/scripts/veo.py \
  --prompt "Close-up of headphone ear cup, finger tapping to skip song, satisfying gesture, clean aesthetic" \
  --model veo-3.1-fast \
  --duration 6 \
  --aspect-ratio "9:16"

Audio for Videos (Lyria)

Trending-style background music:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/music-generation/scripts/lyria.py \
  --prompt "trending social media music, upbeat, modern, catchy, TikTok style" \
  --duration 20 \
  --bpm 120

Assemble Video with Audio

python3 ${CLAUDE_PLUGIN_ROOT}/skills/media-utils/scripts/video_audio_merge.py \
  --video product_reveal.mp4 \
  --music trending_music.wav \
  -o reel_final.mp4

Step 4: Format for Platforms

Common aspect ratios:

PlatformFormatAspect RatioResolution
Instagram FeedSquare1:11080x1080
Instagram FeedPortrait4:51080x1350
Instagram ReelsVertical9:161080x1920
Instagram StoriesVertical9:161080x1920
TikTokVertical9:161080x1920
YouTube ShortsVertical9:161080x1920
LinkedInLandscape1.91:11200x627
Twitter/XLandscape16:91200x675
FacebookMultiple1:1, 16:91200x1200

To resize video for different platforms:

# Instagram Reel to YouTube Short (same ratio, just re-export)
cp reel.mp4 youtube_short.mp4

# Square to landscape (may crop)
ffmpeg -i square.mp4 -vf "crop=ih*16/9:ih" landscape.mp4

Step 5: Deliver the Content Pack

Organize output:

social_pack_headphones_launch/
├── instagram/
│   ├── reel_product_reveal.mp4
│   ├── carousel_1_battery.png
│   ├── carousel_2_anc.png
│   ├── carousel_3_comfort.png
│   ├── carousel_4_lifestyle.png
│   ├── carousel_5_cta.png
│   └── story_feature_1.mp4
├── tiktok/
│   ├── reveal_video.mp4
│   └── feature_clips/
│       ├── tap_controls.mp4
│       └── battery_life.mp4
├── linkedin/
│   └── banner_professional.png
└── shared/
    ├── product_shot_square.png
    ├── product_shot_landscape.png
    └── background_music.mp3

Delivery message:

"✅ Your social content pack is ready!

Created 12 assets:

📱 Instagram (6 assets)

  • 1 Reel (15s product reveal)
  • 5 Carousel images (feature breakdown)

📱 TikTok (3 assets)

  • 1 Main video (15s)
  • 2 Feature clips (8s each)

💼 LinkedIn (1 asset)

  • Professional banner image

📦 Shared assets (2)

  • Product shot (square + landscape)
  • Background music track

All files organized in: social_pack_headphones_launch/

Want me to:

  • Create more variations?
  • Adjust any specific asset?
  • Add captions/copy for posts?
  • Create a posting schedule?"

Content Ideas by Type

Product Launch

AssetContent
ReelDramatic reveal, unboxing feel
CarouselFeature breakdown (5 slides)
StoriesBehind-the-scenes, teasers
StaticHero shot, lifestyle shots

Tips/Educational Series

AssetContent
CarouselStep-by-step how-to
ReelsQuick tip videos
StaticQuote graphics, stats

Brand Awareness

AssetContent
VideoBrand story, values
ImagesTeam, culture, BTS
CarouselMission, vision, impact

Sale/Promotion

AssetContent
ReelEye-catching promo
StoriesCountdown, urgency
StaticClear offer + CTA

Batch Generation Tips

For consistency across assets:

  1. Use the same reference images
  2. Keep music style consistent
  3. Use same voice for any narration
  4. Maintain color palette in prompts

For efficiency:

  1. Generate music once, reuse across videos
  2. Generate base images, create variations
  3. Plan all prompts before generating

Limitations

  • Veo max duration: 8s per clip (concat for longer)
  • Generation time: Videos take 1-3 min each
  • Text in images: May need post-processing for perfect text
  • Exact brand colors: Describe in prompts, results vary

Example Prompts

Launch kit:

"Create a social media launch kit for our new wireless earbuds. I need: 1 Instagram Reel, 5 carousel images showing features, 3 TikTok clips. Modern, premium feel."

Weekly content:

"Create 5 social media posts for this week. Mix of images and short videos. Topic: productivity tips for remote workers. Professional but friendly tone."

Campaign:

"Create social assets for our Black Friday sale. Need eye-catching visuals with '50% OFF' messaging. Instagram + TikTok formats. Urgent, exciting energy."

With brand assets:

"Using these product photos, create a content pack: 3 lifestyle images, 2 short videos, 1 carousel. Our brand colors are navy and gold."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.2%
按下载量换算61

Claude

29.97%
按下载量换算49

Cursor

20.01%
按下载量换算33

Gemini CLI

8.98%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills