Data & Analysis ✓ NVIDIA · Official video-annotationvideo-captioningqa-generationchain-of-thoughtvlm-distillationtao-toolkitdocker

TAO Video Reasoning Annotation Pipeline

Convert raw videos into chain-of-thought training data.

FollowSkills review · FSRS-2.0
Not recommended
47/ 100 5-point scale 2.4 / 5
Trust12 / 25 · 2.4/5

The documentation requires confirming videos, domain, mode, and VLM access, and it describes Gemini and OpenAI-compatible data flows. However, Read/Bash/Write permissions are broad, and it lacks explicit consent for uploading videos, sensitive-video handling, least-privilege guidance, rollback, and safeguards against placing secrets in configuration. NVIDIA attribution and the Apache-2.0 declaration provide provenance evidence but do not resolve those gaps, so points were deducted.

Reliability7 / 20 · 1.8/5

The workflow, configuration, resume behavior, and common errors are documented, and users are told to inspect intermediate JSONL outputs. However, there is no committed test suite or CI evidence covering key paths, and some documentation is inconsistent, including LLM step descriptions and Step 4 task names versus qa_types names. Static evidence supports only limited operational confidence, so points were deducted.

Adaptability8 / 15 · 2.7/5

The audience, video/JSONL inputs, domain branches, modes, and trigger phrases are relatively clear, with general, traffic, warehouse, and custom paths. However, Chinese-language output and mainland-China deployment fit are not established; core Gemini access may be unreachable or constrained, while self-hosting requires additional deployment. Non-fit boundaries are also incomplete, so points were deducted.

Convention10 / 15 · 3.3/5

The skill has useful layering with quick start, configuration, domain adaptation, error patterns, output formats, versioning, and an Apache-2.0 license. However, the benchmark records missing recommended Instructions and Examples sections, the author format is incomplete, the version is only 0.1.0, and there is no clear changelog, maintenance owner, or update procedure. The benchmark also reports schema and folder-hierarchy findings, so points were deducted.

Effectiveness6 / 15 · 2.0/5

The documentation clearly targets a complete conversion from videos to captions, structured descriptions, and JSON/JSONL QA outputs using the stated envelope. The committed benchmark reports one passing evaluation. However, that evaluation covered only a planning task, not real video generation quality, cost, recovery, or comparative benefit over alternatives. Under static calibration, only moderate credit is justified, so points were deducted.

Verifiability4 / 10 · 2.0/5

The fixed revision, configuration and error references, prompt examples, and committed benchmark provide some auditable evidence. However, the benchmark contains only one positive task with no negative coverage, there is no key-path test or CI evidence, and no independent corroboration. Nothing was executed in this review, so points were deducted.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 55f18499943e
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Before you use it
  • Before execution, explicitly confirm whether videos may be sent to the selected external VLM/LLM, and avoid placing API keys in YAML; prefer environment variables or controlled secret management.
  • Generated Chain-of-Thought traces may contain sensitive video content, identifying information, or incorrect inferences; perform human sampling, privacy review, and dataset-license checks.
  • For mainland-China deployments, verify reachability of services such as Gemini and prepare an approved local or OpenAI-compatible alternative.
  • Use a small pilot first and review caption, description, and QA factual accuracy before scaling.
See the full review method →

What does this skill do, and when should you use it?

This skill uses VLMs and LLMs to turn raw videos into training data for video-understanding models. It produces multi-level captions, structured descriptions, and multiple-choice, binary, and open-ended questions with reasoning traces. The workflow supports general, traffic, warehouse, and custom domains, with selectable steps and resume behavior. It requires Docker, NVIDIA Container Toolkit, and at least one Gemini or OpenAI-compatible video-model endpoint.

It reads a video directory or JSONL files containing video_path entries and recursively handles MP4, AVI, MOV, and MKV files. Optional filtering and classification are followed by VLM calls for global, dense, chunk, and anomaly-highlight captions; LLM calls then synthesize structured descriptions and generate MCQ, binary, and open-ended questions. The final parsing step writes per-task JSON files in the tao-vl-reason-v1.0 format, alongside per-step JSONL outputs under results_dir.

  1. A video-understanding team needs timestamped captions and question-answer training data from raw footage.
  2. A data engineer needs to automatically label a mixed dataset containing normal and anomalous videos.
  3. A researcher wants multiple-choice, binary, or open-ended video questions with step-by-step reasoning traces.
  4. A traffic or warehouse monitoring team needs domain-specific prompts tailored to its camera scenarios.
  5. A first-time user or prompt author needs a 5–10 video pilot before processing the full dataset.

What are this skill's strengths and limitations?

Pros
  • Covers the full workflow from video captioning through descriptions, QA generation, and final dataset JSON.
  • Supports Gemini and OpenAI-compatible endpoints, with cheaper text-only LLMs usable for later steps.
  • Includes general, traffic, warehouse, and custom-domain prompt paths.
  • Steps are independently selectable and processed videos are skipped on reruns, enabling resume-based iteration.
Limitations
  • Requires Docker, NVIDIA Container Toolkit, ffmpeg/ffprobe, and an external VLM endpoint.
  • Model access, usage cost, and API rate limits affect execution; worker parallelism must be managed accordingly.
  • Output quality depends on caption quality, so prompts and domain adaptations require inspection and iteration.
  • The supplied source provides no standalone test suite, performance benchmark, or cross-platform hardware validation.

How do you install this skill?

