npx skills add ...
npx skills add nvidia/skills --skill vss-ask-video
Use this skill to ask the VSS agent's video_understanding tool a fresh visual question about a recorded clip. Not for prior tool output, search hits, or metadata-answerable questions.
npx skills add nvidia/skills --skill vss-ask-video
Use this skill when you need details about the video which requires VLM to look at the video frames — for example the agent has no usable prior answer and needs a fresh look at the pixels for a specific clip.
Do not use this skill when a database / MCP / prior tool output already answers the question, unless the user explicitly wants verification against the video.
This skill requires a VSS profile that serves the video_understanding tool — typically base (recommended) or lvs. Before any request:
Probe the VSS agent:
If the probe fails, ask the user:
"No VSS profile is running on
$HOST_IP. Shall I deploybase(recommended for per-clip VLM QnA) using the/vss-deploy-profileskill? If you preferlvs, say so."
/vss-deploy-profile -p base (or -p lvs if the user prefers). Return here once it succeeds.If the probe passes, proceed.
You MUST list VST sensors before any /generate call. This is required even when the user names the sensor explicitly, even when the user asserts the video is already uploaded, and even when a previous turn appeared to use the same video. Do not skip this step.
List sensors:
Compare the returned name values against the user-supplied <sensor-id> (or filename stem, e.g. warehouse_safety_0001).
If a matching sensor is present → proceed to the Agent workflow below.
If no matching sensor is present — upload the video first, then re-list to confirm the new sensor appears:
See /vss-manage-video-io-storage for full upload semantics (v1 vs v2, conflict handling, delete flow). In interactive runs, confirm with the user before uploading. Never issue an unconditional PUT without first running the sensor-list check above — that is exactly the failure mode this prerequisite exists to prevent.
The Sensor prerequisite above must have already confirmed (or made) the sensor exist on VST. Then:
/generate)/generate returns a JSON object with the assistant output in value, for example:
There is no separate clean-answer field. The consumable answer is the text in .value after removing any <agent-think>...</agent-think> block.
Required handling for this skill (and any downstream caller):
.value from the JSON response.<agent-think>...</agent-think> sections wherever they appear.Example extraction:
VIDEO_URL is valid for the VLM./generate for ad-hoc video Q&A.*