Imagine you're navigating a dark room to reach a light switch. You could stop, map the entire room with a flashlight, build a mental floor plan, then chart a path — or you could just feel the gradient of light getting brighter and the gradient of furniture getting closer, and walk the combination. The second approach is faster but has a classic failure mode: you get stuck in a corner where the pull toward the switch and the push from the couch exactly cancel. This paper fixes that corner-sticking problem for robot arms. The committed claim: a neural potential field trained on posed RGB images and supervised with geodesic free-space distances achieves collision-free 6-DoF grasp trajectories without any explicit 3D reconstruction, eliminating the local-minima problem that has plagued artificial potential fields since Khatib's 1986 formulation. The key insight is the supervision signal — instead of training the field with raw image loss (which produces gradients that graze obstacles), they recover the geodesic distance to the grasp through free space from the training images and use that as the target. This is a navigation function, not just a potential function, and that distinction is load-bearing. The results on a UR10 arm across two tabletop scenes are stark. Under their geodesic supervision, the field converges within 3 cm of the grasp from every tested start configuration, and every executed path is collision-free against ground-truth geometry. Under image-only supervision — the prior approach — convergence drops to 25% and 0% on the two scenes respectively. Mean clearance from obstacles jumps from sub-centimeter to 8.6-8.8 cm. Arm-link contacts drop from 20.6-50.4% to 2.7-5.5% of configurations. Grasp success reaches 90% and 40%, with the 40% scene's failures traced to the Cartesian executor refusing commands rather than the field producing bad trajectories. The architecture sits in the neural radiance field family — specifically, they learn an SE(3) field over the special Euclidean group (position and orientation), not just R³. The field takes posed RGB images as input and outputs a potential landscape over the full 6-DoF configuration space. Training requires posed images of the scene — a real constraint — but inference is fast: about 2 seconds versus 67-133 seconds for RRT operating on a reconstructed point cloud from the same images. The authors are honest that under a common offline harness (where both methods amortize reconstruction), the gap closes; the deployed speed advantage comes from skipping collision-checking against a dense reconstruction, not from the planner itself being faster. The integrity picture is mixed. This is real-hardware execution on a UR10 — not simulation — which is a genuine strength. But the evaluation covers only two tabletop scenes, and there's no comparison against modern learned planning methods like MPiNets or M𝜋Nets. The baselines are image-only supervision (their own ablation) and RRT on a reconstruction — legitimate but not exhaustive. The ground-truth collision checking against known geometry is a solid validation protocol, but two scenes is a thin sample to claim generality. The milestone to watch is scene diversity. Two tabletop arrangements with known geometry is proof-of-concept territory. The method needs to demonstrate robustness across 50+ scenes with varying clutter density, novel object categories, and lighting conditions before it displaces reconstruct-then-plan in production. The 40% grasp success on the second scene — even if the field is blameless — signals that the end-to-end pipeline has integration brittleness that must be resolved. The obvious experiment not run: testing on scenes with dynamic obstacles or unseen object categories. The geodesic supervision requires computing free-space distances during training, which means new scenes require new training. The authors almost certainly know this limits deployment, and extending to scene generalization via conditioning or meta-learning is the natural next paper. Whether they didn't run it because of compute constraints or because it didn't work is an open question — the two-scene scope suggests the former.