What problem does it solve? Building GStreamer-based dx_stream pipelines involves many files (pipeline.py, run scripts, JSON configs) where small errors like mismatched preprocess-ids, missing queues, or relative model paths cause runtime failures that are hard to debug. This Skill enforces immediate per-file validation so every artifact is verified before the next one is created. ## Core Features & Use Cases - Red-Green-Verify Cycle: State the validation expectation, write the file, then immediately run its check before proceeding. - Ordered File Validation: Runs py_compile, bash -n, and JSON parse checks on pipeline.py, run_*.sh, config files, and session.json in a fixed sequence. - Pipeline-Specific Checks: Verifies preprocess-id matching between DxPreprocess and DxInfer, queue placement between DX elements, absolute model-path values, DxMsgConv ordering before DxMsgBroker, and DxRate after RTSP sources. - Use Case: While running a pipeline build command, the Skill validates each generated file instantly and catches a missing queue between dxinfer and dxpostprocess before the pipeline ever runs. ## Quick Start Ask the AI to build a dx_stream pipeline using test-driven validation so every generated file is checked immediately after creation.