Imagine you're walking through a grocery store with a shopping list. You don't catalog every product on every shelf — you scan for 'peanut butter' when that's the item you need, ignoring the cereal aisle entirely until the list says otherwise. SparseNav applies exactly this principle to robot navigation: instead of building an exhaustive semantic map of everything the robot sees, it only grounds objects that the current sub-instruction mentions. The claim is that less perception yields better navigation. The core mechanism is an instruction manager that decomposes a natural-language navigation command into sub-instructions, tracks which one is active, and extracts a landmark query from it. Only when that landmark is actually visible in the camera frame does the system invoke open-vocabulary segmentation (Grounded SAM 2) to localize it metrically. The result is a sparse landmark memory overlaid on a lightweight geometric bird's-eye-view map built from RGB-D data. No training, no fine-tuning — just off-the-shelf VLMs and segmentation models orchestrated by a pipeline. On the R2R-CE Val-Unseen benchmark, SparseNav achieves 42.8% success rate and 37.0% SPL. On RxR-CE Val-Unseen, it hits 40.7% SR and 32.7% SPL. For context, the strongest prior training-free map-based method (VLMnav) scores 38.0% SR on R2R-CE. The gap is real but modest — about 4.8 percentage points. Trained methods like ETPNav still lead substantially at ~56% SR on R2R-CE, so this is a training-free-bracket result, not an absolute SOTA claim. Architecturally, SparseNav belongs to the family of modular, map-based VLN pipelines that chain perception, spatial representation, and LLM/VLM-based planning without end-to-end gradient flow. It leans on Grounded SAM 2 for open-vocabulary segmentation, GPT-4o as the VLM planner, and a BEV occupancy grid built from depth sensing. The key structural bet is that instruction-conditioned gating of the perception module — deciding WHEN to invoke expensive segmentation — matters more than richer representation. The integrity picture is mixed. Evaluation uses the standard Habitat simulator on R2R-CE and RxR-CE Val-Unseen splits, which is the community benchmark and prevents the worst cherry-picking. Ablations are thorough: they test dense vs. sparse perception, remove the instruction manager, swap waypoint strategies, and examine the landmark memory. However, the VLM planner is GPT-4o, making exact replication dependent on API behavior. The real-robot deployment on a Unitree Go2 quadruped is a genuine physical validation but is described qualitatively — no quantitative success rates are reported for the hardware experiments. The milestone question for training-free VLN is whether these systems can close the gap to trained methods. SparseNav sits at ~43% SR; trained SOTA is ~56% on R2R-CE. Hitting 50% SR training-free would be a psychologically important threshold suggesting that modular pipelines with foundation models can compete without task-specific training data. That's probably 1-2 iterations away if the trajectory holds. The obvious experiment not run: scaling the landmark memory to longer, multi-room trajectories and measuring how gracefully sparse perception degrades compared to dense baselines as episode length grows. The authors likely ran out of compute or scope — longer episodes in Habitat are expensive, and the RxR-CE results (longer instructions) partially address this. But a direct episode-length ablation would be the strongest evidence for the 'less is more' thesis.