Imagine you hire a new intern and instead of teaching them every single task, you hand them a parts catalog, a safety manual, and tell them to figure it out. They fumble at first — sometimes spectacularly — but they get better each time they try the same task again. That's what this paper does with a local vision-language model controlling a robot arm. The committed claim: a locally-run, open-weight VLM (Qwen3.8-27B) can one-shot generalize to unseen manipulation tasks by writing, executing, and debugging its own Python code atop a thin service layer — no new training, no new human programming, no cloud API. The robot succeeded in 30 of 45 trials across nine children's-toy tasks probing color, size, shape, and task-variation generalization. That's a 67% success rate with zero task-specific engineering. The architecture is deliberately thin. The VLM sits in a coding-agent harness that gives it access to a service implementing forward/inverse kinematics, safety limits, and classical computer-vision primitives (color segmentation, shape detection). The model doesn't learn motor control — it writes code that calls these services, runs it, reads error messages and visual feedback, then rewrites. This is the 'language model as programmer' paradigm applied to robotics: the intelligence is in code generation and self-debugging, not in learned policies or reinforcement learning. The hardware is a UR3e arm with a standard workstation running the 27B model locally. On the ladder, this is a second-generation result in the VLM-as-robot-coder space. Google's SayCan (2022) and Code as Policies (Liang et al., 2023) demonstrated the idea with cloud-hosted proprietary models. The key advance here is locality — running entirely on a single workstation with an open-weight model — and the one-shot generalization claim across varied object properties. But the success rate (67%) and task durations (3.4 to 67.5 minutes) are honest about the gap: this is not production-ready manipulation. Classical pick-and-place with engineered perception pipelines would crush this on speed and reliability for any fixed task. The integrity picture is mixed. Nine tasks with five trials each gives you 45 data points total — enough to see signal, too few for statistical confidence. The tasks are children's toys, which is the right call for a proof-of-concept but means the perception and manipulation difficulty is deliberately low. There's no comparison against a proprietary cloud VLM (GPT-4o, Claude) on the same tasks, which is the obvious missing baseline. The 50% duration reduction on task re-execution is interesting but measured on a single re-run per task — the sample size makes it suggestive, not conclusive. The self-improvement finding is the most forward-looking result. When the agent re-does a task it previously completed, execution time drops by half. This hints at a compound-interest dynamic: if the agent accumulates working code snippets, future tasks in the same family become progressively cheaper. The paper doesn't formalize this or test multi-round improvement curves, but it points at the mechanism that would make local coding agents practical — experience accumulation without gradient updates. The limitations the authors name are honest: perception failures (color/shape misidentification), code bugs that require multiple debug cycles, and the long tail of execution times. What they don't test is the obvious successor experiment: scaling to a harder manipulation benchmark with deformable objects, tighter tolerances, or multi-step sequential tasks. My read is (a) — they ran out of time/budget on what is clearly a focused 8-page proof-of-concept, not (c) — these authors are being transparent about scope.