$npx -y skills add prime-skills/runcomfy-agent-skills --skill ai-video-generationGenerate AI videos on RunComfy via the runcomfy CLI — a smart router across the full video-model catalog: HappyHorse 1.0 (Arena #1, native in-pass audio), Wan-AI Wan 2-7 (open weights, audio-driven lip-sync), ByteDance Seedance v2 / 1-5 / 1-0 (multi-modal cinematic), Kling 3.0
| 1 | # AI Video Generation |
| 2 | |
| 3 | Generate videos with the full RunComfy video-model catalog through one CLI — text-to-video, image-to-video, and Veo's video-extend. This skill picks the right model for the user's intent and ships the documented prompt patterns + the exact `runcomfy run` invoke for each. |
| 4 | |
| 5 | [runcomfy.com](https://www.runcomfy.com/?utm_source=skills.sh&utm_medium=skill&utm_campaign=ai-video-generation) · [Video models](https://www.runcomfy.com/models?utm_source=skills.sh&utm_medium=skill&utm_campaign=ai-video-generation) · [CLI docs](https://docs.runcomfy.com/cli/introduction?utm_source=skills.sh&utm_medium=skill&utm_campaign=ai-video-generation) |
| 6 | |
| 7 | ## Powered by the RunComfy CLI |
| 8 | |
| 9 | ```bash |
| 10 | # 1. Install (see runcomfy-cli skill for details) |
| 11 | npm i -g @runcomfy/cli # or: npx -y @runcomfy/cli --version |
| 12 | |
| 13 | # 2. Sign in |
| 14 | runcomfy login # or in CI: export RUNCOMFY_TOKEN=<token> |
| 15 | |
| 16 | # 3. Generate |
| 17 | runcomfy run <vendor>/<model>/<endpoint> \ |
| 18 | --input '{"prompt": "..."}' \ |
| 19 | --output-dir ./out |
| 20 | ``` |
| 21 | |
| 22 | CLI deep dive: [`runcomfy-cli`](https://www.skills.sh/agentspace-so/runcomfy-agent-skills/runcomfy-cli) skill. |
| 23 | |
| 24 | ## Install this skill |
| 25 | |
| 26 | ```bash |
| 27 | npx skills add agentspace-so/runcomfy-agent-skills --skill ai-video-generation -g |
| 28 | ``` |
| 29 | |
| 30 | --- |
| 31 | |
| 32 | ## Pick the right model for the user's intent |
| 33 | |
| 34 | ### Text-to-video (t2v) — newest first |
| 35 | |
| 36 | **HappyHorse 1.0** — `happyhorse/happyhorse-1-0/text-to-video` *(default)* |
| 37 | > Currently #1 on Artificial Analysis Video Arena. Native synchronized audio generated in-pass (no separate Foley step). Native 1080p, up to ~15s, strong multi-shot character consistency. |
| 38 | > Pick for: general-purpose t2v, ad creative with audio, social-media clips, multi-shot narratives. |
| 39 | > Avoid for: audio-driven lip-sync to a specific voiceover MP3 — use **Wan 2-7**. |
| 40 | |
| 41 | **Kling 3.0 4K** — [`kling/kling-3.0/4k/text-to-video`](https://www.runcomfy.com/models/kling/kling-3.0/4k/text-to-video?utm_source=skills.sh&utm_medium=skill&utm_campaign=ai-video-generation) |
| 42 | > Kling's latest, 4K output, strong multi-shot character identity, premium camera language. |
| 43 | > Pick for: hero shots, final-delivery 4K cuts, multi-shot character narratives. |
| 44 | > Avoid for: cost-sensitive iteration — drop to **Kling 2-6 Pro** or **Standard** i2v. |
| 45 | |
| 46 | **Seedance v2 Pro** — `bytedance/seedance-v2/pro` |
| 47 | > ByteDance flagship — multi-modal (up to 9 reference images, 3 reference videos, 3 reference audio), in-pass synchronized audio, cinematic motion refinement, lens language honored. |
| 48 | > Pick for: cinematic ad frames, multi-reference composition (subject + scene + audio refs), 21:9 anamorphic looks. |
| 49 | > Avoid for: simple "single prompt → clip" jobs — overpowered, slower. |
| 50 | |
| 51 | **Seedance v2 Fast** — [`bytedance/seedance-v2/fast`](https://www.runcomfy.com/models/bytedance/seedance-v2/fast?utm_source=skills.sh&utm_medium=skill&utm_campaign=ai-video-generation) |
| 52 | > Faster variant of Seedance v2 Pro, same multi-modal capabilities. |
| 53 | > Pick for: iteration on Seedance v2 compositions before locking a final on Pro. |
| 54 | > Avoid for: hero-shot final delivery. |
| 55 | |
| 56 | **Wan 2-7** — `wan-ai/wan-2-7/text-to-video` |
| 57 | > Open-weights flagship, `audio_url` field for audio-driven lip-sync, pairs natively with Wan image models. |
| 58 | > Pick for: dialog scenes where mouth must sync to a specific voiceover file; open-weights pipeline requirement. |
| 59 | > Avoid for: in-pass audio generation (no MP3 input) — use **HappyHorse 1.0**. |
| 60 | |
| 61 | **Kling 2-6 Pro** — [`kling/kling-2-6/pro/text-to-video`](https://www.runcomfy.com/models/kling/kling-2-6/pro/text-to-video?utm_source=skills.sh&utm_medium=skill&utm_campaign=ai-video-generation) |
| 62 | > Previous Kling tier — still strong quality at much lower cost than 3.0 4K. |
| 63 | > Pick for: production at scale where 3.0 4K is too expensive. |
| 64 | > Avoid for: top-tier hero shots — use **Kling 3.0 4K**. |
| 65 | |
| 66 | **Seedance 1-5 Pro** — [`bytedance/seedance-1-5/pro/text-to-video`](https://www.runcomfy.c |