wan-flf-video

wan-flf-video is a skill for Claude Code from sandyup/comfyui-mcp. It costs 33 tokens per session (7,922 once invoked), scanned A, a copy of wan-flf-video, MIT.

A guide for building WAN 2.2 first-last-frame videos, which create a transition between a starting image and an ending image in ComfyUI, a visual AI workflow tool.

In plain words
What is it for?
Creating two-pass WAN 2.2 image-to-video workflows with the native nodes or WanVideoWrapper and VACE nodes.
Why use it?
It prevents a common model-setup mistake: WAN 2.2 needs separate high-noise and low-noise passes for usable results.

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 Creating two-pass WAN 2.2 image-to-video workflows with the native nodes or WanVideoWrapper and VACE nodes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sandyup/comfyui-mcp/wan-flf-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-flf-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-flf-video

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/sandyup/comfyui-mcp/wan-flf-video"><img src="https://agentmods.dev/badge/skills/sandyup/comfyui-mcp/wan-flf-video.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,922 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 88% 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.00033 $0.07922
Opus 5 $0.00016 $0.03961
Sonnet 5 $0.00007 $0.01584
Haiku 4.5 $0.00003 $0.00792

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

Security

Grade A, and why

wan-flf-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 10d 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

88% identical to wan-flf-video — 192 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-flf-video/SKILL.md · 540 lines

How it starts

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

WAN 2.2 First-Last-Frame (FLF) Video Workflows

Overview

First-Last-Frame (FLF) video generation takes a start image and an end image and generates a smooth video transition between them. WAN 2.2 I2V (Image-to-Video) 14B model excels at this.

CRITICAL: Dual Hi-Lo Architecture (REQUIRED)

WAN 2.2 I2V uses a split-noise architecture. Unlike WAN 2.1, the 2.2 model was trained with separate HighNoise and LowNoise components that handle different denoising ranges. You MUST use both models in a two-pass KSamplerAdvanced setup. Using a single model produces low-quality, broken output.

  • HighNoise model (pass 1, steps 0→N/2): Establishes structure, motion, and composition
  • LowNoise model (pass 2, steps N/2→N): Refines details and ensures fidelity to input frames
  • Both passes share the same conditioning from WanFirstLastFrameToVideo
  • Pass 1 returns noisy latent → Pass 2 continues from there

NEVER use a single KSampler with only one model for WAN 2.2 I2V.

Two native approaches are available:

  1. Native Dual Hi-Lo (Default)WanFirstLastFrameToVideo + dual KSamplerAdvanced two-pass
  2. WanVideoWrapperWanVideoVACEStartToEndFrame + WanVideoVACEEncode + WanVideoSampler (VACE, caching, context windows)

Models

UNET Pairs (Always load BOTH Hi and Lo)

Remix NSFW (Recommended — built-in lightning, fp16):

Model Loader Notes
Wan2.2_Remix_NSFW_i2v_14b_high_lighting_fp16_v2.1.safetensors UNETLoader HighNoise, built-in lightning acceleration
Wan2.2_Remix_NSFW_i2v_14b_low_lighting_fp16_v2.1.safetensors UNETLoader LowNoise, built-in lightning acceleration

GGUF Q8 (Alternative — needs external lightning LoRAs):

Model Loader Notes
Wan2.2-I2V-A14B-HighNoise-Q8_0.gguf UnetLoaderGGUF HighNoise, quantized
Wan2.2-I2V-A14B-LowNoise-Q8_0.gguf UnetLoaderGGUF LowNoise, quantized

Official fp8:

Model Loader Notes
wan2.2_i2v_high_noise_14B_fp8_scaled.safetensors UNETLoader HighNoise, needs lightning LoRA
wan2.2_i2v_low_noise_14B_fp8_scaled.safetensors UNETLoader LowNoise, needs lightning LoRA

Read the full file on GitHub · 540 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. 10d ago First seen · 540 lines · 33 tokens per session scan A 0b55840bd6c5

Subscribe to this mod's changes

wan-flf-video is a skill published in the GitHub repository sandyup/comfyui-mcp (1 stars, last pushed 2mo ago), licensed MIT. It adds 33 tokens to every session and 7,922 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to wan-flf-video, differing in 192 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