FastVideo: Skill for Claude Code

.agents/skills/add-model-10-pr-review/SKILL.md

add-model-10-pr-review is a skill for Claude Code, Codex from hao-ai-lab/FastVideo. It costs 104 tokens per session (1,514 once invoked), scanned A, original, Apache-2.0.

A review checklist for FastVideo pull requests that add or change AI video model families, components, pipelines, or model files. A pull request is a proposed code change submitted for review.

In plain words
What is it for?
Reviewing model ports, model variants, checkpoint conversion, pipeline changes, parity tests, and generated-video quality checks in FastVideo.
Why use it?
It helps reviewers check important model changes consistently without starting implementation work.

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-10-pr-review/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-10-pr-review

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hao-ai-lab/fastvideo/add-model-10-pr-review"><img src="https://agentmods.dev/badge/skills/hao-ai-lab/fastvideo/add-model-10-pr-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,514 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.00104 $0.01514
Opus 5 $0.00052 $0.00757
Sonnet 5 $0.00021 $0.00303
Haiku 4.5 $0.00010 $0.00151

Measured 12d ago against content hash e7e8be643dd0, 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-10-pr-review 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.

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-10-pr-review/SKILL.md · 142 lines

How it starts

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

Add-Model PR Review

Use this skill when a reviewed PR appears to add, port, or substantially modify a FastVideo model family, model variant, first-class model component, checkpoint conversion, model pipeline, or local parity coverage.

This is a review skill, not an implementation workflow. Do not run /add-model or start writing missing port code during review. Use the add-model skill stack as a rubric for findings.

Trigger Paths

Trigger this skill if git diff --name-only <base>...HEAD includes any of:

  • fastvideo/models/dits/, fastvideo/configs/models/dits/
  • fastvideo/models/vaes/, fastvideo/configs/models/vaes/
  • fastvideo/models/encoders/, fastvideo/configs/models/encoders/
  • fastvideo/models/schedulers/, fastvideo/configs/models/schedulers/
  • fastvideo/models/upsamplers/, fastvideo/configs/models/upsamplers/
  • fastvideo/models/audio/, fastvideo/configs/models/audio/
  • fastvideo/pipelines/basic/, fastvideo/configs/pipelines/
  • fastvideo/registry.py, fastvideo/api/sampling_param.py
  • scripts/checkpoint_conversion/
  • examples/inference/basic/
  • tests/local_tests/, especially component or pipeline parity tests
  • fastvideo/tests/ssim/ or other quality-regression tests for generated media

Also trigger when the PR title/body claims a new model, model variant, VAE, encoder, scheduler, conditioner, pipeline, conversion script, or generated-media quality baseline even if the path list is incomplete.

Review Inputs

Read these add-model references as review checklists:

  • ../add-model/SKILL.md: phase gates and final handoff requirements.
  • ../add-model/shared/common_rules.md: token/auth safety, production import boundaries, state files, and skip/pass semantics.
  • ../add-model/contracts/final_handoff.md: final evidence expected from a complete port.
  • ../add-model/contracts/component_context.md and ../add-model/contracts/component_skill_handoff.md: component evidence and parity-debug expectations.
  • ../add-model/contracts/conversion_request.md and ../add-model/contracts/conversion_handoff.md: conversion evidence, strict-load status, config validation, and retry context.
  • ../add-model/contracts/pipeline_context.md and ../add-model/contracts/pipeline_handoff.md: pipeline class/stage/config/ preset/registry/example evidence.

Read the full file on GitHub · 142 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. 12d ago First seen · 142 lines · 104 tokens per session scan A e7e8be643dd0

Subscribe to this mod's changes

add-model-10-pr-review is a skill published in the GitHub repository hao-ai-lab/FastVideo (4,368 stars, last pushed 3d ago), licensed Apache-2.0. It adds 104 tokens to every session and 1,514 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

diffusers-ascend-pipeline

A guide for running image and video generation pipelines on Huawei Ascend NPUs with the Diffusers library. Diffusers is a software library for using generative models, and the guide covers model pipelines, memory settings, LoRA adapters, and multi-card inference.

ascend-ai-coding/awesome-ascend-skills · 134 tokens

submit-github-pr

Use when publishing an existing TensorRT-Model-Connect change as a GitHub pull request. Verifies authenticated repository access, branch and diff scope, validation evidence, commit identity, reviewer-facing text, exact pushed head, and the created draft PR without merging it.

NVIDIA/TensorRT-Model-Connect · 58 tokens

gptq

Post-training 4-bit quantization for LLMs with minimal accuracy loss. Use for deploying large models (70B, 405B) on consumer GPUs, when you need 4× memory reduction with <2% perplexity degradation, or for faster inference (3-4× speedup) vs FP16. Integrates with transformers and PEFT for QLoRA fine-tuning.

davila7/claude-code-templates · 84 tokens

openrlhf-training

High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.

davila7/claude-code-templates · 72 tokens

groq-inference

Ultra-fast LLM inference on custom LPU hardware. OpenAI-compatible API at api.groq.com. Lowest latency in the industry (500-1000+ tok/s). Supports chat completions, vision, audio (Whisper STT + TTS), tool calling, JSON mode, and streaming. Free tier available. Inference only — no training.

synthetic-sciences/openscience · 77 tokens

huggingface-llm-trainer

Train or fine-tune language models with TRL or Unsloth on Hugging Face Jobs, including SFT, DPO, GRPO, reward models, and GGUF conversion. Use for cloud LLM training; use huggingface-vision-trainer for vision tasks.

waybarrios/opencode-power-pack · 65 tokens