FastVideo: Skill for Claude Code

.agents/skills/add-model-09-pipeline/SKILL.md

add-model-09-pipeline is a skill for Claude Code, Codex from hao-ai-lab/FastVideo. It costs 46 tokens per session (2,945 once invoked), scanned A, original, Apache-2.0.

A workflow for connecting FastVideo's verified model components into a complete working pipeline. A pipeline is the sequence of stages that turns inputs into generated video.

In plain words
What is it for?
Adding pipeline classes, configurations, presets, registry entries, examples, smoke tests, and end-to-end parity tests.
Why use it?
It prevents pipeline wiring from being tested before the individual components have been shown to work correctly.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is hao-ai-lab/FastVideo's own configuration. It tells Claude Code and Codex how to work on FastVideo itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything FastVideo configures →

About the project

FastVideo is a framework for training and running accelerated video-generation models, including real-time inference and post-training workflows. It is for researchers and developers building or deploying diffusion-based systems that generate video.

hao-ai-lab/FastVideo · 4,368 stars · on GitHub · hao-ai-lab.github.io

Reuse

Borrowing it

Nothing to install: this file belongs to hao-ai-lab/FastVideo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/hao-ai-lab/FastVideo/main/.agents/skills/add-model-09-pipeline/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hao-ai-lab/FastVideo

Made for: Claude Code, Codex.

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 add-model-09-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/hao-ai-lab/fastvideo/add-model-09-pipeline/github.svg)](https://agentmods.dev/skills/hao-ai-lab/fastvideo/add-model-09-pipeline)
Your own site
<a href="https://agentmods.dev/skills/hao-ai-lab/fastvideo/add-model-09-pipeline"><img src="https://agentmods.dev/badge/skills/hao-ai-lab/fastvideo/add-model-09-pipeline/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 add-model-09-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/hao-ai-lab/fastvideo/add-model-09-pipeline"><img src="https://agentmods.dev/badge/skills/hao-ai-lab/fastvideo/add-model-09-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,945 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00046 $0.02945
Opus 5 $0.00023 $0.01473
Sonnet 5 $0.00009 $0.00589
Haiku 4.5 $0.00005 $0.00295

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

Security

Grade A, and why

add-model-09-pipeline 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (templates/pipeline_parity_test.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.agents/skills/add-model-09-pipeline/SKILL.md · 256 lines

How it starts

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

Add Model Pipeline

Goal

Implement and verify the end-to-end FastVideo pipeline after the native components and converted weights have passed non-skip component parity. This skill owns pipeline class/stage wiring, pipeline configs, presets, registry entries, examples, smoke tests, and pipeline parity-debug.

FastVideo has one pipeline architecture: stage-based composition through ComposedPipelineBase. Add or specialize stages only when existing stages cannot represent the official behavior safely.

Hard Gate

Do not start pipeline work until every required component, including reused components, has a non-skip local parity PASS.

If any component row is missing, skipped, red, or blocked, return to /add-model Phase 6. Pipeline parity cannot distinguish stage wiring mistakes from broken component numerics when component parity is still unresolved.

Inputs

Follow ../add-model/shared/common_rules.md for token/auth safety, state files, escape hatches, production boundaries, and skip/pass semantics.

Require a complete packet matching ../add-model/contracts/pipeline_context.md.

The packet must include:

  • official pipeline files and official call/default sources;
  • workload types, input/output modalities, and output contract;
  • converted or source model_index.json path;
  • component parity rows, all non_skip_pass;
  • target FastVideo pipeline/config/preset/registry/example/test paths;
  • local_tests_readme and port_state_file paths.

Outputs

  • Pipeline package under fastvideo/pipelines/basic/<family>/.
  • Pipeline config under fastvideo/configs/pipelines/<family>.py or a documented family-local config file when that matches existing project style.
  • Presets under fastvideo/pipelines/basic/<family>/presets.py.
  • Registry updates in fastvideo/registry.py.
  • Basic example under examples/inference/basic/basic_<family>*.py.
  • Local smoke and parity tests under tests/local_tests/pipelines/.
  • Updated tests/local_tests/<model_family>/README.md.
  • Updated tests/local_tests/<model_family>/PORT_STATUS.md.
  • Handoff matching ../add-model/contracts/pipeline_handoff.md.

Read the full file on GitHub · 256 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 256 lines · 46 tokens per session scan A 4406de3a2613

Subscribe to this mod's changes

add-model-09-pipeline is a skill published in the GitHub repository hao-ai-lab/FastVideo (4,368 stars, last pushed 2d ago), licensed Apache-2.0. It adds 46 tokens to every session and 2,945 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-30.