You know how a driving instructor doesn't narrate every second of a highway cruise? They stay quiet on the straightaways and speak up at the merge, the school zone, the guy on his phone drifting into your lane. That selective attention — ignore the boring, drill the hard — is the exact mechanism this paper applies to knowledge distillation for social robot navigation. The teacher VLM watches every token but only flags the ones where it's uncertain, which correspond to socially complex moments like approaching a conversation or joining a queue. The committed claim: entropy-based token selection during on-policy distillation transfers social reasoning from a large VLM to a lightweight one more effectively than supervised fine-tuning, off-policy distillation, or standard on-policy distillation. This is the Nth iteration of knowledge distillation — the novelty is the selection mechanism, not the distillation concept. The paper is not claiming a new paradigm; it's claiming a smarter filter inside an established one. The architecture is straightforward. A large teacher VLM generates token-level probability distributions during the student's own rollouts (on-policy, not replaying cached data). For each token, the teacher's entropy is measured. High-entropy tokens — where the teacher itself is uncertain between plausible actions — get flagged as "socially informative decision tokens." Low-entropy tokens, where the right action is obvious (keep rolling forward in an empty hallway), get their gradients suppressed. The student then aligns its distribution to the teacher's on the selected tokens using a temperature-controlled Jensen-Shannon divergence loss. JSD rather than vanilla KL because it's symmetric and better-behaved when distributions are mismatched. The ladder is credible but bounded. SOPD beats three named baselines — supervised fine-tuning (SFT), off-policy distillation, and standard on-policy distillation — across action prediction, perception consistency, and reasoning consistency on the SNEI and MUSON benchmarks. The abstract does not give specific numbers, which is a limitation of working from this summary alone. The baselines are the right comparisons for this category of work; these are the methods you'd actually try first. The real question is the margin — is SOPD 2% better or 20% better? The abstract says "consistently outperforms" but doesn't commit to magnitudes. Integrity gets a boost from real-world deployment. The Scout Mini robot tests in conversational and queuing scenarios provide physical validation beyond simulation benchmarks. That said, the real-world evaluation appears qualitative ("more socially appropriate behaviors") rather than quantitatively scored against the same baselines. Two community benchmarks (SNEI, MUSON) plus real hardware is a better validation regime than most distillation papers offer, but the absence of specific numbers in the abstract limits what we can assess about cherry-picking risk. The milestone question is about deployment scale. Right now we have one robot in two scenario types. The next meaningful number is how many distinct social scenarios the distilled model handles without degradation — call it 10-15 scenario categories covering the full range of human-robot social encounters (crowds, doorways, personal space violations, emergency yielding). That's probably 1-2 years of benchmark expansion and testing. The unlock is a lightweight VLM that can ship on commercial service robots without cloud inference. The obvious experiment not run: scaling the student model size down further to see where the SOPD advantage breaks. At some point the student is too small to capture social reasoning regardless of how clever your distillation is. My read is (a) — they ran out of compute or robot time. The Scout Mini deployment is expensive in human hours, and sweeping student architectures on real hardware is a luxury most labs can't afford. The paper is accepted at WRC SARA 2026, which suggests a focused contribution rather than an exhaustive ablation study.