Imagine you drive the same route to work every day. After a few trips, you stop consciously processing the parked dumpster on 5th Street or the fire hydrant near the corner — your brain has already built a persistent 3D model of the static world, and now your attention is free to focus on what's new: the cyclist, the double-parked truck. This paper does exactly that for camera-based autonomous driving, but the interesting part is the mechanism: it builds the persistent 3D model entirely from cameras, not LiDAR, closing a gap that the field has left open for years. The committed claim: you can construct a static point cloud prior map from previous camera traversals (using Pi3X for geometry), augment each point with DINOv3 semantic features, and fuse this prior at runtime with live camera features to improve both 3D object detection and vectorized HD mapping — all without ever touching a LiDAR sensor. Prior work on point cloud priors assumed you had LiDAR to build the map. This paper says cameras are enough. The architecture is a clean pipeline. Offline, Pi3X reconstructs dense point clouds from multi-traversal camera data. Each point gets a DINOv3 feature vector bolted on, encoding semantic meaning beyond raw geometry. At runtime, global localization retrieves a local patch of this prior map, a sparse voxel backbone (think: 3D sparse convolutions over the prior's voxelized representation) encodes it, and the result is fused in bird's-eye view with the standard lifted multi-view camera features. Task-specific sparse transformer heads then decode 3D bounding boxes and vectorized map elements from the fused BEV representation. The key design choice is the fusion point: BEV, where geometric and semantic information from two very different sources can be spatially aligned. On Argoverse 2, the numbers tell a clear but modest story. CDS (composite detection score) goes from 0.287 to 0.299 — a 4.2% relative improvement. Vectorized mapping mAP jumps from 0.669 to 0.750 — a 12.1% relative gain. The mapping gain is the headline. Ablations reveal why: DINOv3 semantic features are disproportionately important for vectorized mapping, which makes sense — road boundaries, lane markings, and crosswalks are semantically defined structures that benefit enormously from persistent semantic context. For 3D object detection, the gains are more modest, likely because dynamic objects (the cars, pedestrians) are exactly the things NOT captured in a static prior. The integrity picture is mixed. Argoverse 2 is a credible community benchmark — not cherry-picked. The baseline appears to be a strong contemporary camera-only system, and the comparison is apples-to-apples (camera-only prior vs. no prior, same runtime architecture). However, this is a workshop paper (IROS 2026 Workshop on Long-Term Perception), not a full peer-reviewed venue. No code release is mentioned. And the elephant in the room: the comparison that matters most — vision-built prior vs. LiDAR-built prior — is not reported. We know LiDAR priors work. The question is how close vision-built priors get, and the paper doesn't answer it directly. The milestone to watch is whether vision-built priors can close the gap to LiDAR-built priors on the same benchmark. If the delta is small (say, within 2-3% on CDS and mAP), the economic argument for ditching LiDAR from the entire pipeline — not just runtime, but map construction — becomes compelling. The practical unlock is fleet-scale map building: every camera-equipped vehicle becomes a mapping agent, no survey vehicles with LiDAR rigs needed. The obvious experiment the authors didn't run is the head-to-head against LiDAR-built priors using the same fusion architecture. The most charitable read: they're saving it for the full paper, or the LiDAR-prior baseline infrastructure wasn't readily available. A less charitable read: the gap might be embarrassingly large, and showing it in a workshop paper would undermine the narrative. Either way, this comparison is the first thing any reviewer of the full paper will demand.