wan-t2v-video

wan-t2v-video is a skill for Claude Code from sandyup/comfyui-mcp. It costs 38 tokens per session (4,152 once invoked), scanned A, a copy of wan-t2v-video, MIT.

A guide to building WAN 2.2 text-to-video workflows in ComfyUI, which create videos from text without an image input.

In plain words
What is it for?
Use it to configure WAN 2.2 text-to-video graphs with the high-noise and low-noise models, text encoder, video latent setup, and two-pass sampling.
Why use it?
It explains the required two-model process: one model establishes motion and composition, while another refines later frames.

Skill for Claude Code

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

Part of the comfy plugin — 32 skills, 11 commands, 4 agents, 2 hooks shipped together

Good fit Use it to configure WAN 2.2 text-to-video graphs with the high-noise and low-noise models, text encoder, video latent setup, and two-pass sampling.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sandyup/comfyui-mcp/wan-t2v-video
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 sandyup/comfyui-mcp --skill wan-t2v-video
Clone the repo
git clone --depth 1 https://github.com/sandyup/comfyui-mcp

Made for: Claude Code.

Or install comfy, the plugin that ships this one along with the rest of its 32 skills, 11 commands, 4 agents, 2 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 wan-t2v-video

README.md
[![agentmods](https://agentmods.dev/badge/skills/sandyup/comfyui-mcp/wan-t2v-video/github.svg)](https://agentmods.dev/skills/sandyup/comfyui-mcp/wan-t2v-video)
Your own site
<a href="https://agentmods.dev/skills/sandyup/comfyui-mcp/wan-t2v-video"><img src="https://agentmods.dev/badge/skills/sandyup/comfyui-mcp/wan-t2v-video/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 wan-t2v-video

Your own site · 80×15
<a href="https://agentmods.dev/skills/sandyup/comfyui-mcp/wan-t2v-video"><img src="https://agentmods.dev/badge/skills/sandyup/comfyui-mcp/wan-t2v-video.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,152 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 92% copy Near-identical to another mod 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.00038 $0.04152
Opus 5 $0.00019 $0.02076
Sonnet 5 $0.00008 $0.00830
Haiku 4.5 $0.00004 $0.00415

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

Security

Grade A, and why

wan-t2v-video 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 8d 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.

Origin

This is a copy

92% identical to wan-t2v-video — 53 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugin/skills/wan-t2v-video/SKILL.md · 335 lines

How it starts

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

WAN 2.2 Text-to-Video (T2V) Workflows

Overview

WAN 2.2 T2V generates videos from text prompts using a 14B parameter MoE (Mixture of Experts) architecture split across two specialized models:

  • HighNoise model: Handles early denoising — establishes structure, motion, composition
  • LowNoise model: Handles late denoising — refines details, sharpens output

This dual-model technique is the same as FLF/I2V (see wan-flf-video skill) but without image conditioning nodes.

Key difference from I2V/FLF: T2V does NOT use CLIPVisionEncode, WanFirstLastFrameToVideo, or any image input. It uses EmptyHunyuanLatentVideo for latent initialization and text-only conditioning.

Models

UNET (Installed)

Model Loader Notes
Wan2_2-T2V-A14B_HIGH_fp8_e4m3fn_scaled_KJ.safetensors UNETLoader HighNoise expert, 14.3GB FP8
Wan2_2-T2V-A14B-LOW_fp8_e4m3fn_scaled_KJ.safetensors UNETLoader LowNoise expert, 14.3GB FP8

Text Encoder

Component Node Model Notes
CLIP (T5) CLIPLoader (type=wan) umt5_xxl_fp8_e4m3fn_scaled.safetensors UMT5-XXL fp8, in clip/

VAE

Component Node Model
VAE VAELoader wan_2.1_vae.safetensors

VACE Modules (Installed — For Advanced Control)

Model Size Notes
Wan2_2_Fun_VACE_module_A14B_HIGH_bf16.safetensors 5.8GB HighNoise VACE module
Wan2_2_Fun_VACE_module_A14B_LOW_bf16.safetensors 5.8GB LowNoise VACE module

VACE modules add reference image / pose / depth conditioning to T2V. See WanVideoWrapper section below.

Lightning LoRAs (Installed)

T2V Lightning v1.1 (Paired Hi/Lo)

LoRA Applies To Path
wan2.2_t2v_lightx2v_4steps_lora_v1.1_high_noise HighNoise UNET Unknown/no tags/
wan2.2_t2v_lightx2v_4steps_lora_v1.1_low_noise LowNoise UNET Unknown/no tags/

Read the full file on GitHub · 335 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. 8d ago First seen · 335 lines · 38 tokens per session scan A 0eae77cd730a

Subscribe to this mod's changes

wan-t2v-video is a skill published in the GitHub repository sandyup/comfyui-mcp (1 stars, last pushed 2mo ago), licensed MIT. It adds 38 tokens to every session and 4,152 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to wan-t2v-video, differing in 53 lines, and is treated as a copy.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens