Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计提醒

shorts-creator短裤创作者

Agent Skill

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

总安装

1,508

周安装

61

GitHub Stars

1

下载量

473
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mmcmedia/openclaw-agents --skill shorts-creator

简介

shorts-creator 用于自动化生成 TikTok 风格短视频内容。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中组合图文、字幕与转场效果。
  • 支持批量处理与模板复用,降低创作门槛。
  • 安装命令:npx skills add https://github.com/mmcmedia/openclaw-agents --skill shorts-creator。
  • 输出内容需人工审核,确保符合社区规范与版权要求。

SKILL.md

Shorts Creator - Social Media Clip Generator

Transform full-length music videos into platform-optimized vertical clips for Instagram Reels, TikTok, and YouTube Shorts.

Workflow

1. Input Requirements

Required:

  • Full music video MP4 (from music-video-producer)
  • Lyrics file (.srt or plain text)
  • Audio file (MP3/WAV)
  • Scene plan JSON (from creative-director)

Optional:

  • Target platforms (Instagram/TikTok/YouTube/All)
  • Clip strategy (chorus-focused, lyric highlights, full song segments)
  • Brand overlays (logo, CTA, @handle)

2. Clip Selection Strategy

Auto-detect best moments:

  1. Chorus/Hook - Most repeatable, catchy section
  2. Lyric highlights - Powerful lines with visual impact
  3. First 15 seconds - Hook viewers immediately
  4. Peak energy moments - Musical climax, beat drops

Manual selection:

  • Specify timestamp ranges (e.g., "1:15-1:45")
  • Choose specific scenes by number
  • Target specific lyrics

3. Platform Specifications

Instagram Reels:

  • Aspect ratio: 9:16 (1080x1920)
  • Duration: 15-90 seconds (optimal: 30-45s)
  • Format: MP4, H.264
  • Max file size: 4GB

TikTok:

  • Aspect ratio: 9:16 (1080x1920)
  • Duration: 15-60 seconds (optimal: 21-34s)
  • Format: MP4, H.264
  • Max file size: 287MB

YouTube Shorts:

  • Aspect ratio: 9:16 (1080x1920)
  • Duration: Up to 60 seconds
  • Format: MP4, H.264
  • Max file size: 256GB

4. Clip Generation Process

Using FFmpeg (via script):

# Extract segment (1:15 to 1:45)
python scripts/extract_clip.py \
  --input full-video.mp4 \
  --start 75 \
  --duration 30 \
  --output clip-01.mp4

# Convert to vertical 9:16
python scripts/reframe_vertical.py \
  --input clip-01.mp4 \
  --output clip-01-vertical.mp4 \
  --strategy zoom-center

# Add platform branding
python scripts/add_branding.py \
  --input clip-01-vertical.mp4 \
  --output clip-01-final.mp4 \
  --platform instagram \
  --logo assets/psalmix-logo.png \
  --cta "Full video on YouTube 🎵"

5. Re-framing Strategies

Options for landscape → vertical:

A. Zoom & Pan (Recommended)

  • Zoom into video center
  • Crops sides, keeps focus on main subject
  • Smooth pan follows action/lyrics
  • Best for: Videos with centered subjects

B. Letterbox with Background

  • Add blurred/colored background
  • Original video stays 16:9 in center
  • Fills vertical space with aesthetic bars
  • Best for: Scenic, wide-shot videos

C. Split Screen

  • Top 50%: Original video (small)
  • Bottom 50%: Zoomed/cropped detail
  • Best for: Lyric-focused content

D. Dynamic Crop

  • Intelligently crops to follow motion
  • AI-detects faces/main subjects
  • Keeps important content in frame
  • Best for: Action-heavy videos

6. Overlay Elements

Platform-specific CTAs:

  • Instagram: "Full song on YouTube 🎵 Link in bio"
  • TikTok: "Full video on my page! #PsalMix"
  • YouTube: "Subscribe for more clean music 🎶"

Branding:

  • Logo: Lower right corner (small, 10% opacity)
  • Handle: Bottom center "@psalmix" (last 3 seconds)
  • Artist credit: Top overlay "Song: [Title] by [Artist]"

