Best for
- User requests video clipping, transcription, or processing.
- An evaluation or research task involves video content.
- Content creation requires extracting highlights from longer video.
WingedGuardian/GENesis-AGI/src/genesis/skills/video-processing/SKILL.md
Download, transcribe, analyze, and clip video content — vertical shorts, captions, thumbnails
Decision brief
Download, transcribe, analyze, and clip video content — vertical shorts, captions, thumbnails
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/WingedGuardian/GENesis-AGI --skill "src/genesis/skills/video-processing"Inspect the Agent Skill "video-processing" from https://github.com/WingedGuardian/GENesis-AGI/blob/41b61096364a53a8000b2ef4020c25cee9cfeec2/src/genesis/skills/video-processing/SKILL.md at commit 41b61096364a53a8000b2ef4020c25cee9cfeec2. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
If duration 2 hours, ask user to specify a segment range.
Review the “Phase 2: Download” section in the pinned source before continuing.
Priority order — use the first available:
This is the core value step. Analyze the transcript and select 3-5 segments (30-90 seconds each) based on:
For each selected segment:
Permission review
The documentation includes network, browsing, or remote request actions.
-skip-download -o "source" "URL"The documentation includes network, browsing, or remote request actions.
curl -s https://api.groq.com/openai/v1/audio/transcriptions \Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 90 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Turn long-form video into processed outputs: transcripts, short clips, vertical format with captions, thumbnails. Uses FFmpeg, yt-dlp, and transcription services. All operations via shell commands.
Required tools (install if missing):
ffmpeg and ffprobe — video processingyt-dlp — video downloading from 1000+ sitesCheck availability:
which ffmpeg ffprobe yt-dlp 2>/dev/null
From URL:
yt-dlp --dump-json "URL" 2>/dev/null | python3 -c "
import sys, json
d = json.load(sys.stdin)
print(f'Title: {d[\"title\"]}')
print(f'Duration: {d[\"duration\"]}s')
print(f'Resolution: {d.get(\"width\",\"?\")}x{d.get(\"height\",\"?\")}')
"
From local file:
ffprobe -v quiet -print_format json -show_format -show_streams "file.mp4"
If duration > 2 hours, ask user to specify a segment range.
# Best quality up to 1080p with audio
yt-dlp -f "bv[height<=1080]+ba/b[height<=1080]" -o "source.mp4" "URL"
# Also grab auto-subtitles if available (avoids transcription entirely)
yt-dlp --write-auto-subs --sub-lang en --sub-format json3 \
--skip-download -o "source" "URL"
If source.en.json3 exists, skip to Phase 4 (transcription already done).
Priority order — use the first available:
curl -s https://api.groq.com/openai/v1/audio/transcriptions \
-H "Authorization: Bearer $API_KEY_GROQ" \
-F [email protected] -F model=whisper-large-v3 \
-F response_format=verbose_json -F timestamp_granularities[]=word
whisper source.mp4 --model small --output_format json \
--output_dir . --language en
Extract audio first if sending to API:
ffmpeg -i source.mp4 -vn -acodec libmp3lame -q:a 2 audio.mp3
This is the core value step. Analyze the transcript and select 3-5 segments (30-90 seconds each) based on:
Selection criteria:
Rules:
For each selected segment:
Extract clip:
ffmpeg -ss [start] -to [end] -i source.mp4 \
-c:v libx264 -c:a aac -preset fast -crf 23 clip_N.mp4
Vertical crop (9:16 for shorts/reels):
# Center crop (loses sides)
ffmpeg -i clip_N.mp4 -vf "crop=ih*9/16:ih:(iw-ih*9/16)/2:0,scale=1080:1920" \
-c:a copy clip_N_vertical.mp4
# Letterbox (keeps everything, adds black bars)
ffmpeg -i clip_N.mp4 -vf "scale=1080:-2,pad=1080:1920:(ow-iw)/2:(oh-ih)/2" \
-c:a copy clip_N_vertical.mp4
Generate SRT captions from transcript:
Burn captions into video:
ffmpeg -i clip_N_vertical.mp4 \
-vf "subtitles=clip_N.srt:force_style='FontSize=22,FontName=Arial,\
PrimaryColour=&H00FFFFFF,OutlineColour=&H00000000,Outline=2,\
Shadow=1,MarginV=60,Alignment=2'" \
-c:a copy clip_N_captioned.mp4
Generate thumbnail:
# Frame at 2 seconds in
ffmpeg -ss 2 -i clip_N.mp4 -frames:v 1 -q:v 2 clip_N_thumb.jpg
# Video Processing Report
**Source:** [title or filename]
**Duration:** [total duration]
**Clips generated:** N
| # | Title | Duration | File | Size |
|---|-------|----------|------|------|
| 1 | [title] | [duration] | clip_1_captioned.mp4 | [size] |
## Segment Reasoning
1. **[title]** ([start]-[end]): [why this segment was selected]
If output exceeds platform limits, re-encode:
# Target ~45MB for Telegram (50MB limit)
ffmpeg -i input.mp4 -c:v libx264 -b:v 1500k -c:a aac -b:a 128k output.mp4
| Platform | Video Limit |
|---|---|
| Telegram | 50 MB |
| 16 MB | |
| Discord | 25 MB (Nitro: 500 MB) |
job_id: <CLIP-YYYY-MM-DD-NNN>
source: <URL or filepath>
source_duration: <seconds>
clips:
- number: <1-N>
title: <short title>
start: <HH:MM:SS>
end: <HH:MM:SS>
duration: <seconds>
file: <output filepath>
size_mb: <file size>
format: <horizontal | vertical>
captioned: <true | false>
virality_reasoning: <one sentence>
transcription_method: <youtube_auto | groq_whisper | openai_whisper | local_whisper | none>
docs/reference/gemini-routing.md — For video content analysis via Gemini APIFrequently asked questions
Download, transcribe, analyze, and clip video content — vertical shorts, captions, thumbnails
The source record exposes this install command: npx skills add https://github.com/WingedGuardian/GENesis-AGI --skill "src/genesis/skills/video-processing". Inspect the command and pinned source before running it.
Static rules flagged network in the source; the page lists the matching lines and excerpts.
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.