Dev.to reports a series of Scarab Diagnostic Suite (SDS) field tests that treat software failures as “truth boundary” problems across multiple projects and layers. In Open WebUI, a known Azure connection break is traced to a provider/config contract mismatch: persisted configs can switch to provider="azure" without preserving an older azure flag, while runtime branching still expects the azure-shaped form. SDS identifies the boundary between persisted provider shape and runtime provider selection, and a bounded repair plus regression makes the targeted diagnostic finding clear.

In another Open WebUI test, SDS starts without the issue text and still selects the Memory/RAG retrieval truth boundary. The system shows retrieved results in the UI but later fails to deliver usable source context into model context. SDS flags instability in the source/context response-shape consistency, Codex applies a narrow response-shape guard/fallback, and the focused regression passes.

The Vite tests show similar contract drift concepts: a dev/build plugin transform filter behaves differently under the same filter contract, and a build manifest drops entry identity for CSS declared as rollupOptions.input in array form. In both cases SDS constrains repairs to the specific boundary and verifies via focused red/green checks. A Next.js test focuses on source-map provenance, aiming to preserve original client source authority through Turbopack’s composition path.