Use the Skills CLI command provided by the repository README: npx skills add nvidia/skills --skill tao-generate-video-reasoning-annotations --yes. The repository is a collection of 324 skills; this profile concerns only tao-generate-video-reasoning-annotations. The supplied source does not document a separate manual-copy procedure or additional package installation steps.

How do you use this skill?

Confirm the video paths, domain, dataset mode, and VLM/LLM endpoint first. Then run the pipeline inside the TAO Toolkit container: auto_label generate -e /path/to/spec.yaml results_dir=/results video_reasoning_annotation.data.video_root=/videos video_reasoning_annotation.vlm.gemini.api_key=$GOOGLE_API_KEY video_reasoning_annotation.workflow.mode=auto. For a first run, a custom domain, or edited prompts, start with 5–10 videos and inspect results_dir/step_1a_caption/captions.jsonl and results_dir/step_3_qa/qa_output.jsonl.

How does this skill compare with similar options?

The skill explicitly supports two endpoint families: Gemini, which is the default, and OpenAI-compatible endpoints configured with base_url, model_name, and api_key. Steps 0–1 require video-capable model calls, while steps 2–3 are text-only and can use a smaller or less expensive model.

FAQ

Is Gemini mandatory?
No. The pipeline supports Gemini and OpenAI-compatible endpoints. The latter requires base_url, model_name, and api_key.
Can it run without a model endpoint?
Not directly. It requires GOOGLE_API_KEY or an OpenAI-compatible endpoint; the source also points to a separate TAO inference-service skill for self-hosting an endpoint.
What files does it produce?
Steps 0–3 produce one JSON object per video per JSONL line. Step 4 produces up to 10 non-empty task JSON files using the tao-vl-reason-v1.0 envelope.
How should I reduce first-run risk?
Run a 5–10 video pilot first, review caption accuracy and QA answer/reasoning quality, then scale to the full dataset.

More skills from this repository

All from NVIDIA/skills

Data & Analysis ✓ NVIDIA · Official

TAO FastFoundationStereo Real-Time Stereo Depth

Run TAO FastFoundationStereo workflows that produce low-latency disparity maps from stereo images.

Dev & Engineering ✓ NVIDIA · Official

TAO Sparse4D Training Skill

Guides agents through training, evaluation, export, quantization, and inference for multi-camera temporal 3D detection and tracking.

Data & Analysis ✓ NVIDIA · Official

TAO FoundationStereo Stereo Depth

Generate disparity maps from stereo images and manage FoundationStereo training, evaluation, and deployment for 3D reconstruction.

Data & Analysis ✓ NVIDIA · Official

TAO Standard Training Workflow

Run a controlled TAO train, evaluate, and export workflow on labeled data.

Automation & Ops ✓ NVIDIA · Official

TAO on Brev GPU Instances

Run and manage TAO training, evaluation, and inference on Brev GPU instances.

Data & Analysis ✓ NVIDIA · Official

TAO BEVFusion Training

Train, evaluate, and run inference on BEV 3D detection models that fuse LiDAR and camera data with TAO.

Data & Analysis ✓ NVIDIA · Official

TAO NVPanoptix3D

Train and run 3D panoptic reconstruction with occupancy completion from posed RGB images.

Automation & Ops ✓ NVIDIA · Official

TAO Local Docker Runner

Run TAO jobs on a local or remote single-node Docker host with NVIDIA GPU support.

Data & Analysis ✓ NVIDIA · Official

TAO Visual ChangeNet Inspection

Train paired-image classifiers and change-segmentation models for PCB defect inspection.

Automation & Ops ✓ NVIDIA · Official

TAO Inference Microservice Deployment

Start, query, and stop TAO inference microservices across supported compute platforms.

Data & Analysis ✓ NVIDIA · Official

TAO Image Referring Expression Pipeline

Turns images and KITTI boxes into grounded referring-expression annotations.

Data & Analysis ✓ NVIDIA · Official

TAO Video Action Recognition

Train, evaluate, export, and run inference for RGB, optical-flow, and multi-stream video action models with NVIDIA TAO.

Automation & Ops ✓ NVIDIA · Official

VSS Video Analysis Reports

Generates structured reports from recorded video clips or incident time ranges.

Data & Analysis ✓ NVIDIA · Official

TAO VLM Binary Gap Analyzer

Extract false-positive and false-negative cases from VLM yes/no predictions for downstream root-cause analysis.

Data & Analysis ✓ NVIDIA · Official

TAO PyT Image Classification

Train, evaluate, optimize, and deploy PyTorch image classifiers with NVIDIA TAO.

Data & Analysis ✓ NVIDIA · Official

TAO RT-DETR Object Detection

Guides NVIDIA TAO workflows for training and deploying real-time RT-DETR detectors.

Automation & Ops ✓ NVIDIA · Official

TAO Workflow Launch Gate

Preflight TAO jobs across platforms, credentials, data, containers, and monitoring.

Data & Analysis ✓ NVIDIA · Official

TAO DINO Object Detection

Run NVIDIA TAO workflows for training and deploying DINO 2D object detectors.

Data & Analysis ✓ NVIDIA · Official

TAO Grounding DINO Open-Vocabulary Detection

Train and deploy text-guided object detectors without a fixed class vocabulary.

Automation & Ops ✓ NVIDIA · Official

TAO on SLURM

Run TAO training, evaluation, and inference on a remote GPU cluster through SSH, SLURM, and Pyxis/Enroot.

Related skills