June 19, 2026 Research Brief
Agent safety moves structural.
Today’s strongest papers argue that prompt-only defenses are brittle: safer agents come from typed interfaces, privacy-aware benchmarks, and finer-grained training signals that constrain what models can access or emit.
Takeaways
- Structural controls are becoming the dominant safety pattern: multiple papers argue that prompt-only or policy-only defenses are insufficient, and instead show stronger results from changing the interface boundary itself—e.g., contract attestation for tool use, private-field isolation for document agents, CST-level sanitization for code context, and decoupled search gateways.
- Security work is shifting from “can models be tricked?” to “what hidden substrate do they trust?” The attack surface now includes tool contracts, skill packages, distributed embeddings, model artifacts, system prompts, and world-model fine-tuning buffers.
- RL for reasoning is moving toward finer-grained credit assignment and exploration control. Several papers replace uniform sequence-level updates with token-, turn-, graph-, or rubric-conditioned signals, and consistently report gains over GRPO/DAPO-style baselines.
Start with: TRAP: Benchmark for Task-completion and Resistance to Active Privacy-extraction
Why it catches my eye: It gives both a practical benchmark and a formal reason prompt-only privacy defenses fail for document agents.
Read skeptically for: Its strongest defense uses idealized masking, so real OCR and localization errors may weaken deployment performance.
Themes
Papers Worth Your Reading Time
Ranked for research usefulness: novelty, method pattern, evidence quality, and skepticism value.
TRAP: Benchmark for Task-completion and Resistance to Active Privacy-extraction
#1Useful if you build document agents: it measures utility and privacy together and explains why soft defenses break.
- Why now
- Enterprise agents increasingly need private context while facing active extraction attacks.
- Skepticism
- Oracle-style masking is stronger than practical deployments, so the best-case defense may not transfer cleanly.
The Gate Is Only as Honest as Its Contracts: ContractGuard for the Contract Layer of Risk-Aware Causal Gating
#2A strong companion to TRAP because it shows tool safety depends on trusted contracts, provenance, and runtime verification.
- Why now
- Function-calling and MCP-style tool ecosystems are expanding faster than their contract security assumptions are being audited.
- Skepticism
- Its guarantees rely on trusted attestation infrastructure, and runtime checks cannot reverse harmful external actions.
Code-Augur: Agentic Vulnerability Detection via Specification Inference
#3It makes security-agent judgments auditable by turning implicit assumptions into executable invariants and then stress-testing them.
- Why now
- Security agents are moving toward production, where hidden assumptions matter more than demo accuracy.
- Skepticism
- Results still depend on LLM reasoning quality and were not tested against adversarially modified codebases.
Chinese version: [中文]
Run stats
- Candidates: 241
- Selected: 30
- Deepread completed: 30
- Window (UTC): 2026-06-17T00:00:00Z → 2026-06-18T00:00:00Z (arxiv_announce, expanded=0)
Show selected papers
| arXiv ID | Title / Links | Categories | Score | Why | Tags |
|---|---|---|---|---|---|
2606.18673 | Understanding and Mitigating Prompt Leaking Attacks in Real-World LLM-Based Applications | cs.CR | 96 | Large real-world study finds prompt leakage in 80%+ apps and evaluates practical defenses. | prompt-injection, security, prompt-leakage, real-world-eval, defenses |
2606.18996 | TRAP: Benchmark for Task-completion and Resistance to Active Privacy-extraction | cs.CR, cs.AI | 95 | Strong agent privacy benchmark for task utility vs active extraction attacks. | agents, privacy, benchmark, security, evaluation |
2606.18656 | The Wrong Kind of Right: Quantifying and Localizing Misfired Alignment in LLMs | cs.CL | 95 | Directly studies alignment failures in LLMs and introduces a benchmark to quantify misfired safety behavior. | alignment, LLM safety, reliability, benchmark, bias |
2606.19168 | Beyond Safe Data: Pretraining-Stage Alignment with Regular Safety Reflection | cs.AI, cs.LG | 94 | Pushes safety into pretraining via safety reflection; directly relevant to alignment foundations. | alignment, pretraining, safety, llm, post-training |
2606.18829 | GateMem: Benchmarking Memory Governance in Multi-Principal Shared-Memory Agents | cs.LG, cs.CL | 93 | Timely benchmark for memory access control, deletion, and shared-agent governance. | agents, memory, access-control, privacy, benchmark |
2606.18710 | Image Prompt Reconstruction Attacks on Distributed MLLM Inference Frameworks | cs.CR | 93 | Targets privacy leakage in distributed multimodal inference via image prompt reconstruction attacks. | security, privacy, MLLM, attack, distributed inference |
2606.19262 | Detecting Hidden ML Training With Zero-Overhead Telemetry | cs.LG | 92 | Compute governance relevance; robust hidden-training detection with adversarial evaluation. | governance, monitoring, compute, security, evaluation |
2606.19023 | Lifecycle-Aware Dynamic Analysis for Secure ML Model Execution | cs.CR, cs.LG | 92 | Dynamic analysis for malicious ML models targets novel model-execution attack paths across frameworks. | ml-security, model-supply-chain, dynamic-analysis, malware, deployment-safety |
2606.19235 | CodeSentinel: A Three-Layer Defense Against Indirect Prompt Injection in Code Contexts | cs.CR | 91 | Concrete defense for indirect prompt injection in code-agent retrieval contexts. | prompt-injection, code-llm, agents, defense, security |
2606.18733 | SWE-Future: Forecast-Conditioned Data Synthesis for Future-Oriented Software Engineering Agents | cs.SE, cs.AI | 91 | Future-oriented coding-agent benchmark synthesis reduces contamination and improves realistic agent evaluation. | agents, evaluation, coding agents, benchmark, data contamination |
2606.18767 | Output Vector Editing for Memorization Mitigation in Large Language Models | cs.CL | 91 | Targets LLM memorization/privacy via minimal weight edits; strong safety relevance and concrete multi-model eval. | llm-safety, privacy, memorization, model-editing, security |
2606.19191 | PhantomSkill: Malicious Code Injection in Agent Skill Ecosystems | cs.CR | 90 | Important supply-chain attack on agent skill ecosystems with stealthy malicious payloads. | agents, supply-chain, security, code, attack |
2606.18936 | SciRisk-Bench: A Risk-Dimension-Aware Benchmark for AI4Science Safety | cs.AI, cs.CY | 90 | Risk-dimension-aware AI4Science safety benchmark with broad coverage and direct safety evaluation value. | benchmark, ai4science, safety, evaluation, risk-assessment |
2606.18619 | Code-Augur: Agentic Vulnerability Detection via Specification Inference | cs.CR, cs.AI, cs.SE | 89 | Makes agentic vuln detection auditable by surfacing inferred security specs and assumptions. | agents, cybersecurity, auditing, specification-inference, reliability |
2606.19327 | Rethinking Reward Supervision: Rubric-Conditioned Self-Distillation | cs.AI, cs.CL | 89 | Structured rubric feedback for post-training could improve reasoning reliability beyond scalar rewards. | post-training, reasoning, self-distillation, reward modeling, LLM |
2606.18550 | The Gate Is Only as Honest as Its Contracts: ContractGuard for the Contract Layer of Risk-Aware Causal Gating | cs.CR | 88 | Sharp analysis of RACG trust assumptions and contract-layer attack surface. | agents, tool-use, prompt-injection, security, formalism |
2606.18954 | GraphPO: Graph-based Policy Optimization for Reasoning Models | cs.CL | 88 | Graph-based policy optimization for reasoning models offers finer credit assignment and less redundant exploration. | reasoning, RLVR, policy optimization, LLM training, efficiency |
2606.18890 | Skill-Guided Continuation Distillation for GUI Agents | cs.AI | 88 | Improves GUI agents on off-trajectory states, a key reliability bottleneck for agentic systems. | agents, gui-agents, self-improvement, imitation-learning, reliability |
2606.19057 | Quantifying and Auditing LLM Evaluation via Positive--Unlabeled Learning | stat.ML, cs.LG, stat.CO, stat.ME | 87 | Audits LLM-as-judge bias under selective labels; useful evaluation correction idea. | llm-evaluation, bias, auditing, judge-models, reliability |
2606.18947 | Decoupling Search from Reasoning: A Vendor-Agnostic Grounding Architecture for LLM Agents | cs.AI, cs.CL, cs.IR, cs.MA | 87 | Decouples search from reasoning for inspectable grounding in LLM agents; useful for safer agent design. | agents, grounding, rag, search, architecture, inspectability |
2606.19341 | Native Active Perception as Reasoning for Omni-Modal Understanding | cs.CV, cs.CL, cs.SD | 87 | Agentic active perception for omni-modal understanding is notable frontier agent architecture progress. | agents, multimodal, active perception, video understanding, architecture |
2606.19236 | STARE: Surprisal-Guided Token-Level Advantage Reweighting for Policy Entropy Stability | cs.LG, cs.AI, cs.CL | 87 | Addresses entropy collapse in RL post-training for reasoning LLMs with token-level analysis and method. | llm-training, rlhf, reasoning, post-training, optimization |
2606.18697 | Stealthy World Model Manipulation via Data Poisoning | cs.LG, cs.CR, cs.RO | 86 | Novel poisoning attack on learned world models with downstream planning impact. | poisoning, world-models, rl, security, robustness |
2606.18831 | Beyond Reward Engineering: A Data Recipe for Long-Context Reinforcement Learning | cs.CL, cs.AI | 86 | Data-centric long-context RL recipe for agent-relevant reasoning gains without heavy reward engineering. | long-context, reinforcement-learning, reasoning, agents, training-data |
2606.18686 | ForecastBench-Sim: A Simulated-World Forecasting Benchmark | cs.AI, cs.CL, cs.LG | 85 | Simulated forecasting benchmark enables scalable, causal, and counterfactual evaluation for general AI systems. | evaluation, forecasting, benchmark, simulation, agents |
2606.18782 | RedactionBench | cs.CL, cs.AI | 84 | Useful privacy benchmark separating contextual redaction from simple PII extraction. | privacy, redaction, benchmark, llms, evaluation |
2606.18910 | REVES: REvision and VErification--Augmented Training for Test-Time Scaling | cs.LG, cs.CL | 84 | Revision-and-verification training targets test-time scaling and learning from recoverable reasoning errors. | reasoning, test-time-scaling, verification, post-training, llm |
2606.18844 | Learning from Your Own Mistakes: Constructing Learnable Micro-Reflective Trajectories for Self-Distillation | cs.LG | 84 | Self-distillation with explicit mistake-correcting trajectories could improve reasoning reliability. | llm-training, self-distillation, reasoning, reinforcement-learning, reliability |
2606.18810 | Learning from Own Solutions: Self-Conditioned Credit Assignment for Reinforcement Learning with Verifiable Rewards | cs.LG, cs.AI | 83 | Self-conditioned token credit assignment for RLVR could improve reasoning training without extra teachers. | rlvr, credit-assignment, reasoning, post-training, llm-training |
2606.18774 | RouteJudge: An Open Platform for Reproducible and Preference-Aware LLM Routing | cs.LG | 83 | Open preference-aware framework for evaluating LLM routers is reusable and deployment-relevant. | evaluation, LLM routing, preferences, cost-aware, framework |
AI Paper Insight Brief
2026-06-19
0) Executive takeaways (read this first)
- Structural controls are becoming the dominant safety pattern: multiple papers argue that prompt-only or policy-only defenses are insufficient, and instead show stronger results from changing the interface boundary itself—e.g., contract attestation for tool use, private-field isolation for document agents, CST-level sanitization for code context, and decoupled search gateways.
- Security work is shifting from “can models be tricked?” to “what hidden substrate do they trust?” The attack surface now includes tool contracts, skill packages, distributed embeddings, model artifacts, system prompts, and world-model fine-tuning buffers.
- RL for reasoning is moving toward finer-grained credit assignment and exploration control. Several papers replace uniform sequence-level updates with token-, turn-, graph-, or rubric-conditioned signals, and consistently report gains over GRPO/DAPO-style baselines.
- Benchmarks are getting more deployment-shaped: memory governance, active privacy extraction, contextual redaction, AI4Science risk dimensions, router preference evaluation, and simulated causal forecasting all measure failure modes that standard accuracy benchmarks miss.
- A recurring empirical pattern: stronger capability often increases exposure unless the system architecture constrains what the model can see or emit. This shows up in science-specialized models with higher ASR, document agents that need private fields to act but then leak them, and native search that improves freshness but breaks output contracts.
- For frontier agent builders, the practical implication is clear: invest less in single-layer prompt defenses and more in typed interfaces, provenance, runtime verification, memory governance, and evaluation that jointly measures utility and misuse resistance.
2) Key themes (clusters)
Theme: Structural defenses over prompt-only safety
- Why it matters: Several papers converge on the same lesson: if the model can directly observe or emit sensitive/control-bearing content, soft constraints are brittle. The more robust defenses move trust to typed, auditable boundaries around tools, prompts, code context, and private fields.
- Representative papers:
- The Gate Is Only as Honest as Its Contracts: ContractGuard for the Contract Layer of Risk-Aware Causal Gating
- TRAP: Benchmark for Task-completion and Resistance to Active Privacy-extraction
- CodeSentinel: A Three-Layer Defense Against Indirect Prompt Injection in Code Contexts
- Decoupling Search from Reasoning: A Vendor-Agnostic Grounding Architecture for LLM Agents
- Common approach:
- Move from instruction-level defenses to interface-level controls: signed provenance, typed attestation, masking/hash indirection, syntax-preserving sanitization, external grounding gateways.
- Enforce least privilege by restricting what the model can call, read, or output rather than hoping it refuses correctly.
- Validate at runtime where possible: effect verification, tool-layer resolution, reparsing after sanitization, telemetry/logging for boundary decisions.
- Open questions / failure modes:
- Most guarantees are conditional on trusted infrastructure: signed registries, correct masking/OCR, trusted gateways, or local surrogates.
- Runtime checks often cannot undo irreversible side effects once external actions have fired.
- Adaptive attackers can still target the control plane itself: attestation compromise, masking failures, distributed triggers, or oracle-guided prompt leakage.
Theme: Supply-chain and hidden-state attack surfaces for agents
- Why it matters: The attack surface is broadening beyond user prompts into the artifacts and state that agents consume: skills, contracts, model files, world-model buffers, and distributed embeddings. These are often less monitored than the model’s text interface but can be equally or more dangerous.
- Representative papers:
- Common approach:
- Treat non-prompt artifacts as first-class attack vectors: auxiliary scripts, serialized models, fine-tuning targets, intermediate embeddings.
- Evaluate under realistic attacker constraints: passive black-box participants, bounded poisoning budgets, marketplace-style skill installs, runtime-only detection.
- Measure stealth explicitly, not just attack success: utility preservation, low residual deviation, reviewer misclassification, low warning rates.
- Open questions / failure modes:
- Many defenses remain partial because attackers can exploit trusted-but-unverified components or evade dynamic analysis.
- Detection often depends on assumptions about hardware, runtime dependencies, or embedding-space regularity.
- Some attacks preserve benign utility well enough to evade both human and automated review.
Theme: Fine-grained RL credit assignment for reasoning and agents
- Why it matters: A major cluster of papers argues that sequence-level rewards are too blunt for reasoning-heavy RL. Better progress comes from assigning credit at the token, turn, state, or criterion level while staying within verifiable-reward settings.
- Representative papers:
- Learning from Own Solutions: Self-Conditioned Credit Assignment for Reinforcement Learning with Verifiable Rewards
- GraphPO: Graph-based Policy Optimization for Reasoning Models
- STARE: Surprisal-Guided Token-Level Advantage Reweighting for Policy Entropy Stability
- REVES: REvision and VErification–Augmented Training for Test-Time Scaling
- Common approach:
- Replace uniform token treatment with structured signals: KL-based token weights, graph-state comparisons, surprisal-gated reweighting, revision-state augmentation.
- Reuse the model’s own rollouts rather than requiring external process labels.
- Optimize for deployment behavior directly: revision success, entropy stability, shorter paths, or transfer to test-time search.
- Open questions / failure modes:
- Most methods add hyperparameters and extra compute, even if end-to-end overhead is moderate.
- Applicability is strongest on verifiable tasks; transfer to non-verifiable or preference-heavy domains is less established.
- Approximate state merging, teacher selection, or entropy targets can introduce bias or instability if mis-tuned.
Theme: Benchmarks that measure governance, privacy, and real deployment trade-offs
- Why it matters: Several new benchmarks reject single-score capability evaluation and instead measure whether systems remain useful while respecting privacy, access control, deletion, or user preference heterogeneity.
- Representative papers:
- Common approach:
- Evaluate multi-objective behavior explicitly: utility vs leakage, utility vs forgetting, quality vs cost vs preference.
- Use richer labels or taxonomies: risk dimensions, mandatory/contextual redaction, hidden checkpoints, routing-centered records.
- Validate with humans where possible, but operationalize scalable judge pipelines for broader coverage.
- Open questions / failure modes:
- Many results remain benchmark- or judge-dependent, with limited human sample sizes in some cases.
- Governance metrics can expose trade-offs without yet providing clear optimization recipes.
- Some tasks, especially contextual privacy and refactoring-like behavior, remain intrinsically ambiguous.
Theme: Data-centric and self-corrective training for long-horizon agents
- Why it matters: Another cluster focuses less on new reward functions and more on better training data or corrective trajectories: long-context mixtures, micro-reflective self-correction, off-trajectory GUI continuations, and pretraining-stage safety reflection.
- Representative papers:
- Beyond Reward Engineering: A Data Recipe for Long-Context Reinforcement Learning
- Learning from Your Own Mistakes: Constructing Learnable Micro-Reflective Trajectories for Self-Distillation
- Skill-Guided Continuation Distillation for GUI Agents
- Beyond Safe Data: Pretraining-Stage Alignment with Regular Safety Reflection
- Common approach:
- Synthesize training signals from the model’s own failures or from targeted mixtures that exercise missing capabilities.
- Preserve error context rather than only showing ideal trajectories.
- Emphasize transfer: long-context gains to agentic tasks, corrective trajectories to first-pass reasoning, pretraining reflection to jailbreak robustness.
- Open questions / failure modes:
- Several methods depend on cold-start scaffolding, external auditors, or reflection-format consistency.
- Synthetic or constructed data may not fully match real deployment distributions.
- Interaction-heavy pipelines can be expensive, especially for GUI or long-horizon environments.
3) Technical synthesis
- A strong cross-paper pattern is structuralizing trust: ContractGuard, TRAP, CodeSentinel, DSG, and MOAT all reduce reliance on model intent by constraining or auditing the substrate around the model.
- Multiple security papers distinguish content-channel attacks from metadata/state-channel attacks. Contract corruption, skill-resource payloads, poisoned world-model targets, and leaked system prompts all bypass classic “don’t follow malicious instructions” framing.
- Several RL papers independently move from trajectory-level scalar rewards to localized signals: SC-GRPO uses per-token KL weighting, STARE uses surprisal-conditioned token weights, GraphPO uses node/edge advantages, REVES converts successful revision states into single-turn supervision, and RCSD uses rubric-conditioned token-level distillation.
- There is a shared concern with distribution mismatch: Code-Augur externalizes assumptions before fuzzing; TAPO preserves erroneous prefixes; SGCD trains only on post-handoff continuations; REVES trains on visited revision states; RCSD distills on student rollouts.
- Entropy/exploration management is becoming explicit in RLVR: STARE targets entropy collapse directly, GraphPO reduces redundant exploration via state merging, and TAURA in OmniAgent reweights high-uncertainty turns.
- Several papers show that capability and risk scale together unless interfaces are redesigned: science-specialized models raise ASR in SciRisk-Bench; document agents need private fields to act but then leak them in TRAP; prompt leakage is widespread in deployed apps; native search improves grounding but can violate output contracts.
- Benchmarks are increasingly multi-objective by construction rather than post hoc: GateMem’s MGS multiplies utility, access control, and forgetting; RouteJudge attributes preference back to router decisions under budget; RedactionBench separates mandatory vs contextual privacy semantics.
- A recurring evaluation move is adaptive attacker search: ContractGuard exhaustively enumerates perturbations, prompt-leak defenses test adaptive attacks, SWAAP evaluates against detectors and robust training, and telemetry-based training detection uses five rounds of monitor–evader co-evolution.
- Several methods rely on frozen or external helper models rather than end-to-end retraining: local surrogates in CodeSentinel, reward-model encoders in PUAUDIT, GPT-4o rationality audits in OmniAgent SFT, safety classifiers in SRP, and hosted-model validation in ContractGuard.
- Across systems papers, observability is treated as a first-class primitive: telemetry in DSG, routing-centered records in RouteJudge, syscall/action tracing in MOAT, and NVML counters for hidden-training detection.
4) Top 5 papers (with “why now”)
- The Gate Is Only as Honest as Its Contracts: ContractGuard for the Contract Layer of Risk-Aware Causal Gating
- Shows that least-privilege tool gating fails if tool contracts are corrupted; the load-bearing trust is in preconditions/effects, not just risk labels.
- Introduces a three-rung defense stack—signed provenance, typed attestation, runtime effect verification—with a clear necessity ladder.
- Exhaustive adaptive evaluation finds partial stacks fail but the full stack drives worst-case attack-induced ISR to 0 in the modeled space, including validation on six hosted frontier models.
- Why now: MCP/function-calling ecosystems are scaling quickly, and this paper identifies a realistic supply-chain failure mode before tool gating becomes a default safety primitive.
- Skeptical take: Guarantees depend on a trusted signed attestation and runtime verification cannot undo irreversible side effects.
- TRAP: Benchmark for Task-completion and Resistance to Active Privacy-extraction
- Defines an active setting where agents must use private fields correctly for tool execution while resisting direct extraction attempts.
- Empirically shows a persistent utility–privacy trade-off across 22 models; prompt defenses move models along a frontier but do not solve the problem.
- Adds a formal impossibility result: soft-constraint defenses cannot guarantee zero leakage for softmax-based models as attack length grows.
- Why now: Document-grounded agents are entering enterprise workflows, and this paper gives both a benchmark and a systems-level reason to stop relying on prompt-only privacy defenses.
- Skeptical take: The strongest defense result uses idealized Oracle masking; practical masking still suffers from OCR/localization errors.
- Code-Augur: Agentic Vulnerability Detection via Specification Inference
- Turns an agent’s tacit “this looks safe” judgment into explicit executable invariants, then uses guided fuzzing to falsify them.
- Reports 34%–370% more bugs than agentic baselines and 22 previously unknown vulnerabilities, 16 fixed or confirmed.
- Produces durable artifacts—committed invariants—that can survive beyond a single audit run.
- Why now: Security agents are moving from demos to production use, and trust hinges on whether their hidden assumptions can be surfaced and stress-tested.
- Skeptical take: Performance still depends on LLM reasoning quality and was not evaluated under adversarially modified codebases.
- GraphPO: Graph-based Policy Optimization for Reasoning Models
- Replaces chain/tree rollouts with DAG rollouts that merge semantically equivalent states, reducing redundant exploration.
- Adds dual-group advantages for correctness and path efficiency, giving denser and lower-variance learning signals.
- Shows consistent gains over chain- and tree-based baselines across reasoning and agentic search tasks.
- Why now: RLVR is hitting efficiency limits from redundant reasoning traces; GraphPO offers a concrete path to better token/sample efficiency without annotated process rewards.
- Skeptical take: Benefits depend on approximate equivalence detection, so merge quality and threshold tuning are critical.
- Native Active Perception as Reasoning for Omni-Modal Understanding
- Reframes long-video understanding as iterative active perception with Observation-Thought-Action and persistent textual memory.
- Achieves state-of-the-art open-source results across ten benchmarks and beats a much larger passive model on LVBench while using about 73% fewer frames.
- Shows positive test-time scaling and gains from both agentic SFT and turn-aware RL.
- Why now: Long-context multimodal agents are bottlenecked by “watch everything” costs; this paper offers a native agent design where compute scales with reasoning turns rather than raw duration.
- Skeptical take: Sequential interaction adds latency, and RL refinement was limited to queries under 300 seconds.
5) Practical next steps
- Add typed interface boundaries around tools, memory, and private fields: signed registries, entitlement typing, model-facing placeholders/hash keys, and runtime effect checks where feasible.
- Evaluate agents with joint utility–misuse metrics, not standalone accuracy: task success plus leakage, access-control violations, forgetting failures, or output-contract compliance.
- For code agents, insert a pre-API sanitization layer over retrieved code context and treat comments/strings/identifiers as untrusted inputs, not inert text.
- For tool-using agents, audit the supply chain around the model: skill packages, auxiliary scripts, model artifacts, contract registries, and fine-tuning buffers.
- In RLVR pipelines, test localized credit assignment variants before scaling compute: token KL weighting, entropy-targeted reweighting, graph rollouts, or revision-state augmentation.
- Add adaptive attacker evaluation as standard practice: perturb metadata, optimize prompt leakage, test poisoning under robust training, and run leave-one-strategy-out robustness checks.
- For memory agents, benchmark governance explicitly in multi-principal settings before deployment; high recall alone is not a safety signal.
- Build observability into production stacks: telemetry, routing records, cache/provider logs, syscall/action traces, and judge disagreement slices to catch failures that model outputs alone hide.
Generated from per-paper analyses; no external browsing.