gemini-video-gen

gemini-video-gen is a skill for Claude Code from azmym/gemini-plugin. It costs 41 tokens per session (854 once invoked), scanned A, original, MIT.

A tool for generating short video clips from written descriptions using Veo 3.1. It submits a generation job and later retrieves the finished MP4 video.

In plain words
What is it for?
Use it for product demonstrations, B-roll, short animations, motion concepts, and social-media or marketing clips.
Why use it?
It removes the need to create short demo, background, or animated clips manually from scratch.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the gemini-plugin plugin — 9 skills, 6 commands, 5 agents, 7 hooks shipped together

Good fit Use it for product demonstrations, B-roll, short animations, motion concepts, and social-media or marketing clips.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/azmym/gemini-plugin/gemini-video-gen
Install

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.

Any agent
npx skills add azmym/gemini-plugin --skill gemini-video-gen
Clone the repo
git clone --depth 1 https://github.com/azmym/gemini-plugin

Made for: Claude Code.

Or install gemini-plugin, the plugin that ships this one along with the rest of its 9 skills, 6 commands, 5 agents, 7 hooks.

Wrote 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.

agentmods badge for gemini-video-gen

README.md
[![agentmods](https://agentmods.dev/badge/skills/azmym/gemini-plugin/gemini-video-gen/github.svg)](https://agentmods.dev/skills/azmym/gemini-plugin/gemini-video-gen)
Your own site
<a href="https://agentmods.dev/skills/azmym/gemini-plugin/gemini-video-gen"><img src="https://agentmods.dev/badge/skills/azmym/gemini-plugin/gemini-video-gen/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.

agentmods 80×15 button for gemini-video-gen

Your own site · 80×15
<a href="https://agentmods.dev/skills/azmym/gemini-plugin/gemini-video-gen"><img src="https://agentmods.dev/badge/skills/azmym/gemini-plugin/gemini-video-gen.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 854 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.00854
Opus 5 $0.00020 $0.00427
Sonnet 5 $0.00008 $0.00171
Haiku 4.5 $0.00004 $0.00085

Measured 9d ago against content hash e774775745f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

gemini-video-gen scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/gemini-video-gen/SKILL.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Gemini Video Gen

Use this skill to generate short video clips powered by Google Veo 3.1. Video generation is asynchronous: you start a job, then poll until the MP4 is ready.

When to use this skill

  • Product demos: Animate a UI flow, show a feature in action, or create a walkthrough clip.
  • B-roll footage: Generate background video for a presentation, landing page, or social media post.
  • Short animations: Bring a concept, diagram, or illustration to life as a few-second motion clip.
  • Motion design concepts: Prototype a logo animation, loading screen, or transition effect.
  • Marketing content: Short social clips, teaser videos, or visual hooks.

MCP tools

Tool Purpose
gemini_start_video Submit a video generation request; returns a job ID
gemini_get_video Poll for job status and retrieve the completed MP4 when done

Async start+poll pattern

Video generation with Veo 3.1 is not instant. The typical workflow is:

  1. Call gemini_start_video with a prompt. Receive a job_id.
  2. Wait a few seconds (Veo 3.1 typically takes 20-90 seconds for short clips).
  3. Call gemini_get_video with the job_id. If status is processing, wait and retry. If status is done, retrieve the output file path.

Do NOT spin-poll aggressively. Wait at least 10 seconds between poll attempts.

Usage pattern

Step 1: Start video generation

{
  "tool": "gemini_start_video",
  "arguments": {
    "prompt": "A mobile phone screen showing a recipe app. The user scrolls through a list of recipes, taps on 'Spaghetti Bolognese', and the detail screen slides in smoothly. Clean, modern UI, soft lighting.",
    "duration_seconds": 5,
    "aspect_ratio": "9:16"
  }
}

Response example: { "job_id": "veo-abc123", "status": "processing" }

Step 2: Poll for completion

{
  "tool": "gemini_get_video",
  "arguments": {
    "job_id": "veo-abc123"
  }
}

Poll every 15 seconds until status is done. Then the response will include an output file path or URL.

Read the full file on GitHub · 84 lines

Changes

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.

  1. 9d ago First seen · 84 lines · 41 tokens per session scan A e774775745f1

Subscribe to this mod's changes

gemini-video-gen is a skill published in the GitHub repository azmym/gemini-plugin (1 stars, last pushed yesterday), licensed MIT. It adds 41 tokens to every session and 854 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

video-perception

Use when the user mentions a video file (.mp4, .mov, .avi, .mkv, .webm), a YouTube URL, asks to watch/analyze/review a video, or references video content in conversation.

jordanrendric/claude-video-vision · 51 tokens

yt-dlp-downloader

Generate and run yt-dlp download commands with probe-driven format selection, safe output naming, retry defaults, and structured execution reports. Use when users want to download videos, extract audio, fetch playlists, grab subtitles, handle authenticated/age-gated content, or download live streams. Covers single…

johnqtcg/awesome-skills · 96 tokens

gemini-imagegen

Use when the user asks to generate, create, draw, edit, or restyle an image, or when a task needs image assets — logos, icons, illustrations, hero images, textures, photos, placeholder art, social/OG cards. Claude cannot produce raster images; a Gemini session via the agy (Antigravity) CLI has a generateimage tool…

Vallykrie/gemini-swarm-skill · 107 tokens

nanobanana-adc

Generate images with Google's Nano Banana Pro (Gemini 3 Pro Image) using Application Default Credentials (ADC) or a GEMINIAPIKEY. Use this when the user asks to create, generate, draw, or render an image via Google / Vertex AI / Gemini.

hummer98/nanobanana-adc · 60 tokens

grok-prompting

Internal guidance for composing Grok prompts for coding, review, diagnosis, and research tasks inside the Grok Claude Code plugin.

LovelaceLoom/grok-plugin-cc · 30 tokens

pasteup

Pipeline for halftone paper-collage and stop-motion-graphic ads. Decodes a reference image into a field-editable JSON spec, generates cut-out elements directly on the Gemini image API (nano-banana line), then assembles them into build-from-empty stop motion with code: a bundled Python compositor by default, or…

tmoody1973/pasteup · 242 tokens