vss-search-archive
Original:🇺🇸 English
Translated
Use 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).
7installs
Added on
NPX Install
npx skill4agent add promptingcompany/nv-skills vss-search-archiveTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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 (see
$HOST_IPandvss-deploy-profile).references/ - skill installed (used to list and manage video sources before search).
vss-manage-video-io-storage - NGC credentials in and
$NGC_CLI_API_KEYfor any image pulls.$NVIDIA_API_KEY - ,
curl, and Docker available on the caller.jq
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 (each manifest contains a runnable scenario) and inline in the per-workflow blocks below. Run a Tier-3 evaluation with to replay them.
evals/*.jsoncurlnv-base validate <this-skill-dir> --agent-evalLimitations
- 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 license restrictions.
- Concurrency, GPU memory, and storage limits depend on the host hardware and the profile's compose file.
Troubleshooting
- Error: REST call returns connection refused. Cause: target microservice not running. Solution: probe or
/docs; redeploy via/healthor the matchingvss-deploy-profileskill.vss-deploy-* - Error: HTTP 401/403 from NGC pulls. Cause: missing/expired . Solution:
NGC_CLI_API_KEYand re-export the key before retrying.docker login nvcr.io - Error: container OOM or model fails to load. Cause: insufficient GPU memory for the selected profile. Solution: switch to a smaller variant or free GPUs via .
docker compose down
Video Search Workflows
Alpha Feature — not recommended for production use.
Search video archives by natural language using Cosmos Embed1 embeddings. Requires the search profile — deploy with the skill (). These videos sources can be ingested files or RTSP streams.
vss-deploy-profile-p searchWhen to Use
- "Find all instances of forklifts"
- "When did someone enter the restricted area?"
- "Show me people near the loading dock"
- "Search for vehicles between 8am and noon"
- Any natural-language search across video archives
- "Ingest for search" / "upload this video for search"
<file> - "Add this RTSP stream for search" / "register for search"
<rtsp_url> - "Delete from search" / "remove this video and embeddings"
<file>
Deployment prerequisite
This skill requires the VSS search profile running on the host at . Before any request:
$HOST_IP-
Probe the stack:bash
curl -sf --max-time 5 "http://${HOST_IP}:8000/docs" >/dev/null \ && curl -sf --max-time 5 "http://${HOST_IP}:9200/" >/dev/null(The second check confirms Elasticsearch is up — unique to the search profile.) -
If the probe fails, ask the user:"The VSSprofile isn't running on
search. Shall I deploy it now using the$HOST_IPskill with/vss-deploy-profile?"-p search- If yes → hand off to the skill. Return here once it succeeds.
/vss-deploy-profile - If no → stop. Do not run this skill against a missing or wrong-profile stack.
(If your caller has granted explicit pre-authorization to deploy autonomously — e.g. the request says "pre-authorized to deploy prerequisites", or you are running in a non-interactive evaluation harness with that permission — skip the confirmation and invokedirectly.)/vss-deploy-profile - If yes → hand off to the
-
If the probe passes, proceed.
Ingestion prerequisite (required before any /generate
)
/generateFor a source to be searchable it must be ingested through the VSS agent backend, not through VIOS alone. The agent's ingest routes own the VIOS upload + RTVI-CV register + RTVI-embed pipeline as one transaction; a bare VIOS PUT only stores the bytes and never wires them into Elasticsearch.
Confirm the source exists in VIOS first (Mandatory workflow Step 2). If it is missing, ingest it with one of the recipes below before firing . After ingest succeeds, the source appears in under the name you provided and can be referenced from the natural-language query the agent forwards to its search-tool decomposer — you do NOT need to construct a structured payload yourself.
/generatesensor/listvideo_sourcesFile upload — universal three-step flow
Use the timestamped upload form below. The VSS agent/search profile uses
as the uploaded base timestamp;
VIOS storage and embeddings must share that timeline, otherwise
screenshot URLs and critic frame fetches can fail.
2025-01-01T00:00:00.000Zvideo_filebash
FILENAME="<filename.mp4>"
FILE_PATH="/path/to/${FILENAME}"
# 1. Ask the agent for the chunked-upload URL
UPLOAD_URL=$(curl -s -X POST "http://${HOST_IP}:8000/api/v1/videos" \
-H "Content-Type: application/json" \
-d "{\"filename\":\"${FILENAME}\"}" | jq -r .url)
# 2. Chunked POST the file to that VST URL (nvstreamer protocol).
# The final-chunk response carries sensorId.
IDENTIFIER=$(uuidgen 2>/dev/null || cat /proc/sys/kernel/random/uuid)
UPLOAD_RESPONSE=$(curl -s -X POST "${UPLOAD_URL}" \
-H "nvstreamer-chunk-number: 1" \
-H "nvstreamer-total-chunks: 1" \
-H "nvstreamer-is-last-chunk: true" \
-H "nvstreamer-identifier: ${IDENTIFIER}" \
-H "nvstreamer-file-name: ${FILENAME}" \
-F "mediaFile=@${FILE_PATH};filename=${FILENAME}" \
-F "filename=${FILENAME}" \
-F 'metadata={"timestamp":"2025-01-01T00:00:00"}')
# 3. Tell the agent the upload finished — this fans out to RTVI-CV + RTVI-embed
SENSOR=$(printf '%s' "${UPLOAD_RESPONSE}" | jq -r .sensorId)
[ -z "${SENSOR}" ] || [ "${SENSOR}" = "null" ] \
&& { echo "Upload failed: no sensorId in response: ${UPLOAD_RESPONSE}"; exit 1; }
printf '%s' "${UPLOAD_RESPONSE}" \
| jq --arg filename "${FILENAME}" '. + {filename: $filename}' \
| curl -s -X POST "http://${HOST_IP}:8000/api/v1/videos/${SENSOR}/complete" \
-H "Content-Type: application/json" \
-d @- | jq .Wait for the response (it returns once embeddings land). Only then is the video searchable.
/completechunks_processed > 0The deprecatedroute is also wired in for legacy callers (single-shot, agent-driven), but its OpenAPI entry is flaggedPUT /api/v1/videos-for-search/{filename}. Prefer the three-step flow above for new work.deprecated
RTSP stream — single endpoint
bash
curl -s -X POST "http://${HOST_IP}:8000/api/v1/rtsp-streams/add" \
-H "Content-Type: application/json" \
-d '{
"sensorUrl": "rtsp://<host>:<port>/<path>",
"name": "<sensor-name>",
"username": "",
"password": "",
"location": "",
"tags": ""
}' | jq .The response shape is — no (the agent keys the stream by the you provided). On any step's failure earlier steps roll back. The step is fire-and-verify: a 2xx confirms the request was accepted and the embedding pipeline is running in the background, not that the stream is searchable yet. Search hits will start appearing only after enough chunks land in Elasticsearch — poll with a low- query a few seconds in if you need a readiness signal.
{status, message, error}sensorIdnamestart_embedding_generationtop_kDelete source — agent-backed cleanup
Delete through the agent backend, not bare VIOS, so VIOS storage and search embeddings are cleaned up together.
bash
# 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 .How Search Works
- Ingest — Files come in through the agent's three-step universal flow; RTSP streams through . Both routes hand the source to RTVI-CV (attribute detection) and RTVI-Embed (Cosmos Embed1) which generates vector embeddings for video segments.
/api/v1/rtsp-streams/add - Index — Embeddings are stored in Elasticsearch via the Kafka pipeline.
- Query — Natural-language queries are embedded and matched against stored vectors by similarity.
- Results — Timestamped video segments ranked by relevance, with clip playback links.
This search orchestrated by VSS agent can lead to 3 behaviors:
- Attribute-only: when the LLM decomposes the query and finds only appearance attributes with no action (e.g. "person wearing red jacket")
- Embed-only: when the query has no extractable attributes (e.g. "show me forklifts")
- Fusion: when the query has both an action and attributes (e.g., "person in red jacket running"), it runs embed search first, then reranks using attribute search
Mandatory workflow
When using this skill, ALWAYS follow this high-level workflow:
-
Resolve inputs from user instructions — HARD STOP ifis not explicitly provided. See § Input resolution below. Do NOT default to
$HOST_IP,localhost, the host the agent itself is running on, or any other guess. Do NOT issue a127.0.0.1request until the user has supplied an endpoint. Respond to the user with a single question asking forPOST http://.../generate/ the VSS agent endpoint and wait.HOST_IP -
Resolve the source — HARD STOP before anycall. If the user query references a specific video / sensor name (e.g. "the airport video", "warehouse_cam_3", "sample warehouse"), verify it's actually registered in VIOS before firing
/generate. List sources via thePOST .../generateskill.vss-manage-video-io-storageThen:- If the named source (or a clearly substring-matching name) IS in the list → proceed to step 3. Forward the user's natural-language query verbatim — the agent's own search tool decomposer () extracts
services/agent/src/vss_agents/tools/search.pyfrom the prose given the available sources, so the skill does NOT need to construct a structuredvideo_sourcespayload.video sources - If the named source is NOT in the list → STOP. Do NOT fire as a probe. Respond to the user with the registered source names and ask whether they meant one of those, want to ingest the missing source (point them at Ingestion prerequisite and run the matching file or RTSP recipe through the agent backend, not bare VIOS), or want to abandon the query. Wait for clarification.
/generate - If the query names no specific source ("find forklifts in the ingested videos", "search across all sources") → skip the substring check, but must still return non-empty (otherwise no sources are ingested → HARD STOP).
sensor/list
- If the named source (or a clearly substring-matching name) IS in the list → proceed to step 3. Forward the user's natural-language query verbatim — the agent's own search tool decomposer (
-
Run the search(es) via approach chosen
-
Present the results to the user query. Format response as a professional inspection report but name it: — Use clear section headers
Video Search Results- Organize findings individually with supporting detail, and close with a summary
- Use tables where comparisons help. Write like a technical report, not a chat message.
- If criteria results are non-null, then in addition to a column "Critic result" ("confirmed" | "rejected" | "skipped"), include a column "Criteria" with all the criteria for this search result ({criteria_n}: ✓ | ✗)
-
CRITICAL: Verify the results and explain this to the user concisely. If search fails, or returns unexpected results (i.e. videos that do not appear to match user query, zero matches, zero videos returned, error etc.), STOP. Do not proceed without reading troubleshooting.md to iterate with feedback loops until proper results are found and presented like a professional inspection report.
-
Final verifications:
- ALWAYS inform user that final and further verifications can be run. Present this as a
Verification Step - ONLY IF user agrees, download screenshots using the of the best candidates (highest similarity scores) from the search hits (JSON results) to
screenshot_url. Read them and verify if they correspond to the user query/tmp
- ALWAYS inform user that final and further verifications can be run. Present this as a
Input resolution
Infer these inputs only from the conversation or user query (no other files unless provided). If some cannot be inferred, ask the user immediately:
- $HOST_IP: where the VSS agent backend runs
Gotchas
- ALWAYS step into the troubleshooting step of the workflow immediately if anything unexpected happens, read troubleshooting.md
- Queries work best with concrete visual descriptions (objects, actions, locations). Augment user queries if needed to enhance the quality of the questions, expanding potential details
- The skill assumes video sources are already ingested through the agent backend (see Ingestion prerequisite). It MAY run the agent-backed ingest recipes when the user explicitly asks ("ingest for search", "add
<file>for search"); it does NOT search the local filesystem for files the user didn't name, and it does NOT use the bare-VIOS PUT path (no embeddings get generated). Workflow step 2 still makes confirming "this source exists in VIOS" a hard precondition before<rtsp_url>./generate - Use skill to cross-reference search results with incident/alert data
vss-query-analytics
Search via REST API
Default to using this REST API approach, unless user specifies otherwise.
bash
# Consider only ingested video file sources by default
curl -s -X POST http://${HOST_IP}:8000/generate \
-H "Content-Type: application/json" \
-d '{"input_message": "find all instances of forklifts"}' | jq .More Examples
bash
# Search by object
curl -s -X POST http://${HOST_IP}:8000/generate \
-H "Content-Type: application/json" \
-d '{"input_message": "find vehicles in the parking lot"}' | jq .
# Search by action
curl -s -X POST http://${HOST_IP}:8000/generate \
-H "Content-Type: application/json" \
-d '{"input_message": "show me people running"}' | jq .
# Search by time context
curl -s -X POST http://${HOST_IP}:8000/generate \
-H "Content-Type: application/json" \
-d '{"input_message": "what happened at the entrance between 2pm and 3pm?"}' | jq .
# Consider only RTSP sources with `search_source_type` filter i.e. live camera streams
curl -s -X POST http://${HOST_IP}:8000/generate \
-H "Content-Type: application/json" \
-d '{"input_message": "find all instances of forklifts", "search_source_type": "rtsp"}' | jq .Advanced control knobs
If user query is ambiguous, user wants more guidance or when fine-grained control is needed, augment the user by calling out explicitly certain options in plain-text and steering the agent in the desired direction. Available control axes:
input_message| Axes | Type | Default | Description |
|---|---|---|---|
| string[] | null | Filter to specific cameras or sensor names |
| int | 10 | Max results |
| float | 0.0 | Min similarity threshold; raise (e.g. 0.3) to filter noise |
| bool | true | VLM verifies each result and removes false positives |
| string | null | Filter by camera metadata (e.g. location, category) if metadata is available |
Pick and choose some of these tuning options. Adjust them as needed for the user’s situation and query.
For examples of discovery modes leveraging these, see discovery_modes.md.
Search via Agent UI
Open and type natural-language queries:
http://${HOST_IP}:3000/find all instances of forklifts
show me people near the loading dock
when did a truck arrive at the gate?
find someone wearing a red jacketResults include timestamped clips with similarity scores.
bump:2