rtvi-cv-scaffold-vss-service
Erstelle ein eigenständiges RTVI-CV-Mikroservice-Gerüst, das über Kafka mdx-raw in VSS-Such- und Alarmprofile integriert wird. Das mitgelieferte Gerüstskript ist eine YOLO26-Referenz…
npx skills add https://github.com/nvidia/skills --skill rtvi-cv-scaffold-vss-serviceConstruct RTVI VSS CV Service
Scaffolds a deployable custom perception microservice that:
- runs a DeepStream pipeline with YOLO26 primary inference + tracker,
- converts detection metadata to the VSS protobuf schema and publishes it
to the
mdx-rawKafka topic, and - drops into the existing VSS compose stack via the
bp_developer_search_2dandbp_developer_alerts_2d_cvprofile flags so the downstream Search Workflow, Alert Verification, and Behavior Analytics services consume it without further changes.
The scaffolded output is a runnable repo, not a design document.
Scope boundaries
This skill name describes the service type (a VSS-bound RTVI CV microservice), not a model family. What is generic vs YOLO26-specific:
| Layer | Scope |
|---|---|
| VSS integration | Generic — compose profiles, host networking, mdx-raw, protobuf-2 payload, tests, smoketest |
| Scaffold script output | YOLO26 reference — pgie-yolo26-config.txt, YOLO26_* mount paths, NvDsInferParseYolo26 |
| Other ONNX detectors | Adapt the scaffold manually, or use rtvi-cv-customize-model to swap the model inside the stock vss-rt-cv perception container |
| Segmentation frame masks | Documented in integration-contract.md; not auto-generated by the scaffold — extend msgconv/wrapper after scaffolding |
Do not treat the scaffold as a model-agnostic generator. Agents should either run the YOLO26 scaffold as-is or consciously edit pgie/compose paths for another detector while keeping the VSS contract fixed.
When to use
Use this skill when the user wants to:
- replace VSS's default perception service (RT-DETR / GDINO / YOLOv11) with a custom YOLO26-based detector,
- add new object classes or domain-specific tracking logic while keeping the VSS Search / Alerts / Behavior Analytics workflows intact,
- ship a perception microservice on a customer's hardware that integrates with a VSS deployment they manage.
Do not use this skill to:
- deploy or operate VSS itself (use VSS deployment runbooks),
- swap the detector in the default
vss-rt-cvcontainer without a new microservice (usertvi-cv-customize-model).
This skill assumes a target VSS deployment already exists or will be brought up separately.
Instructions
- Read references/integration-contract.md first and keep
mdx-raw,msg-conv-payload-type=2, broker reachability, and the protobuf-2 contract fixed unless the user explicitly wants to break VSS compatibility. - Treat all VSS deployment paths as relative to a separate checkout of the public VSS Blueprint repository, not the DeepStream repository. Clone or reuse a VSS checkout that is v3.2.1 or compatible, then deploy that release (see VSS Quickstart).
- If the user does not have the YOLO26 ONNX, labels file, or custom parser
.so, say so plainly: scaffolding and unit tests can proceed with placeholders, but the live DeepStream app cannot run yet. Point them at Ultralytics/Hugging Face for pretrained weights and ONNX export (see references/yolo26-deepstream.md). - When assets are missing, stop the "live validation" path at scaffold generation plus host-only unit tests. Do not imply that
docker compose up,deepstream-app, orkafka_smoketest.pycan succeed without the customer-supplied ONNX, labels matchingnum-detected-classes, and a parser exposingNvDsInferParseYolo26. - Start the generated service only after the VSS Kafka topic initializer has completed. Keep it as a separate Compose application using host networking. Set
KAFKA_BOOTSTRAPto Kafka's host-reachable advertised listener (default:localhost:9092). Compose cannot resolvedepends_onacross separate invocations.
Examples
- "Create a custom RTVI CV microservice that runs YOLO26 in DeepStream and publishes object metadata so VSS Search and Alerts can consume it."
- "Validate the generated RTVI VSS service scaffold locally, then explain how to verify the live integration on a GPU host with a deployed VSS stack."
- "I do not have a trained YOLO26 ONNX, labels file, or parser
.soyet. Can the live VSS integration still run?"
VSS source location
This skill ships the scaffold generator, but not the VSS deployment. Clone the
public VSS Blueprint repository separately or reuse an existing checkout, then
set VSS_ROOT to that checkout explicitly. Do not search for or clone VSS
relative to the generated service directory:
# Customer-specific path to an existing VSS v3.2.1-compatible checkout.
export VSS_ROOT=/absolute/path/to/video-search-and-summarization
VSS_DEPLOY_DIR="${VSS_ROOT}/deploy/docker"
test -f "${VSS_DEPLOY_DIR}/compose.yml" || {
echo "Missing VSS compose file: ${VSS_DEPLOY_DIR}/compose.yml" >&2
exit 1
}
echo "Using VSS deployment: ${VSS_DEPLOY_DIR}"
Relevant customer-accessible VSS locations include:
deploy/docker/scripts/dev-profile.sh— brings up Search or Alerts using the documented Quickstart flowdeploy/docker/developer-profiles/dev-profile-search/deploy/docker/developer-profiles/dev-profile-alerts/deploy/docker/services/rtvi/rtvi-cv/— stock RTVI-CV service definition
The custom service generated by this skill remains in <target-dir> and runs as a separate, host-networked Compose application alongside VSS. Set KAFKA_BOOTSTRAP to Kafka's host-reachable advertised listener (default: localhost:9092). Do not look for generated YOLO26 files inside either the DeepStream or stock VSS checkout.
Required reads
Read these before generating code so the implementation matches the documented VSS data path rather than a generic Kafka producer:
- references/integration-contract.md — the exact mdx-raw protobuf contract. For segmentation/frame-mask services, read its segmentation frame-mask payload section before implementing msgconv, wrapper, Kafka, or protobuf changes.
- references/yolo26-deepstream.md — DeepStream nvinfer config for YOLO26.
- references/vss-profile-integration.md — how the service plugs into Search / Alerts / Behavior Analytics.
- VSS Object Detection and Tracking —
https://docs.nvidia.com/vss/latest/object-detection-tracking.html - VSS Behavior Analytics —
https://docs.nvidia.com/vss/latest/behavior-analytics.html - VSS Search Workflow —
https://docs.nvidia.com/vss/latest/agent-workflow-search.html - DeepStream
Gst-nvmsgconv—https://docs.nvidia.com/metropolis/deepstream/9.1/text/DS_plugin_gst-nvmsgconv.html - DeepStream
Gst-nvmsgbroker—https://docs.nvidia.com/metropolis/deepstream/9.1/text/DS_plugin_gst-nvmsgbroker.html
Inputs to confirm
Ask the user for these. Use placeholders if not provided — do not block.
service-name(slug; becomes container name and python package)yolo26-onnx-path(host path to the YOLO26 ONNX export — not.pt)yolo26-labels-path(host path to a one-class-per-line labels file)yolo26-parser-lib(host path to the YOLO26 custom-parser.so, or the parser function name if compiled into the customer image)num-classes(integer; must match the labels file)target-vss-profiles— any subset of:bp_developer_search_2d(Search Profile)bp_developer_alerts_2d_cv(Alerts Profile + Behavior Analytics consumer)
kafka-bootstrap(Kafka's host-reachable advertised listener; defaultlocalhost:9092)kafka-topic(defaultmdx-raw— VSS consumers expect this name)input-rtsp-urior input video file path
Workflow
-
Read references/integration-contract.md. The fixed parts of the contract (topic name, payload type, schema library) are not negotiable if the goal is to plug into an existing VSS deployment. For segmentation/frame-mask services, follow the segmentation payload contract in that reference before changing msgconv or wrapper code.
-
Scaffold the YOLO26 reference service (do not generalize pgie paths unless the user explicitly needs another detector):
python3 scripts/scaffold_rtvi_vss_service.py \ --service-name <service-name> \ --output-dir <target-dir> \ --num-classes <N> \ --vss-profiles bp_developer_search_2d bp_developer_alerts_2d_cv -
Drop the customer's YOLO26 ONNX, labels file, and custom-parser library into the paths the generated
service_config.jsonreferences. If those artifacts do not exist yet, stop after scaffolding and host-only unit tests; the live DeepStream service cannot start correctly without them. -
Build the image:
docker build -t <service-name>:dev <target-dir> -
From the separate VSS checkout, bring up the matching Search or Alerts profile using the VSS Quickstart and
deploy/docker/scripts/dev-profile.sh. Confirm that VSS and its one-shot Kafka topic initializer are ready, then start the generated service as a separate Compose application:For Search or Alerts, find the matching one-shot initializer without assuming a Compose project or container name:
docker ps -a \ --filter label=com.docker.compose.service=kafka-topic-init-container \ --format 'table {{.Names}}\t{{.Status}}'Identify the selected deployment's initializer and confirm it is
Exited (0), then start the generated service with the matching gate:cd <target-dir> docker compose -f compose/service.compose.yml \ --profile bp_developer_search_2d up -d # Or for Alerts: docker compose -f compose/service.compose.yml \ --profile bp_developer_alerts_2d_cv up -dDo not add a cross-file
depends_onentry. The generated service usesnetwork_mode: host. SetKAFKA_BOOTSTRAPto Kafka's host-reachable advertised listener (default:localhost:9092). The readiness check enforces startup order. -
Verify the metadata flow:
cd <target-dir> python3 tools/kafka_smoketest.py --describe-only python3 tools/kafka_smoketest.py --timeout 120The smoke test auto-detects Kafka only when exactly one matching container is running. If multiple deployments are active, pass the selected running name with
--kafka-container. Its--bootstrap-serveris resolved inside that Kafka container and normally remainslocalhost:9092, even when the detector's host-facingKAFKA_BOOTSTRAPuses a different port.A successful consume confirms at least one non-empty message arrived on
mdx-rawwithin the timeout. It does not decode the protobuf payload or validate sensorId, objects, or bbox fields. -
Confirm downstream pickup:
- Search Profile: query the Video Analytics API for ingested events, run an embed query and an attribute query against the search workflow.
- Alerts Profile: watch
mdx-incidentsfor behavior-analytics output; thealert-bridgeservice should generate VLM-verified incidents. - Behavior Analytics: the selected VSS Search or Alerts deployment starts its own behavior consumer. This is part of the VSS stack, not another profile for the generated service. It consumes
mdx-rawand emits behavior windows tomdx-incidents.
Service shape (generated)
The scaffolder emits this layout:
<service-name>/
├── Dockerfile DeepStream 9.1 + custom parser hook
├── README.md customer-facing build/run/plug-in guide
├── service_config.json declarative config (topic, profile flags, paths)
├── compose/
│ └── service.compose.yml service def with profiles for VSS plug-in
├── pipeline/
│ ├── ds-app-config.txt deepstream-test5 derived; msgconv→msgbroker→mdx-raw
│ ├── ds-start.sh container entrypoint
│ └── configs/
│ ├── pgie-yolo26-config.txt nvinfer config skeleton for YOLO26
│ ├── tracker-nvdcf.yml NvDCF tracker config
│ ├── cfg_kafka.txt librdkafka producer overrides
│ ├── msgconv_config.txt mega2d sensor context
│ └── labels.txt class labels placeholder
├── app/
│ ├── __init__.py
│ ├── contracts.py NvDsEventMsgMeta-aligned event envelope
│ ├── pipeline_plan.py declarative stage list (used by tests)
│ └── service.py adapter helpers for extension/derived events
├── tools/
│ └── kafka_smoketest.py consumes one mdx-raw message and asserts it is non-empty
└── tests/
├── test_pipeline_config.py asserts the Kafka adapter contract and msgconv→msgbroker→mdx-raw wiring
├── test_service.py exercises the python adapter without GPU
└── test_compose.py asserts profile gates, host networking, and liveness healthcheck
Non-negotiable contract elements
The customer can change almost everything except these — they're what the VSS stack consumes:
- Kafka topic
mdx-raw, using the host-reachable advertised listener selected byKAFKA_BOOTSTRAP(default:localhost:9092). msg-conv-payload-type=2(NVDS_PAYLOAD_DEEPSTREAM_PROTOBUF) withmsg-conv-msg2p-new-api=1so the generateddeepstream-appserializes frame/object metadata directly: protobuf serialized bymsg-conv-msg2p-lib(libnvds_msgconv_mega2d.so, orlibnvds_msgconv.soon DGX-SPARK/THOR);libnvds_kafka_proto.sois themsg-broker-proto-libKafka transport adapter only.- A protobuf
Framepayload withsensorId,timestamp, andobjects[]carryingid,bbox,type,confidence. This is whatvss-search-analytics-*,vss-behavior-analytics-*, andvss-video-analytics-api-*deserialize. network_mode: host.- An explicit deployment precondition that the VSS
kafka-topic-init-containercompleted successfully before this separate Compose application starts.
If any of these change, the customer is no longer plugging into VSS — they are running an isolated CV service.
Validation
Run unit tests on any host (no GPU required):
cd <target-dir>
python3 -m unittest discover -v -s tests -p 'test_*.py'
Run end-to-end on a host with GPU + a deployed VSS stack:
cd <target-dir>
python3 tools/kafka_smoketest.py --describe-only
python3 tools/kafka_smoketest.py --timeout 120
A successful smoke test confirms non-empty bytes arrived on mdx-raw within the timeout. It does not decode the protobuf payload or prove the message came from this service specifically. To verify downstream pickup, check the Search / Alerts / Behavior Analytics services via their own APIs.
Do not present local unit-test success as proof that live VSS integration is ready. Without the customer ONNX, labels file, and parser library, the live DeepStream path remains blocked even if scaffolding and unit tests succeed.
Implementation guardrails
- Do not invent topic names.
mdx-rawis the single perception ingress. Per-service prefixes break the existing VSS consumers. - Do not switch to
msg-conv-payload-type=0or=1. VSS deserializers expect type 2. - Do not bridge through a custom Python Kafka producer. The DeepStream
nvmsgconv → nvmsgbrokerboundary is what produces correctly-framed protobuf with timestamps in nanoseconds. A Python producer drift will silently degrade Behavior Analytics. - Keep
track_idstable across frames. Behavior Analytics derives dwell and direction from track continuity; a per-frame regenerated id makes every frame look like a new object. - Do not embed credentials, NGC tokens, or absolute customer paths in the scaffolded files. The generated tree must be portable.