Engagement hooks:

  • First 2 seconds: "Wait for the drop 🔥"
  • Last 3 seconds: "Tag someone who needs this ❤️"
  • Mid-clip: "Send this to your bestie 💯"

7. Batch Processing

Generate multiple clips from one video:

python scripts/batch_clips.py \
  --input full-video.mp4 \
  --scene-plan scene-plan.json \
  --strategy chorus-focus \
  --platforms instagram,tiktok,youtube \
  --output-dir clips/

Outputs:

clips/
├── instagram/
│   ├── chorus-15s.mp4
│   ├── hook-30s.mp4
│   └── lyric-highlight-45s.mp4
├── tiktok/
│   ├── chorus-21s.mp4
│   └── hook-30s.mp4
└── youtube/
    ├── chorus-30s.mp4
    └── full-song-60s.mp4

8. Optimization Best Practices

For maximum engagement:

  • First 3 seconds: Hook viewer with best moment
  • Captions ON: 85% watch without sound
  • High contrast: Pops on small screens
  • Bold text: Readable on mobile
  • Trending audio: Use original audio + hashtags

For algorithm:

  • Post at peak times (7-9pm)
  • Use 3-5 relevant hashtags
  • Engage in comments within 1 hour
  • Cross-post to Stories
  • Pin top-performing clips

Scripts

scripts/extract_clip.py

Extract time segment from full video:

python scripts/extract_clip.py \
  --input video.mp4 \
  --start 75 \
  --duration 30 \
  --output clip.mp4

scripts/reframe_vertical.py

Convert landscape to 9:16 vertical:

python scripts/reframe_vertical.py \
  --input clip.mp4 \
  --output vertical.mp4 \
  --strategy zoom-center

scripts/add_branding.py

Add logo, CTA, platform-specific overlays:

python scripts/add_branding.py \
  --input vertical.mp4 \
  --output branded.mp4 \
  --platform instagram \
  --logo logo.png

scripts/batch_clips.py

Generate multiple clips automatically:

python scripts/batch_clips.py \
  --input video.mp4 \
  --scene-plan scene-plan.json \
  --platforms instagram,tiktok \
  --output-dir clips/

Reference Files

  • references/platform-specs.md - Detailed requirements for each platform
  • references/ffmpeg-commands.md - Common FFmpeg recipes for video editing
  • references/engagement-hooks.md - Proven text overlays and CTAs

PsalMix Branding

Logo placement:

  • Position: Lower right corner
  • Size: 80x80px
  • Opacity: 15% (subtle)
  • Duration: Full clip

Colors:

  • Primary: #667eea (Purple gradient)
  • Text: White with black shadow
  • Background: Dark overlay (50% opacity) for readability

CTAs:

  • "Stream clean music at psalmix.com 🎵"
  • "Christian music you can trust ✨"
  • "Family-friendly vibes only 🙏"

Quality Checklist

Before publishing clips:

  • Aspect ratio is exactly 9:16 (1080x1920)
  • Audio syncs perfectly (no drift)
  • Captions are readable on mobile
  • Logo/branding visible but not distracting
  • First 3 seconds hook viewer
  • CTA visible in last 3 seconds
  • File size under platform limits
  • Tested on actual device (iPhone/Android)
  • Hashtags and caption ready

Deliverables

  1. Platform-specific clips - Optimized MP4 for each target platform
  2. Caption templates - Suggested text for each clip
  3. Hashtag suggestions - Trending + evergreen tags
  4. Posting schedule - Optimal times for each platform

Advanced Features

A/B Testing clips:

  • Generate 2-3 variations per clip
  • Different hooks, CTAs, text overlays
  • Test which performs best
  • Double down on winners

Trend integration:

  • Overlay trending sounds (TikTok)
  • Use popular hashtag challenges
  • Remix format (duet/stitch opportunities)

Analytics tracking:

  • Encode UTM parameters in CTA links
  • Track views/engagement per clip
  • Iterate based on performance

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.66%
按下载量换算183

Claude

26.85%
按下载量换算127

Cursor

17.1%
按下载量换算81

Gemini CLI

9.19%
按下载量换算43

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills