Research Radar
Daily · July 26, 2026
0 peer-reviewed · 10 preprints · 0 forum/blog
Mech Interp · AI Security · Text Diffusion LMs
01
mech-interp preprint

Are Single-Token Sparse Autoencoder Features Causally Necessary? Layer-Depth and SAE-Family Effects

SAE features that activate on a single vocabulary token are the closest thing mech-interp has to a ground-truth-verifiable benchmark. This paper runs causal ablation tests across 3.9 million features from six models and three SAE families, finding that which family you train on matters more than model scale — and that LlamaScope features are locally redundant where GemmaScope and BatchTopK features are causally anchored.

Causal Necessity of Single-Token SAE Features by Family BH-significant ablation (% of 208 conditions) 0% 25% 50% 75% GemmaScope BatchTopK LlamaScope 86% 52% 82% 48% 40% 36% Single-token features (ground-truth causally verifiable) All features
GemmaScope and BatchTopK single-token features achieve Benjamini-Hochberg-significant logit reductions in 86% and 82% of ablation conditions; LlamaScope single-token features succeed in only ~40%, indicating local redundancy. The cross-family gap exceeds within-family scaling effects.

The authors use single-token SAE features — those activating on exactly one vocabulary token — as ground-truth-verifiable causality diagnostics: if ablating the feature doesn't reduce log-probability for that token, the feature is not genuinely causal. Testing 3.9M features from six models across GemmaScope, BatchTopK, and LlamaScope SAE families, single-token features cluster 4.7× tighter in decoder space and concentrate in early layers; ablation yields BH-significant logit reductions in 178 of 208 conditions. The critical result is that the cross-family effect size exceeds the within-family scale effect — GemmaScope and BatchTopK features are causally anchored while LlamaScope features are locally redundant. The implication for interventional mech-interp: SAE family selection is a more important methodological choice than model scale.


02
AI control AI security preprint

Calibration-Family Overfit: Why Trusted Sabotage Monitors Don't Transfer Across Lineages

Trusted monitoring is the backstop of AI control: a cheaper aligned model grades the untrusted agent's actions for sabotage. This paper shows the backstop has a geometric hole — if the monitor was calibrated on one model family and deployed against a different one, its detection rate roughly halves (41% → 19% at 1% audit budget), because each lineage's sabotage occupies a different scoring direction in activation space.

Calibration-Family Overfit: Monitor Transfer Failure 0% 50% 75% 41% In-lineage monitor 19% Off-lineage monitor Attacks caught at 1% audit budget d₁ d₂ Family A Family B Family C A's scoring dir. Each lineage's sabotage occupies a different geometric direction
Left: Detection rates at 1% audit budget — in-lineage monitors catch 41% of attacks; off-lineage monitors catch only 19%. Right: Geometric explanation — each lineage's sabotage clusters in a different direction; a monitor's scoring vector misses other lineages' sabotage. Rotating the scoring vector toward the target lineage recovers most lost detection.

Pinto fits monitors on code-backdoor transcripts from one open-weight model family and evaluates on another, across an eight-family matrix spanning four frontier vendors. The interaction effect (monitor lineage × attack lineage) is +0.172 (95% CI [+0.158, +0.185]) — large, positive, and robust to dominant confounds. The gap is geometric: each lineage's sabotage occupies a different scoring direction; rotating the monitor's scoring vector toward the target lineage recovers most of the lost detection. At 1% audit budget, off-lineage monitors catch 19% of attacks vs. 41% for in-lineage monitors. The practical implication for AI control deployments: a single trusted monitor is insufficient; protocols need lineage-aware monitors or ensemble coverage that spans the target family's scoring geometry.


03
mech-interp AI security preprint

Robust Harmful Features Under Jailbreak Attacks: Mechanistic Evidence from Attention Head Specialization in Large Language Models

The usual story is that jailbreaks suppress the model's safety mechanism. This paper shows the suppression is specific — early-layer attention heads (ACHs) are selectively compromised while a distinct mid-layer population (SAHs) maintains activation even under successful attacks. Ablating a handful of ACHs on clean inputs induces jailbreak behavior; the two populations serve functionally different roles, with direct implications for layered defences.

Attention Head Specialization Under Jailbreak Attacks Early Mid Late layers ACH — Layers 1–8 Adversarially Compromised Heads suppressed under successful attacks SAH — Layers 9–18 Safety-Aligned Heads maintain robust activations even when attacked Layers 19–28 (mixed / output) Causal Ablation Evidence Suppressing ACHs on clean input → jailbreak-like behavior induced (without any adversarial prompt) Removing SAHs under attack → weakened mid-layer safety activations; residual safety lost Jailbreaks selectively suppress ACHs — not comprehensive safety elimination
Adversarially Compromised Heads (ACHs, early layers) are selectively suppressed under successful jailbreaks. Safety-Aligned Heads (SAHs, mid-layers) maintain activation even when attacks succeed. Ablation confirms: suppressing ACHs alone induces jailbreak-like behavior; removing SAHs weakens mid-layer safety robustness.

Using attention patching and targeted ablations on jailbreak/clean prompt pairs, the authors identify two functionally differentiated head populations: ACHs concentrated in early layers, whose activation is selectively reduced under successful jailbreaks, and SAHs in mid-layers, whose activations remain strong even when attacks succeed. The causal role of each is confirmed: suppressing a small number of ACHs on normally-refused inputs is sufficient to induce jailbreak-like behavior without any adversarial prompt; removing SAHs substantially weakens mid-layer safety activations. The result rules out simple "safety feature suppression" as the full mechanism and reveals a two-stage process in which early-layer gating is the actual attack surface — a distinction with direct implications for layer-targeted defence design.


Items 4 – 10 · Condensed
04
mech-interp AI security

AgentLens: Interpretable Safety Steering via Mechanistic Subspaces for Multi-Turn Coding Agents

Extends mech-interp safety methods from single-turn jailbreaks to multi-turn coding agent trajectories. Detects harmful execution states from step-level hidden representations and intervenes within a 10-D mechanistic subspace in a single layer. Introduces MAS-Bench (194 annotated multi-turn trajectories; LLaMA-3.1-8B, Qwen-2.5-7B, Gemma-2-9B).

05
AI control AI security

Multi-Agent AI Control: Distributed Attacks Hamper Per-Instance Monitors

First empirical study of multi-agent AI control. In FakeLab (9 services, 86 benign tasks, 4 attack objectives), the fragmentation effect shows that distributing a malicious goal across agents causes per-instance monitoring to fall below the threshold of usefulness at deployment scale. Standard per-instance monitors are structurally insufficient for multi-agent settings.

06
AI control AI security

Distributed Attacks in Persistent-State AI Control

Iterative VibeCoding benchmark: a coding agent builds software across PRs, spreading malicious payloads and timing the harmful commit for maximum cover. No single monitor is robust to both gradual and non-gradual attacks. A four-monitor ensemble (stateful + trajectory monitors) reduces gradual-attack evasion from 93% to 47%.

07
mech-interp

CircuitKIT: Circuit Discovery, Evaluation, and Application Toolkit for Mechanistic Interpretability

Source-available library connecting the full circuit-analysis workflow via a typed serializable circuit representation. Declarative interfaces auto-generate contrastive prompt pairs; all discovery algorithms (path patching, EAP, etc.) share a common representation for direct cross-method comparison. Downstream modules for pruning, editing, steering, and fine-tuning.

08
dLLM mech-interp

Steering Without Breaking: Mechanistically Informed Interventions for Discrete Diffusion Language Models

Trains SAEs on four dLLMs (124M–8B) and finds attributes commit on distinct denoising schedules — topic in the first 2% of steps, sentiment over the first 20%. Matching interventions to each attribute's schedule substantially reduces quality degradation while maintaining steering effectiveness; first mechanistic evidence of temporal feature commitment structure in dLLMs.

09
AI security

MJ: Multi-turn LLM Jailbreaking via Decomposed Credit Assignment

DC-GRPO assigns a separate group-relative learning signal per dialogue turn (combining immediate + future credit), solving the credit assignment problem in RL-based multi-turn jailbreak attackers. Both static- and dynamic-weighted instantiations achieve strong multi-turn ASR and cross-model transferability against black-box frontier models.

10
mech-interp

Steered LLM Activations are Non-Surjective

Formally proves that activation steering takes the residual stream off the manifold of states reachable from any discrete prompt — almost surely, no prompt reproduces the same internal behavior induced by steering. Establishes a formal separation between white-box and black-box interventions, with implications for how steering-vs-prompting comparisons should be designed.

← all Research Radar issues · gussand · source