From sundial-org-awesome-openclaw-skills-4
Generates and stitches short videos from text prompts via Google Veo 3.x and Gemini API. Useful for ads, product demos, and UGC-style clips.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:veo3-video-genThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the bundled script to generate an MP4 from a text prompt.
Use the bundled script to generate an MP4 from a text prompt.
uv run {baseDir}/scripts/generate_video.py \
--prompt "A close up of ..." \
--filename "out.mp4" \
--model "veo-3.1-generate-preview" \
--aspect-ratio "9:16" \
--poll-seconds 10
Veo commonly outputs ~8s clips per request. Use --segments to generate multiple clips and concatenate them with ffmpeg.
Important: This skill sends one prompt per segment (one Veo request per segment). Use --base-style to keep style consistent across segments.
uv run {baseDir}/scripts/generate_video.py \
--prompt "Same scene, consistent style..." \
--filename "out-24s.mp4" \
--model "veo-3.1-generate-preview" \
--aspect-ratio "9:16" \
--segments 3 \
--segment-style continuation
Options:
--base-style "...": prepended to every segment prompt (recommended).--segment-prompt "..." (repeatable): provide one prompt per segment (overrides --prompt).--segment-style continuation (default): appends continuity instructions per segment (only when using --prompt).--segment-style same: uses the exact same prompt for each segment (only when using --prompt).--use-last-frame: for segment >=2, extract previous segment last frame and pass it as lastFrame for continuity.--emit-segment-media: print MEDIA: for each segment as it finishes (useful for progress).--keep-segments: keep intermediate *.segXX.mp4 files.--reference-image path.jpg (repeatable): guide generation with product/style references.GEMINI_API_KEY env var (or --api-key).ffmpeg on PATH when using --segments > 1.npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Generates video clips using Google Veo API. Configure prompt, duration, aspect ratio, and model. Outputs MP4 and prints MEDIA: line for attachment.
Generates AI videos from text prompts or images using Google Veo 3.1 (paid, with audio) or free Pollinations.ai fallback. For text-to-video, animations, clips in development workflows.
Crafts structured prompts for Google Veo 3.2 (Artemis engine) from user assets and intent. Useful when generating video with Veo or need cinematic prompt engineering.