Fixing Coding Agents' Visual Blind Spots: Introducing SceneProof
ReyJ94 · reddit · 2026-08-03
Coding agents (like Claude Code) have a visual blind spot when working with 3D scenes like Three.js—the code compiles successfully and reports it "looks great," but the actual render is often a black screen. Screenshots alone only reveal that a problem exists; they cannot diagnose the root cause (e.g., missing mesh, wrong camera position, or material issues).
SceneProof is a CLI tool designed to bridge this gap:
- Core Functionality: Loads real React or Three.js source code, renders it in actual Chrome, and returns the structural scene data behind the pixels.
- Key Commands:
- tree: Provides the scene graph with bounds, materials, lights, and cameras, turning "why is it invisible" into a direct lookup.
- scout: Tries a set of cameras on a target and scores each by actual visibility.
- render-region: Re-renders a specific region from the source code at any scale, providing fresh high-definition details rather than just enlarged pixels.
- Design Philosophy: Clearly separates "the command ran successfully" from "the output can support a valid judgment." If a render is unjudgeable (e.g., target out of frame), it returns unjudgeable, preventing agents from having the false confidence that a successful build means a perfect design.
- Scope: Currently supports TypeScript/JavaScript, React DOM (Tailwind v4), and Three.js (WebGL/WebGPU). Ships with a Skill that can be integrated into agent frameworks like Claude Code.
More from coding & agent
- Open-Source Chrome Extension Turns Web Images into 3D Models via fal.ai — tom_doerr · 2026-08-03
- Comp AI Open-Sources Agentic CRM on Next.js, Launches 'eve' Agent Framework — JosephJacks_ · 2026-08-03
- Building Flows: An Evidence and Verification Layer for AI Coding Agents — OGMYT · 2026-08-03
- AI Coding Era Reshapes DevTools: Open Source Gains Edge Over Closed — davidcrawshaw · 2026-08-03
- Build a Personalized AI Second Brain with Claude Code — tom_doerr · 2026-08-03
- Why SQLite's Architecture is Poised to Dominate the Agentic Era — glcst · 2026-08-03