arXiv 2606.20515 introduces Ropedia, an 8B spatial Agent that uses a VLM as the planner and three "spatial tools" as the actuators. The standout: 8B parameters is enough to match much larger models on spatial reasoning benchmarks, by composing simple tools.

The "VLM as planner" architecture: Ropedia uses a standard 8B VLM (Qwen2.5-VL-8B) as the "brain." The VLM doesn't try to do spatial reasoning directly; instead, it plans which "spatial tool" to invoke. The three spatial tools are: (1) "3D bounding box estimator" — given an image, output 3D bounding boxes for objects; (2) "spatial relation query" — answer questions like "is A to the left of B in 3D space?"; (3) "depth estimator" — give a depth map of the image.

The "tool composition" pattern: the VLM chains the three tools based on the task. For example, "find the red cup on the table" → bounding box tool → spatial relation tool (is the cup on the table?) → final answer. The 8B VLM is enough because it doesn't need to do the spatial reasoning itself — it just orchestrates the tools.

The benchmark: on the SpatialBench benchmark, Ropedia-8B scores 71.2, matching Qwen2.5-VL-72B (70.5) and approaching GPT-5.6-Vision (73.8). The tool composition is the key — without the tools, the 8B VLM only scores 58.3.

The bigger takeaway: "VLM as orchestrator" is the right architecture for spatial reasoning. The "VLM does everything" approach has scaling limits, and "VLM + specialized tools" scales much better. For the industry, this means "spatial AI" products will move to a "VLM + 3D tools" architecture, similar to how "code AI" has moved to a "LLM + code tools" architecture.