AIAny
Icon for item

SpatialClaw: Rethinking Action Interface for Agentic Spatial Reasoning

Provides a training-free, code-as-action framework that lets VLM-backed agents write and run stateful Python cells to compose perception and geometry primitives for open-ended 3D/4D spatial reasoning. Demonstrates consistent gains across 20 benchmarks and multiple VLM backbones.

Introduction

Spatial reasoning often fails not because models lack primitives but because their action interface forces rigid, single-pass decisions or overly constrained tool calls. SpatialClaw flips that assumption: give the agent a persistent Python kernel preloaded with frames and perception/geometry primitives, and let it write one executable cell per step conditioned on prior outputs and observations. The core insight is that a code-as-action, stateful interface enables adaptive, compositional analyses that better match the open-ended nature of spatial tasks.

Key Findings
  • Stateful code-as-action interface: agents write and execute incremental Python cells with access to perception and geometry functions, so what? this lets agents inspect intermediate results, revise strategies, and flexibly compose low-level primitives instead of committing to a single analysis plan.

  • Training-free framework: no additional model fine-tuning is required, so what? SpatialClaw can be paired with off-the-shelf VLM backbones and still improve behavior across models without dataset-specific retraining.

  • Empirical gains at scale: evaluated on 20 static and dynamic 3D/4D spatial benchmarks, achieving 59.9% average accuracy and outperforming a recent spatial agent by +11.2 percentage points, so what? the improvement is broad (consistent across six VLM backbones and two model families), indicating the interface design—not just model capacity—drives practical spatial reasoning gains.

Who it's for and tradeoffs

Great fit if you are researching or building VLM-based agents that must perform compositional spatial analyses, diagnostics, or stepwise geometric computation across frames. Look elsewhere if your deployment forbids arbitrary code execution, requires minimal runtime latency, or cannot host a persistent Python kernel — SpatialClaw relies on executing user-generated code and preloaded perception primitives, which introduces runtime, safety, and integration considerations.

Where it fits

Compared with single-pass code execution (commit-first) and rigid structured tool-call interfaces (limited composition), SpatialClaw occupies the middle ground: flexible like free-form code but organized via one-step-per-decision execution, which improves adaptability on multi-step 3D/4D tasks.

How it works (brief)

A VLM produces a short Python cell each step, the kernel executes it against preloaded frames and primitives (e.g., detectors, depth/geometry utilities), and outputs become available to subsequent cells and text reasoning. This loop continues until the agent emits a final answer, enabling iterative inspection, correction, and complex geometric manipulations without retraining the model.

Information

  • Websitearxiv.org
  • AuthorsSeokju Cho, Ryo Hachiuma, Abhishek Badki, Hang Su, Byung-Kwan Lee, Chan Hee Song, Sifei Liu, Subhashree Radhakrishnan, Seungryong Kim, Yu-Chiang Frank Wang
  • Published date2026/06/11

More Items

Defines the Discovery Certification Protocol (DCP) to audit claims of discovery by AI research agents, converting claims into executable recovery and feedback tests. Specifies multi-gate certification, Core control requirements, and a deterministic offline verifier; validated in two controlled audits.

Evaluates whether AI agents can autonomously use Sparse Autoencoders (SAEs) to discover interpretable features and causally steer model behavior. Introduces a 20-task benchmark that has agents design contrastive probes to search a 131K+ feature dictionary in Gemma-2-9B-IT and evaluates activation rank, selectivity, and causal steering against expert references.

Translates natural-language instructions into executable programs that maintain an explicit, persistent global world state and compiles state-augmented 3D oriented bounding boxes into pixel-aligned conditioning signals for pretrained video generators. The approach decouples state evolution from rendering, enabling programmable entity control, off-screen state, and long-horizon interactive scenarios.