Agent skill · DevOps & Cloud

vss-search-archive

Use this skill to run top-level VSS fusion search on archived video, or to ingest video files / RTSP streams for search. Do NOT use for ad-hoc visual Q&A (use vss-ask-video), live captioning (use vss-deploy-dense-captioning), or video summarization and reports (use vss-summarize-video).

NVIDIA-AI-Blueprintsgithub.com/NVIDIA-AI-BlueprintsGitHub ↗
claude-codeNOASSERTION
Install
npx skills add NVIDIA-AI-Blueprints/video-search-and-summarization --skill vss-search-archive --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 8
SKILL.md size: 16 KB
Bundled scripts: none
Version: 3.2.0
Declared author: NVIDIA Video Search and Summarization team
Path: skills/vss-search-archive/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,773 · +19 this week
Language: C++
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Purpose Run the top-level VSS fusion search across archived video, ingest new clips / RTSP streams for search, and delete search-ingested sources. ## Prerequisites - Active VSS deployment reachable on `$HOST_IP` (see `vss-deploy-profile` and `references/`). - `vss-manage-video-io-storage` skill installed (used to list and manage video sources before search). - NGC credentials in `$NGC_CLI_API_KEY` and `$NVIDIA_API_KEY` for any image pulls. - `curl`, `jq`, and Docker available on the caller. ## Instructions Follow the routing tables and step-by-step workflows below. Each section that ends in *workflow*, *quick start*, or *flow* is intended to be executed top-to-bottom. Detailed reference material lives in `references/`. ## Examples Worked end-to-end examples are kept under `evals/` (each `*.json` manifest contains a runnable scenario) and inline in the per-workflow `curl` blocks below. Run a Tier-3 evaluation with `nv-base validate <this-skill-dir> --agent-eval` to replay them. ## Limitations - Requires the matching VSS profile / microservice to be deployed and reachable from the caller. - NGC-hosted models and NIMs may be subject to rate-limits, GPU memory requirements, and lice

What's inside
Steps it walks through
  1. Purpose
  2. Prerequisites
  3. Instructions
  4. Examples
  5. Limitations
  6. Troubleshooting
  7. When to Use
  8. Deployment prerequisite
  9. Ingestion prerequisite (required before any /generate)
  10. File upload — universal three-step flow
  11. RTSP stream — single endpoint
  12. Delete source — agent-backed cleanup
  13. How Search Works
  14. Mandatory workflow
Ships with 7 files
  • BENCHMARK.md
  • evals/evals.json
  • evals/search.json
  • references/discovery_modes.md
  • references/troubleshooting.md
  • skill-card.md
  • skill.oms.sig
Commands it runs
curl -sf --max-time 5 "http://${HOST_IP}:8000/docs" >/dev/null \
The final-chunk response carries sensorId.
printf '%s' "${UPLOAD_RESPONSE}" \
curl -s -X POST "http://${HOST_IP}:8000/api/v1/rtsp-streams/add" \
For video files: video_id is the VIOS sensor/video UUID
curl -s -X DELETE "http://${HOST_IP}:8000/api/v1/videos/<video_id>" | jq .
For RTSP streams: name is the registered source name
curl -s -X DELETE "http://${HOST_IP}:8000/api/v1/rtsp-streams/delete/<name>" | jq .
Consider only ingested video file sources by default
curl -s -X POST http://${HOST_IP}:8000/generate \
More from video-search-and-summarization
All skills →
About this skill
What does the vss-search-archive skill do?

Use this skill to run top-level VSS fusion search on archived video, or to ingest video files / RTSP streams for search. Do NOT use for ad-hoc visual Q&A (use vss-ask-video), live captioning (use vss-deploy-dense-captioning), or video summarization and reports (use vss-summarize-video).

How do I install it?

Run `npx skills add NVIDIA-AI-Blueprints/video-search-and-summarization --skill vss-search-archive --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From NVIDIA-AI-Blueprints/video-search-and-summarization, a repository with 1,773 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going