Matching skills to scene context takes 3D-agent tool use from 39% to 78%
Notes on Skill-3D: Evolving Scene-Aware Skills for Agentic 3D Spatial Reasoning (arXiv:2606.07436) — Haoyu Li, Zhengdong Hu, Jun Wang, Hehe Fan, Yi Yang · June 2026
Note published · written by SkillFed’s research pipeline from the paper above · how these notes are made
AI-assisted notes · reviewed by SkillFed Skill evolution Bridge: evolution × retrievalMLLM agents doing 3D spatial reasoning — object counting, distance estimation, route planning — call on external tools for detection, depth estimation, and 3D reconstruction. But they default to the same one or two tools no matter what the scene needs. Ask an "object-to-object distance" question and the agent answers from reconstruction evidence that encodes relative position, not the depth grounding the question actually requires. Skill-3D fixes the mismatch with memory instead of a bigger model. Every completed tool-use trajectory gets logged into a Scene Memory, successful trajectories from similar scenes distill into reusable "skills" — a trigger condition, required evidence, tool order, argument template — and failed trajectories don't get discarded; they attach to the nearest skill as lessons. Skills come in two flavors: static ones fixed as task-level priors, and dynamic ones that keep merging new successful variants and absorbing failure-driven fallback rules. The Skill Library and the Scene Memory keep refining each other as trajectories accumulate. At inference, the agent retrieves a compact slate of candidate skills by scene signature and evidence type, then a policy narrows that down to what it will actually use — before it touches a single tool.
The team distills this behavior into small open models — Qwen3-VL-4B/8B — through a two-stage post-training recipe. Supervised fine-tuning on skill-guided trajectories teaches the retrieve-select-execute pattern first; then Group Relative Policy Optimization (GRPO) applies a composite reward over answer correctness, output format, and tool efficiency. Across four closed-source MLLMs — GPT-4o, GPT-5.4, Gemini-2.5-Pro, Gemini-3-Flash — and four benchmarks, scene-aware skill retrieval nearly doubles effective tool usage (the share of tool calls that return valid evidence and actually get used in the final answer): from 39% to 78% on VSI-Bench, with comparable jumps on BLINK, CV-3D, and MMSI-Bench. Averaged across the four closed models, VSI-Bench accuracy climbs from 42.9 to 64.5 — a 50% relative gain over skipping tools entirely — and Gemini-3-Flash's MMSI-Bench score rises 67%. Ablations confirm retrieval is the load-bearing piece: removing it costs 5.8 points of VSI-Bench average, more than removing either skill type or the failure lessons on their own. It's cheaper, too — skill-guided routing cuts inference time to 20.8 seconds per query versus 35.1 seconds for the strongest prior baseline, because the agent stops defaulting to the slow generic reconstruction tool (about 21 seconds a call) once the scene calls for something faster and more targeted.
Key numbers
| Effective tool usage, VSI-Bench | 39% → 78% |
| VSI-Bench avg., 4 closed models | 42.9 → 64.5 (+50% rel.) |
| Gemini-3-Flash on MMSI-Bench | +67% |
| Qwen3-VL-8B post-trained, VSI-Bench | +60% rel. gain |
| Tool calls still ineffective after tuning | ~21% of calls |
Skills related to this research
Related notes
- Failure-only skill revision helps 1 model in 10, hurts the other 8 →
- Turning a visual skill into text throws away up to 59% of its recoverable accuracy →
- Pasting a guide into the prompt costs points; compiling it into a skill adds up to 25 →
- Skills Trained Into the Model Beat Runtime-Loaded Skills by Up to 10.1 Points →
- Give a small model screenshots of its own skills and its GUI success rate more than doubles — 10.78% to 25.40% →
- Self-tested skill edits beat teacher-curated skill banks by up to 9.3 points →
- One disguised setup line hits 89.3% attack success — while scanners already false-flag 74.6% of clean skills →
- No search stack — still +15.8 GAIA points over a commercial deep-research agent →
- Testing a Skill Before It's Banked Lifts WebShop Success From 72.7% to 78.1% →
References
- Skill-3D: Evolving Scene-Aware Skills for Agentic 3D Spatial Reasoning (Li et al., 2026)
- Think3D — reconstruction-based reasoning loop for limited-view 3D spatial understanding (Zhang et al., 2026c)
- DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning — source of the GRPO objective (DeepSeek-AI et al., 2025)
- VSI-Bench (Yang et al., 2025)
- MMSI-Bench (Yang et al., 2025)