Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add WingedGuardian/GENesis-AGI --skill video-processinggit clone --depth 1 https://github.com/WingedGuardian/GENesis-AGIWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/wingedguardian/genesis-agi/video-processing)<a href="https://agentmods.dev/skills/wingedguardian/genesis-agi/video-processing"><img src="https://agentmods.dev/badge/skills/wingedguardian/genesis-agi/video-processing/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/wingedguardian/genesis-agi/video-processing"><img src="https://agentmods.dev/badge/skills/wingedguardian/genesis-agi/video-processing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 78 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00021 | $0.01715 |
| Opus 5 | $0.00010 | $0.00857 |
| Sonnet 5 | $0.00004 | $0.00343 |
| Haiku 4.5 | $0.00002 | $0.00171 |
Grade A, and why
video-processing scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s https://api.groq.com/openai/v1/audio/transcriptions \ How it starts
The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Video Processing
Purpose
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.
When to Use
- User requests video clipping, transcription, or processing.
- An evaluation or research task involves video content.
- Content creation requires extracting highlights from longer video.
- A surplus compute task involves video analysis.
Prerequisites
Required tools (install if missing):
ffmpegandffprobe— video processingyt-dlp— video downloading from 1000+ sites- Transcription: YouTube auto-subs (free), or Groq/OpenAI Whisper API
Check availability:
which ffmpeg ffprobe yt-dlp 2>/dev/null
Pipeline
Phase 1: Intake
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.
Phase 2: Download
# 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).
Phase 3: Transcription
Priority order — use the first available:
- YouTube auto-subs (already downloaded in Phase 2) — free, instant
- Groq Whisper API — fast cloud, free tier 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 - OpenAI Whisper API — reliable, paid
- Local Whisper — if installed, slowest but free
whisper source.mp4 --model small --output_format json \ --output_dir . --language en
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 213 lines · 21 tokens per session scan A 71f99c2d7770
video-processing is a skill published in the GitHub repository WingedGuardian/GENesis-AGI (96 stars, last pushed yesterday), licensed MIT. It adds 21 tokens to every session and 1,715 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
figure
Hybrid figure pipeline (Nano Banana raster + rembg background removal + TikZ vector assembly). Includes a TikZ template library covering quantum circuits (quantikz), Feynman diagrams (tikz-feynman), circuits (circuitikz), molecules (chemfig), 2D/3D plots (pgfplots), energy-level diagrams, phase-space trajectories…
ideation-facilitation
Facilitate divergent and convergent ideation to turn a framed problem into a ranked shortlist of concepts.
audiocraft-audio-generation
PyTorch library for audio generation including text-to-music (MusicGen) and text-to-sound (AudioGen). Use when you need to generate music from text descriptions, create sound effects, or perform melody-conditioned music generation.
segment-anything-model
Foundation model for image segmentation with zero-shot transfer. Use when you need to segment any object in images using points, boxes, or masks as prompts, or automatically generate all object masks in an image.
ascii-video
Production pipeline for ASCII art video — any format. Converts video/audio/images/generative input into colored ASCII character video output (MP4, GIF, image sequence). Covers: video-to-ASCII conversion, audio-reactive music visualizers, generative ASCII art animations, hybrid video+audio reactive, text/lyrics…
stable-diffusion-image-generation
State-of-the-art text-to-image generation with Stable Diffusion models via HuggingFace Diffusers. Use when generating images from text prompts, performing image-to-image translation, inpainting, or building custom diffusion pipelines.