Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
This is the top-level entry point for the Omniverse Realtime Viewer skill package.
It is self-contained: all required routing, conventions, and validation
guidance live in the selected references.
Use the focused reference documents as implementation recipes. This file chooses the
right recipes and preserves the architectural rules that must hold across all
generated viewer apps.
Instructions
Start by classifying the requested viewer, then read only the references needed
for that delivery path and feature set. Implement the render path first, layer
interaction and UI behavior on top of it, and finish by capturing validation
evidence from references/validation.md.
Read Order
Read references/routing.md to choose the delivery path and focused references.
Read references/conventions.md before implementing camera, input,
selection, viewport, streaming protocol, scene loading, or environment
behavior.
For broad viewer requests, read references/usd-viewer-app/README.md.
If the delivery path is unclear, read references/streaming-vs-local/README.md.
If the prompt includes layout, panels, controls, inspectors, status, or UX,
read references/viewer-ux-workflow/README.md and then the focused viewer UI references.
This applies to React/WebRTC, Tauri, Electron, ovui, ovwidgets, and Dear
ImGui apps; "frontend" means user-facing UI, not only browser UI.
For viewport interaction, read references/viewer-input-routing/README.md before
references/camera-controls/README.md, references/native-picking-selection/README.md, or references/object-selection/README.md.
For new viewer apps or ovrtx work, read the ovstage references before
renderer, scene loading, stage management, camera, selection, or transform
write references.
For NVCF self-hosted deployment, read references/cloud-deployment/nvcf-self-hosted.md before the selected cloud-deployment and streaming references.
Read only the focused capability references needed for the requested app.
Use references/validation.md to capture review evidence before handoff.
Non-Negotiables
Use ovrtx for all USD and 3D rendering.
Browser apps display an ovstream WebRTC video stream plus UI. The browser
does not render USD geometry.
Do not substitute WebGL, Three.js, Babylon.js, PlayCanvas, A-Frame,
model-viewer, react-three-fiber, glTF browser viewers, or other client-side
3D renderers.
If local validation cannot run because the GPU/runtime environment is absent,
scaffold the ovrtx path and document the runtime requirement. Do not add a
browser-renderer fallback.
Keep user USD files unmodified. Viewer cameras, render products, render vars,
settings, selection metadata, and runtime state belong in session/composite
layers, OVStage runtime state, or app state.
Keep one owner for renderer.step(), stage mutation, native picking,
selection writes, OVStage publication, and live attribute writes.
Use OVStage runtime writes for interchangeable transform animation,
material/effect attributes, visibility toggles, physics pose samples, and
reversible viewer-owned state. Keep native OVRTX APIs for rendering, pick
queues, and selection outline visualization.
Keep dependency acquisition in references/dependencies/README.md and deployment choices in
references/cloud-deployment/README.md; do not duplicate package locations or deployment setup.
Focused Reference Families
Entry points and recipes: references/usd-viewer-app/README.md, references/streaming-viewer-recipe/README.md,
references/ovui-local-viewer-recipe/README.md, references/streaming-vs-local/README.md, references/electron-shm-viewer/README.md,
references/ovwidgets-editor-shell/README.md.
Classify the prompt by delivery path, target user, required capabilities,
runtime environment, validation needs, and explicit constraints.
Select a small reference set. Start with the recipe or routing reference, then add
focused capabilities such as camera, picking, hierarchy, properties, render
settings, transform tools, cloud assets, or deployment.
Read selected references before writing app code. Follow their build order,
import order, data-channel contracts, and renderer ownership rules.
Implement the OVStage population/data-plane path and core render path first,
then input routing and camera, then selection and data panels, then
scene/settings features, then packaging or deployment.
Treat the selected references as the behavior contract for API shape,
compatibility, and generated project structure.
Capture validation evidence before calling the viewer ready.
Examples
For a browser viewer request, use the streaming recipe references plus camera,
picking, hierarchy, properties, render settings, and stream-status references.
For a local workstation viewer request, use the local or native delivery
references plus renderer setup, stage loading, viewport input, and validation.
For a "visualize CAE/CFD data in realtime" request, treat CAE/CFD as a layer,
not a standalone app: first pick the delivery path
(references/streaming-vs-local/README.md), build the base viewer with the
matching recipe (references/ovui-local-viewer-recipe/README.md or
references/streaming-viewer-recipe/README.md), then layer
references/cae-cfd-visualization/README.md (data → operators → USD authoring →
scene) and wire controls via
references/cae-cfd-visualization/driving-cae-viz-via-ovstage.md.
Completion Checklist
Selected references match the user's intent and delivery path.
No code path uses a browser-side 3D renderer for USD.
The generated app has one clear owner for render stepping and stage mutation.
User USD files remain untouched by viewer-owned session data.
Camera, input, selection, scene loading, and stream behavior follow
references/conventions.md.
Setup/build/run results and visual interaction evidence are captured with
references/validation.md.
ovstage References
For all new viewer applications, read these before renderer, scene, interaction, or delivery references:
references/ovstage-runtime/README.md — runtime ownership, ordinals, publication, and recovery.
references/ovstage-population/README.md — composed USD population and scene generations.
references/ovstage-data-plane/README.md — queries, writes, transforms, and runtime DTOs.
references/ovstage-ovrtx-integration/README.md — attached renderer loop and runtime integration contract.