Google's official skill for driving the gcloud CLI safely from an agent: validate every command against its own help text, cap the output, and refuse the operations that should never run unattended.
NVIDIA VSS Video Q&ASkill
Summary
NVIDIA's official skill for asking a vision-language model fresh questions about recorded video through the Video Search and Summarization blueprint — only when the pixels actually need looking at.
Features
- Asks the VSS agent's video_understanding tool a fresh visual question about a recorded clip
- Explicitly declines when prior tool output, search hits or metadata already answer it
- Probes the VSS agent and offers to deploy the base or lvs profile if none is running
- Requires listing VST sensors before any generate call, even when the sensor is named
- Handles follow-up detail questions after a coarse summary or a generated report
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
Watch the clip from camera 3 between 14:02 and 14:05 and tell me whether anyone entered without a hard hat.
Description
NVIDIA's Video Search and Summarization (VSS) blueprint runs a vision-language model over recorded footage so you can ask about it in words. This official skill is the part of that blueprint that answers a fresh visual question — what is happening in a clip, which objects or people appear, what colour something is, when an event occurs, whether a safety condition is met.
The interesting part is when it refuses
Most of the skill is a discipline about not running the VLM. Inference over video frames is expensive, so the skill will not fire when a database, an Elasticsearch hit, an MCP result, a prior summary or even a filename already answers the question — only when the agent genuinely needs a new look at the pixels, or when you explicitly want an answer verified against the footage. That constraint is what keeps a chatty agent from re-watching the same clip five times to answer five follow-ups.
Preflight
It checks its own dependencies before asking anything. It probes the VSS agent at http://${HOST_IP}:8000/docs, and if nothing is running it offers to hand off to the vss-deploy-profile skill to bring up the base profile (recommended for per-clip Q&A) or lvs. It then requires listing VST sensors before any /generate call — even when you have named the sensor yourself, because an asserted sensor name that does not exist produces a confidently wrong answer rather than an error.
Prerequisites
A running VSS profile that serves the video_understanding tool, and network reach to the VSS agent. The skill is versioned alongside the blueprint (3.2.0 at the time of writing) and lives in NVIDIA's agent-skills catalogue under Apache-2.0.
Related Skills
Convex's official top-level agent skill — routes an agent to the right convex-* skill for the task and to a served capability catalogue that stays current without a reinstall.
Official Shopify skill for theme development in Liquid — teaches an agent the modern theme architecture of sections, blocks and snippets, and validates generated templates and schemas.
Shopify's official skill for writing Admin GraphQL queries and mutations — it searches the live API docs and validates every operation against the schema before handing you code.