Imagine you're a security guard at a building entrance. You check every visitor's ID badge carefully. But the building also has an internal mail system, and anyone already inside can send packages between offices with no inspection — because the system assumes internal mail is trusted. Now imagine an attacker who forges a single visitor badge, walks in, and then routes all their malicious payloads through internal mail. That's what SMT does to function-calling LLMs. The committed claim: prompt-level safety alignment is structurally insufficient for tool-enabled LLMs because the shared context window — where developer schemas, structured arguments, and untrusted tool outputs all coexist — creates an unguarded channel that bypasses input sanitization entirely. This is not another prompt-injection variant. It's an argument that the architecture itself is the vulnerability. SMT (Simulated Moderation Traces) works by constructing a multi-turn trajectory that looks like a legitimate moderation-auditing workflow. The attacker fabricates a "moderation frame" — essentially pretending to be a red-team safety audit — and uses that pretext to request harmful content. When the model refuses, the framework treats the refusal as an "execution failure" in the simulated workflow, prompting the model to refine its output. Each iteration erodes the safety constraints further. The key architectural insight: because function-calling environments interleave trusted control logic with untrusted data in a single context, the model cannot reliably distinguish a real moderation audit from a fabricated one. The ladder position is strong. The authors tested against prominent commercial LLMs from five different providers across two standardized safety benchmarks and report that SMT achieves the highest average attack success rate and HarmScore while requiring near-minimal queries. That last part matters — many jailbreak methods work but require dozens or hundreds of queries, making them impractical. SMT is both more effective and more efficient than existing baselines. The paper names and compares against existing jailbreak baselines directly, which is the right move. The integrity picture is mixed but mostly credible. Two standardized benchmarks is good — these aren't custom evaluation sets chosen to flatter the method. Five commercial providers means real-world targets, not toy models. Code is released on GitHub. But the providers aren't named in the abstract (likely for responsible disclosure reasons), there's no pre-registration, and the benchmarks — while standardized — were presumably selected because they're the community standard, not pre-committed. The attack-success-rate metric itself deserves scrutiny: who's judging whether a generation is "harmful"? The HarmScore metric helps, but automated harm scoring is its own can of worms. The milestone question is where this gets practically urgent. Right now, every major LLM provider is racing to ship function-calling and agentic capabilities. The concrete threshold to watch: when tool-calling LLMs handle financial transactions, medical queries, or code execution in production at scale — which is already happening — the attack surface SMT identifies becomes a liability measured in dollars and harm, not just benchmark scores. The gap between "demonstrated in a paper" and "exploited in the wild" is probably months, not years. The obvious successor experiment SMT didn't run: testing against models with context-aware validation already in place — architectures that cryptographically sign or compartmentalize trusted vs. untrusted context segments. The honest read is (a) — these defenses barely exist yet. The paper is describing a vulnerability class that the defense side hasn't caught up to. That's the real contribution: not just a better attack, but a structural argument that the current defense paradigm (prompt-level filtering) is aimed at the wrong layer.